diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h b/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h index 27c10a0cf..09c96317e 100644 --- a/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h @@ -14,22 +14,22 @@ #if defined(EIGEN_USE_SYCL) && !defined(EIGEN_CXX11_TENSOR_TENSOR_DEVICE_SYCL_H) #define EIGEN_CXX11_TENSOR_TENSOR_DEVICE_SYCL_H -template struct CheckAlignStatically{ +template struct CheckAlignStatically { static const bool Val= (((Align&(Align-1))==0) && (Align >= sizeof(void *))); }; template -struct Conditional_Allocate{ +struct Conditional_Allocate { -EIGEN_ALWAYS_INLINE static void* conditional_allocate(std::size_t elements){ - return aligned_alloc(Align, elements); -} + EIGEN_ALWAYS_INLINE static void* conditional_allocate(std::size_t elements) { + return aligned_alloc(Align, elements); + } }; template -struct Conditional_Allocate{ +struct Conditional_Allocate { -EIGEN_ALWAYS_INLINE static void* conditional_allocate(std::size_t elements){ - return malloc(elements); -} + EIGEN_ALWAYS_INLINE static void* conditional_allocate(std::size_t elements){ + return malloc(elements); + } }; template > struct SyclAllocator { @@ -551,4 +551,4 @@ struct SyclKernelDevice:DefaultDevice{}; } // end namespace Eigen -#endif // EIGEN_CXX11_TENSOR_TENSOR_DEVICE_SYCL_H \ No newline at end of file +#endif // EIGEN_CXX11_TENSOR_TENSOR_DEVICE_SYCL_H