mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-03 13:11:25 +00:00
* Get the root cause of the ck tile gemm failing on mi355 * Fix the ck tile gemm on MI355 * delete the debug info
17 lines
399 B
C++
17 lines
399 B
C++
#include "test_gemm_pipeline_kernel_types.hpp"
|
|
#include "test_gemm_pipeline_util.hpp"
|
|
#include "gtest/gtest.h"
|
|
|
|
template <typename T>
|
|
class TestCkTileGemmPipelineCompV4 : public TestCkTileGemmPipeline<T>
|
|
{
|
|
};
|
|
|
|
#define TEST_SUITE_NAME TestCkTileGemmPipelineCompV4
|
|
|
|
TYPED_TEST_SUITE(TestCkTileGemmPipelineCompV4, KernelTypesCompV4);
|
|
|
|
#include "test_gemm_pipeline_ut_cases.inc"
|
|
|
|
#undef TEST_SUITE_NAME
|