From 7dd35ef7499b85b8bedae0870532595f2d7b41f3 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Wed, 17 Jun 2026 20:46:14 +0200 Subject: [PATCH] Make disable accelerator aware mpi compile for CUDA --- Grid/lattice/Lattice_reduction_gpu.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Grid/lattice/Lattice_reduction_gpu.h b/Grid/lattice/Lattice_reduction_gpu.h index 27388062..af8aa978 100644 --- a/Grid/lattice/Lattice_reduction_gpu.h +++ b/Grid/lattice/Lattice_reduction_gpu.h @@ -438,5 +438,11 @@ inline typename vobj::scalar_object sum_gpu_large(const vobj *lat, Integer osite result = sumD_gpu_large(lat,osites); return result; } +template Word checksum_gpu(Word *vec,uint64_t L) +{ + Word w; + bzero(&w,sizeof(w)); + return w; +} NAMESPACE_END(Grid);