Skip to content

Commit d950c09

Browse files
authored
Smaller FFT test sizes for faster CI/CD (#656)
1 parent eb40489 commit d950c09

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/00_transform/FFT.cu

+5-5
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ TYPED_TEST(FFTTestComplexNonHalfTypesAllExecs, FFT1Axis)
162162
using TestType = cuda::std::tuple_element_t<0, TypeParam>;
163163

164164
const int d1 = 8;
165-
const int d2 = 512;
166-
const int d3 = 1024;
165+
const int d2 = 32;
166+
const int d3 = 64;
167167

168168
// example-begin fft-2
169169
auto in = make_tensor<TestType>({d1, d2, d3});
@@ -280,9 +280,9 @@ TYPED_TEST(FFTTestComplexNonHalfTypesAllExecs, FFT2Axis)
280280
MATX_ENTER_HANDLER();
281281
using TestType = cuda::std::tuple_element_t<0, TypeParam>;
282282
;
283-
const int d1 = 128;
284-
const int d2 = 256;
285-
const int d3 = 512;
283+
const int d1 = 8;
284+
const int d2 = 16;
285+
const int d3 = 32;
286286

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

0 commit comments

Comments
 (0)