Skip to content

Commit

Permalink
disable batched rocFFT 3D tests
Browse files Browse the repository at this point in the history
  • Loading branch information
upsj committed Feb 25, 2021
1 parent 7f1d0cd commit b6f2f39
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions hip/test/matrix/fft_kernels.hip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,9 @@ TYPED_TEST(Fft, ApplyStrided2DInverseIsEqualToReference)

TYPED_TEST(Fft, Apply3DIsEqualToReference)
{
#if GINKGO_HIP_PLATFORM_HCC
GTEST_SKIP() << "Broken in rocFFT";
#endif
using T = typename TestFixture::value_type;

this->fft3->apply(this->data.get(), this->out.get());
Expand All @@ -246,6 +249,9 @@ TYPED_TEST(Fft, Apply3DIsEqualToReference)

TYPED_TEST(Fft, ApplyStrided3DIsEqualToReference)
{
#if GINKGO_HIP_PLATFORM_HCC
GTEST_SKIP() << "Broken in rocFFT";
#endif
using T = typename TestFixture::value_type;

this->fft3->apply(this->data_strided.get(), this->out_strided.get());
Expand All @@ -257,6 +263,9 @@ TYPED_TEST(Fft, ApplyStrided3DIsEqualToReference)

TYPED_TEST(Fft, Apply3DInverseIsEqualToReference)
{
#if GINKGO_HIP_PLATFORM_HCC
GTEST_SKIP() << "Broken in rocFFT";
#endif
using T = typename TestFixture::value_type;

this->ifft3->apply(this->data.get(), this->out.get());
Expand All @@ -268,6 +277,9 @@ TYPED_TEST(Fft, Apply3DInverseIsEqualToReference)

TYPED_TEST(Fft, ApplyStrided3DInverseIsEqualToReference)
{
#if GINKGO_HIP_PLATFORM_HCC
GTEST_SKIP() << "Broken in rocFFT";
#endif
using T = typename TestFixture::value_type;

this->ifft3->apply(this->data_strided.get(), this->out_strided.get());
Expand Down

0 comments on commit b6f2f39

Please sign in to comment.