From 79b50a00ff7bdf8b2634711f7098bd71e009ae00 Mon Sep 17 00:00:00 2001 From: Serhii Yaskovets <yaskovet@mpi-cbg.de> Date: Wed, 1 Nov 2023 14:01:01 +0100 Subject: [PATCH] Refactor naming getgpuContext -> getGpuContext --- src/Operators/Vector/vector_dist_operators_functions.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Operators/Vector/vector_dist_operators_functions.hpp b/src/Operators/Vector/vector_dist_operators_functions.hpp index a71e29f..c75237b 100644 --- a/src/Operators/Vector/vector_dist_operators_functions.hpp +++ b/src/Operators/Vector/vector_dist_operators_functions.hpp @@ -286,7 +286,7 @@ struct point_scalar_process auto & v_cl = create_vcluster<CudaMemory>(); - openfpm::reduce((val_type *)ve.template getDeviceBuffer<0>(), ve.size(), (val_type *)(exp_tmp2[0].getDevicePointer()), gpu::plus_t<val_type>(), v_cl.getgpuContext()); + openfpm::reduce((val_type *)ve.template getDeviceBuffer<0>(), ve.size(), (val_type *)(exp_tmp2[0].getDevicePointer()), gpu::plus_t<val_type>(), v_cl.getGpuContext()); exp_tmp2[0].deviceToHost(); @@ -326,7 +326,7 @@ struct point_scalar_process<val_type,is_sort,true> ve.size(), (typename val_type::coord_type *)(exp_tmp2[0].getDevicePointer()), gpu::plus_t<typename val_type::coord_type>(), - v_cl.getgpuContext()); + v_cl.getGpuContext()); exp_tmp2[0].deviceToHost(); -- GitLab