mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
enable f8 tests (#3488)
This commit is contained in:
@@ -20,10 +20,6 @@ TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle)
|
||||
|
||||
TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_128x128x128)
|
||||
{
|
||||
if constexpr(std::is_same_v<std::tuple_element_t<3, TypeParam>, F8>)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping this test due to failures with F8";
|
||||
}
|
||||
constexpr int M = 128;
|
||||
constexpr int N = 128;
|
||||
constexpr int K = 128;
|
||||
@@ -48,11 +44,6 @@ TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_128x128x4096)
|
||||
|
||||
TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_128x2048x128)
|
||||
{
|
||||
if constexpr(std::is_same_v<std::tuple_element_t<3, TypeParam>, F8>)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping this test due to failures with F8";
|
||||
}
|
||||
|
||||
constexpr int M = 128;
|
||||
constexpr int N = 2048;
|
||||
constexpr int K = 128;
|
||||
@@ -77,11 +68,6 @@ TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_128x2048x4096)
|
||||
|
||||
TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_1024x128x128)
|
||||
{
|
||||
if constexpr(std::is_same_v<std::tuple_element_t<3, TypeParam>, F8>)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping this test due to failures with F8";
|
||||
}
|
||||
|
||||
constexpr int M = 1024;
|
||||
constexpr int N = 128;
|
||||
constexpr int K = 128;
|
||||
@@ -106,11 +92,6 @@ TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_1024x128x4096)
|
||||
|
||||
TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_1024x2048x128)
|
||||
{
|
||||
if constexpr(std::is_same_v<std::tuple_element_t<3, TypeParam>, F8>)
|
||||
{
|
||||
GTEST_SKIP() << "Skipping this test due to failures with F8";
|
||||
}
|
||||
|
||||
constexpr int M = 1024;
|
||||
constexpr int N = 2048;
|
||||
constexpr int K = 128;
|
||||
|
||||
Reference in New Issue
Block a user