Skip to content

Commit

Permalink
Smaller FFT test sizes for faster CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
aayushg55 authored and cliffburdick committed Jun 27, 2024
1 parent eb40489 commit 2b0f7be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/00_transform/FFT.cu
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ TYPED_TEST(FFTTestComplexNonHalfTypesAllExecs, FFT1Axis)
using TestType = cuda::std::tuple_element_t<0, TypeParam>;

const int d1 = 8;
const int d2 = 512;
const int d3 = 1024;
const int d2 = 32;
const int d3 = 64;

// example-begin fft-2
auto in = make_tensor<TestType>({d1, d2, d3});
Expand Down Expand Up @@ -280,9 +280,9 @@ TYPED_TEST(FFTTestComplexNonHalfTypesAllExecs, FFT2Axis)
MATX_ENTER_HANDLER();
using TestType = cuda::std::tuple_element_t<0, TypeParam>;
;
const int d1 = 128;
const int d2 = 256;
const int d3 = 512;
const int d1 = 8;
const int d2 = 16;
const int d3 = 32;

auto in = make_tensor<TestType>({d1, d2, d3});
auto out1 = make_tensor<TestType>({d1, d2, d3});
Expand Down

0 comments on commit 2b0f7be

Please sign in to comment.