Fix missing installed files for OpenCL PME
authorPaul Bauer <paul.bauer.q@gmail.com>
Tue, 15 Sep 2020 11:31:21 +0000 (13:31 +0200)
committerArtem Zhmurov <zhmurov@gmail.com>
Tue, 15 Sep 2020 11:52:40 +0000 (11:52 +0000)
Change fa6862b510acd7b0225580b661446c278dbb0039 forgot to modify
the CMake files to install the renamed OpenCL header files.

Refs #3664

src/gromacs/CMakeLists.txt
src/gromacs/ewald/CMakeLists.txt

index 48636cdc863fe2a165551dd650088a0ef63afbd3..49bf5c59d9ac896df0373e5eb0ad8d6148b99cb7 100644 (file)
@@ -441,7 +441,7 @@ if(GMX_GPU_OPENCL)
         ewald/pme_spread.clh
         ewald/pme_solve.clh
         ewald/pme_gather.clh
-        ewald/pme_gpu_utils.clh
+        ewald/pme_gpu_calculate_splines.clh
         ewald/pme_program.cl
         ewald/pme_gpu_types.h
         )
index 52c57a9a76043f3b33139d673bdf46b57d0475d6..c5977c14b4f4e1ac8306c4034bc1745dee49b964 100644 (file)
@@ -93,7 +93,7 @@ endif()
 
 
 set(PME_OCL_KERNEL_SOURCES
-    "${CMAKE_CURRENT_SOURCE_DIR}/pme_gpu_utils.clh"
+    "${CMAKE_CURRENT_SOURCE_DIR}/pme_gpu_calculate_splines.clh"
     "${CMAKE_CURRENT_SOURCE_DIR}/pme_solve.clh"
     "${CMAKE_CURRENT_SOURCE_DIR}/pme_gather.clh"
     "${CMAKE_CURRENT_SOURCE_DIR}/pme_spread.clh")