SYCL: 3D FFT using oneMKL
[alexxy/gromacs.git] / src / gromacs / fft / gpu_3dfft_sycl.cpp
index ff2abfd48582b9648363bdc6c878b9e547365ce2..a24c5bb718c5af70a0c180ee7f7c795063432669 100644 (file)
@@ -69,14 +69,14 @@ Gpu3dFft::ImplSycl::ImplSycl(bool /*allocateGrids*/,
                              DeviceBuffer<float>* /*realGrid*/,
                              DeviceBuffer<float>* /*complexGrid*/)
 {
-    GMX_THROW(NotImplementedError("GPU 3DFFT is not implemented in SYCL"));
+    GMX_THROW(NotImplementedError("Using SYCL build without GPU 3DFFT support"));
 }
 
 Gpu3dFft::ImplSycl::~ImplSycl() = default;
 
 void Gpu3dFft::ImplSycl::perform3dFft(gmx_fft_direction /*dir*/, CommandEvent* /*timingEvent*/)
 {
-    GMX_THROW(NotImplementedError("Not implemented on SYCL yet"));
+    GMX_THROW(NotImplementedError("Using SYCL build without GPU 3DFFT support"));
 }
 
 #pragma clang diagnostic pop