X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?p=alexxy%2Fgromacs.git;a=blobdiff_plain;f=src%2Fgromacs%2Fnbnxm%2Fsycl%2Fnbnxm_gpu_buffer_ops_internal_sycl.cpp;fp=src%2Fgromacs%2Fnbnxm%2Fsycl%2Fnbnxm_gpu_buffer_ops_internal_sycl.cpp;h=b4cda5e263d2c1f3584fd7c94a3e43bb959a1010;hp=d95bd6f06afec370b906665ba7e8574f28a28280;hb=69d9df0fb1f51869e7f266416c1c3dbe637360ac;hpb=d043b17b33a2e6f4e5cfb8ead27ee9a40b27adb8 diff --git a/src/gromacs/nbnxm/sycl/nbnxm_gpu_buffer_ops_internal_sycl.cpp b/src/gromacs/nbnxm/sycl/nbnxm_gpu_buffer_ops_internal_sycl.cpp index d95bd6f06a..b4cda5e263 100644 --- a/src/gromacs/nbnxm/sycl/nbnxm_gpu_buffer_ops_internal_sycl.cpp +++ b/src/gromacs/nbnxm/sycl/nbnxm_gpu_buffer_ops_internal_sycl.cpp @@ -76,11 +76,11 @@ static auto nbnxmKernelTransformXToXq(cl::sycl::handler& c int numAtomsPerCell, int columnsOffset) { - cgh.require(a_xq); - cgh.require(a_x); - cgh.require(a_atomIndex); - cgh.require(a_numAtoms); - cgh.require(a_cellIndex); + a_xq.bind(cgh); + a_x.bind(cgh); + a_atomIndex.bind(cgh); + a_numAtoms.bind(cgh); + a_cellIndex.bind(cgh); return [=](cl::sycl::id<2> itemIdx) { // Map cell-level parallelism to y component of block index.