mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 21:51:28 +00:00
* Reapply "[CK_TILE] Tile loop persistent gemm kernel (#2191)" (#2293)
This reverts commit 233e274077.
* Add missing header for kentry
---------
Co-authored-by: Thomas Ning <Thomas.Ning@amd.com>
17 lines
398 B
C++
17 lines
398 B
C++
#include "test_gemm_pipeline_kernel_types.hpp"
|
|
#include "test_gemm_pipeline_util.hpp"
|
|
#include "gtest/gtest.h"
|
|
|
|
template <typename T>
|
|
class TestCkTileGemmPipelinePersistent : public TestCkTileGemmPipeline<T>
|
|
{
|
|
};
|
|
|
|
#define TEST_SUITE_NAME TestCkTileGemmPipelinePersistent
|
|
|
|
TYPED_TEST_SUITE(TEST_SUITE_NAME, KernelTypesPersistent);
|
|
|
|
#include "test_gemm_pipeline_ut_cases.inc"
|
|
|
|
#undef TEST_SUITE_NAME
|