mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-18 03:49:41 +00:00
11 lines
287 B
C++
11 lines
287 B
C++
// Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
#include "batched_transpose.inc"
|
|
|
|
int main()
|
|
{
|
|
std::vector<std::vector<std::string>> test_cases = generate_test_cases("fp8");
|
|
|
|
return !run_test_cases<ck_tile::fp8_t>(test_cases);
|
|
}
|