Skip to content

Commit 6324b40

Browse files
committed
fix runtime warning
1 parent a4a8663 commit 6324b40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Libraries/oneMKL/computed_tomography/computed_tomography.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ sycl::event step3_ifft_2d(matrix_r &fhat,
289289
{
290290
// Configure descriptor
291291
std::int64_t strides[3] = {0, (fhat.ldw) / 2, 1}; // fhat.ldw/2, in complex'es
292-
ifft2d.set_value(oneapi::mkl::dft::config_param::INPUT_STRIDES, strides);
292+
ifft2d.set_value(oneapi::mkl::dft::config_param::FWD_STRIDES, strides);
293293
ifft2d.commit(main_queue);
294294

295295
sycl::event ifft2d_ev = oneapi::mkl::dft::compute_backward(ifft2d, fhat.data, deps);

0 commit comments

Comments
 (0)