mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-30 19:57:40 +00:00
Disable FP8 / BF8 testing on CDNA1/2, it doesn't work anymore and needs to be either fixed or removed.
This commit is contained in:
@@ -7,6 +7,8 @@
|
||||
#include <vector>
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include "ck/utility/common_header.hpp"
|
||||
#include "ck/host_utility/device_prop.hpp"
|
||||
#include "profiler/profile_grouped_conv_fwd_impl.hpp"
|
||||
|
||||
static ck::index_t param_mask = 0xffff;
|
||||
@@ -45,6 +47,15 @@ class TestGroupedConvndFwd : public ::testing::Test
|
||||
{
|
||||
continue;
|
||||
}
|
||||
// FP8 workaround for CDNA1/2 is currently broken, do not test.
|
||||
if(ck::get_device_name() == "gfx908" || ck::get_device_name() == "gfx90a")
|
||||
{
|
||||
if(std::is_same<InDataType, F8>::value || std::is_same<InDataType, BF8>::value)
|
||||
{
|
||||
printf("Skipping FP8 / BF8 tests on CDNA1/2.\n");
|
||||
continue;
|
||||
}
|
||||
}
|
||||
auto& param = conv_params[i];
|
||||
pass = pass && ck::profiler::profile_grouped_conv_fwd_impl<NDimSpatial,
|
||||
InLayout,
|
||||
|
||||
Reference in New Issue
Block a user