013952973d458055a838a84f17c5993bbd371835,demos/fft2d_demo.py,,,#,14
Before Change
plan_inverse = cu_fft.Plan(x_gpu.shape, np.complex64, np.float32)
cu_fft.ifft(xf_gpu, y_gpu, plan_inverse, True)
print("Success status: ", np.allclose(y, y_gpu.get(), atol=1e-6))
print("Testing in-place fft..")
x = np.asarray(np.random.rand(N, M) + 1j * np.random.rand(N, M), np.complex64)
After Change
plan_inverse = cu_fft.Plan(x_gpu.shape, np.complex64, np.float32)
cu_fft.ifft(xf_gpu, y_gpu, plan_inverse, True)
print("Success status: %r" % np.allclose(y, y_gpu.get(), atol=1e-6))
print("Testing in-place fft..")
x = np.asarray(np.random.rand(N, M) + 1j * np.random.rand(N, M), np.complex64)
In pattern: SUPERPATTERN
Frequency: 8
Non-data size: 3
Instances
Project Name: lebedov/scikit-cuda
Commit Name: 013952973d458055a838a84f17c5993bbd371835
Time: 2018-05-01
Author: lev@columbia.edu
File Name: demos/fft2d_demo.py
Class Name:
Method Name:
Project Name: lebedov/scikit-cuda
Commit Name: 013952973d458055a838a84f17c5993bbd371835
Time: 2018-05-01
Author: lev@columbia.edu
File Name: demos/fft2d_batch_demo.py
Class Name:
Method Name:
Project Name: lebedov/scikit-cuda
Commit Name: 013952973d458055a838a84f17c5993bbd371835
Time: 2018-05-01
Author: lev@columbia.edu
File Name: demos/fft_batch_demo.py
Class Name:
Method Name:
Project Name: lebedov/scikit-cuda
Commit Name: 013952973d458055a838a84f17c5993bbd371835
Time: 2018-05-01
Author: lev@columbia.edu
File Name: demos/pinv_demo.py
Class Name:
Method Name:
Project Name: lebedov/scikit-cuda
Commit Name: 013952973d458055a838a84f17c5993bbd371835
Time: 2018-05-01
Author: lev@columbia.edu
File Name: demos/fft_demo.py
Class Name:
Method Name:
Project Name: lebedov/scikit-cuda
Commit Name: 013952973d458055a838a84f17c5993bbd371835
Time: 2018-05-01
Author: lev@columbia.edu
File Name: demos/indexing_2d_demo.py
Class Name:
Method Name:
Project Name: lebedov/scikit-cuda
Commit Name: 013952973d458055a838a84f17c5993bbd371835
Time: 2018-05-01
Author: lev@columbia.edu
File Name: demos/tril_demo.py
Class Name:
Method Name:
Project Name: lebedov/scikit-cuda
Commit Name: 013952973d458055a838a84f17c5993bbd371835
Time: 2018-05-01
Author: lev@columbia.edu
File Name: demos/mdot_demo.py
Class Name:
Method Name: