// SPDX-License-Identifier: MIT // Copyright (c) 2024-2025, Advanced Micro Devices, Inc. All rights reserved. #include #include "gtest/gtest.h" #include "ck_tile/host.hpp" #include "test_grouped_gemm_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 True = ck_tile::bool_constant; using False = ck_tile::bool_constant; // clang-format off using KernelTypes = ::testing::Types< // ALayout, BLayout, CLayout, ADataType, BDataType, AccDataType, CDataType, Persistent std::tuple< Row, Col, Row, F16, F16, F32, F16, True>, std::tuple< Row, Col, Row, F16, F16, F32, F16, False>, std::tuple< Row, Col, Row, F16, F16, F32, F16, True>, std::tuple< Row, Col, Row, F16, F16, F32, F16, False>, std::tuple< Col, Col, Row, F16, F16, F32, F16, True>, std::tuple< Col, Col, Row, F16, F16, F32, F16, False>, std::tuple< Row, Row, Row, F16, F16, F32, F16, True>, std::tuple< Row, Row, Row, F16, F16, F32, F16, False>, std::tuple< Col, Row, Row, F16, F16, F32, F16, True>, std::tuple< Col, Row, Row, F16, F16, F32, F16, False> >; // clang-format on TYPED_TEST_SUITE(TestCkTileGroupedGemm, KernelTypes); #include "test_grouped_gemm_ut_cases.inc"