mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-03 13:11:25 +00:00
* Refactor CK tile permute ctests to gtests * Refactor CK tile MOE smoothquant ctests to gtests * fix typo in comment Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update invalid case in else clause for get_precision_string * Refactor permute gtests to use templated versions of matrix_core_swizzle and permute functions --------- Co-authored-by: root <root@splinter-126-wr-c2.aus.dcgpu> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
15 lines
396 B
C++
15 lines
396 B
C++
// Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "test_moe_smoothquant_types.hpp"
|
|
#include "test_moe_smoothquant_util.hpp"
|
|
#include "gtest/gtest.h"
|
|
|
|
#define TEST_SUITE_NAME TestCkTileMoeSmoothquant
|
|
|
|
TYPED_TEST_SUITE(TestCkTileMoeSmoothquant, KernelTypesMoeSmoothquant);
|
|
|
|
#include "test_moe_smoothquant_cases.inc"
|
|
|
|
#undef TEST_SUITE_NAME
|