mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-02 20:51:23 +00:00
* add IsSupportedArgument to gemm_kernel * add ut and do some refactoring * switched to ck_tile's integral_constant
37 lines
1.9 KiB
C++
37 lines
1.9 KiB
C++
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#include <tuple>
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "ck_tile/host.hpp"
|
|
#include "test_gemm_mem_pipeline_util.hpp"
|
|
|
|
using F16 = ck_tile::half_t;
|
|
using F32 = float;
|
|
using Row = ck_tile::tensor_layout::gemm::RowMajor;
|
|
using Col = ck_tile::tensor_layout::gemm::ColumnMajor;
|
|
using Intrawave = ck_tile::integral_constant<ck_tile::GemmPipelineScheduler,
|
|
ck_tile::GemmPipelineScheduler::Intrawave>;
|
|
using Interwave = ck_tile::integral_constant<ck_tile::GemmPipelineScheduler,
|
|
ck_tile::GemmPipelineScheduler::Interwave>;
|
|
|
|
// clang-format off
|
|
using KernelTypes = ::testing::Types<
|
|
// ALayout, BLayout, CLayout, ADataType, BDataType, AccDataType, CDataType, GemmPipelineScheduler
|
|
std::tuple< Row, Row, Row, F16, F16, F32, F16, Intrawave>,
|
|
std::tuple< Row, Row, Row, F16, F16, F32, F16, Interwave>,
|
|
std::tuple< Row, Col, Row, F16, F16, F32, F16, Intrawave>,
|
|
std::tuple< Row, Col, Row, F16, F16, F32, F16, Interwave>,
|
|
std::tuple< Col, Row, Row, F16, F16, F32, F16, Intrawave>,
|
|
std::tuple< Col, Row, Row, F16, F16, F32, F16, Interwave>,
|
|
std::tuple< Col, Col, Row, F16, F16, F32, F16, Intrawave>,
|
|
std::tuple< Col, Col, Row, F16, F16, F32, F16, Interwave>
|
|
>;
|
|
// clang-format on
|
|
|
|
TYPED_TEST_SUITE(TestCkTileGemmMemPipeline, KernelTypes);
|
|
|
|
#include "test_gemm_mem_pipeline_ut_cases.inc"
|