MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / fft_params

Class fft_params

test/fft.cpp:717–723  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

715TEST(FFT2, MultiGPUInPlaceSquare_CPP) { DEVICE_ITERATE((fft2InPlaceFunc())); }
716
717struct fft_params {
718 dim4 input_dims_;
719 bool is_odd_;
720 double norm_factor_;
721 fft_params(dim4 dim, bool is_odd, double norm_factor)
722 : input_dims_(dim), is_odd_(is_odd), norm_factor_(norm_factor) {}
723};
724
725class FFTBase : public ::testing::TestWithParam<fft_params> {};
726

Callers 1

fft.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected