mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-15 18:42:06 +00:00
* Reapply "[CK_TILE] Tile loop persistent gemm kernel (#2191)" (#2293)
This reverts commit 1d9fd3b6a8f8e84a407b8e59b63b17c258f4fb78.
* Add missing header for kentry
---------
Co-authored-by: Thomas Ning <Thomas.Ning@amd.com>
[ROCm/composable_kernel commit: 1c6f83df6c]
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
|