From 8719b9c5bc1a97e62d675c02495ed72dda6fae73 Mon Sep 17 00:00:00 2001 From: Antonio Sánchez Date: Thu, 28 May 2020 17:40:15 +0000 Subject: Disable test for 32-bit systems (e.g. ARM, i386) Both i386 and 32-bit ARM do not define __uint128_t. On most systems, if __uint128_t is defined, then so is the macro __SIZEOF_INT128__. https://stackoverflow.com/questions/18531782/how-to-know-if-uint128-t-is-defined1 --- unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu | 2 ++ 1 file changed, 2 insertions(+) (limited to 'unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu') diff --git a/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu b/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu index f2a2a6cfa..99447b21d 100644 --- a/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu +++ b/unsupported/test/cxx11_tensor_complex_cwise_ops_gpu.cu @@ -77,6 +77,8 @@ void test_cuda_complex_cwise_ops() { gpu_out.device(gpu_device) = -gpu_in1; expected = -a; break; + case NbOps: + break; } assert(cudaMemcpyAsync(actual.data(), d_out, complex_bytes, cudaMemcpyDeviceToHost, gpu_device.stream()) == cudaSuccess); -- cgit v1.2.3