mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-29 03:27:39 +00:00
22 lines
589 B
C++
22 lines
589 B
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "test_gemm_pipeline_kernel_types.hpp"
|
|
#include "test_gemm_pipeline_util.hpp"
|
|
#include "gtest/gtest.h"
|
|
|
|
template <typename T>
|
|
class TestCkTileGemmPipelineMem : public TestCkTileGemmPipeline<T, TestCkTileGemmPipelineMem<T>>
|
|
{
|
|
public:
|
|
static constexpr bool check_data_type() { return true; }
|
|
};
|
|
|
|
#define TEST_SUITE_NAME TestCkTileGemmPipelineMem
|
|
|
|
TYPED_TEST_SUITE(TestCkTileGemmPipelineMem, KernelTypesMem);
|
|
|
|
#include "test_gemm_pipeline_ut_cases.inc"
|
|
|
|
#undef TEST_SUITE_NAME
|