mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-15 18:42:06 +00:00
12 lines
282 B
C++
12 lines
282 B
C++
// Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "smoothquant.inc"
|
|
|
|
int main()
|
|
{
|
|
std::vector<std::vector<std::string>> test_cases = create_test_cases("fp16");
|
|
|
|
return !run_test_cases<ck_tile::half_t>(test_cases);
|
|
}
|