MCPcopy Create free account
hub / github.com/clMathLibraries/clFFT / large_1D_array_complex_to_complex

Function large_1D_array_complex_to_complex

src/tests/accuracy_test_pow7.cpp:5814–5830  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5812 // *****************************************************
5813 template< class T, class cl_T, class fftw_T >
5814 void large_1D_array_complex_to_complex()
5815 {
5816 std::vector<size_t> lengths;
5817 lengths.push_back(large7);
5818 size_t batch = 2;
5819 std::vector<size_t> input_strides;
5820 std::vector<size_t> output_strides;
5821 size_t input_distance = 0;
5822 size_t output_distance = 0;
5823 layout::buffer_layout_t in_layout = layout::complex_interleaved;
5824 layout::buffer_layout_t out_layout = layout::complex_interleaved;
5825 placeness::placeness_t placeness = placeness::in_place;
5826 direction::direction_t direction = direction::forward;
5827
5828 data_pattern pattern = sawtooth;
5829 complex_to_complex<T, cl_T, fftw_T>(pattern, direction, lengths, batch, input_strides, output_strides, input_distance, output_distance, in_layout, out_layout, placeness);
5830 }
5831
5832 TEST_F(accuracy_test_pow7_single, large_1D_array_complex_to_complex)
5833 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected