From baac1127d003bcd92fe5badf3715af6a31827e6f Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Thu, 25 Jul 2024 18:06:05 +0000 Subject: [PATCH] Later intel compiler happiness --- Grid/tensors/Tensor_class.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Grid/tensors/Tensor_class.h b/Grid/tensors/Tensor_class.h index f3114cb5..e63e228c 100644 --- a/Grid/tensors/Tensor_class.h +++ b/Grid/tensors/Tensor_class.h @@ -460,3 +460,9 @@ void vprefetch(const iMatrix &vv) { NAMESPACE_END(Grid); + +#ifdef GRID_SYCL +template struct sycl::is_device_copyable > : public std::true_type {}; +template struct sycl::is_device_copyable > : public std::true_type {}; +template struct sycl::is_device_copyable > : public std::true_type {}; +#endif