Home
last modified time | relevance | path

Searched refs:full_redux_gpu (Results 1 – 3 of 3) sorted by relevance

/external/eigen/unsupported/test/
Dcxx11_tensor_complex_gpu.cu96 Tensor<std::complex<float>, 0> full_redux_gpu; in test_cuda_sum_reductions() local
97 gpu_device.memcpyDeviceToHost(full_redux_gpu.data(), gpu_out_ptr, out_bytes); in test_cuda_sum_reductions()
101 VERIFY_IS_APPROX(full_redux(), full_redux_gpu()); in test_cuda_sum_reductions()
132 Tensor<std::complex<float>, 0> full_redux_gpu; in test_cuda_mean_reductions() local
133 gpu_device.memcpyDeviceToHost(full_redux_gpu.data(), gpu_out_ptr, out_bytes); in test_cuda_mean_reductions()
137 VERIFY_IS_APPROX(full_redux(), full_redux_gpu()); in test_cuda_mean_reductions()
168 Tensor<std::complex<float>, 0> full_redux_gpu; in test_cuda_product_reductions() local
169 gpu_device.memcpyDeviceToHost(full_redux_gpu.data(), gpu_out_ptr, out_bytes); in test_cuda_product_reductions()
173 VERIFY_IS_APPROX(full_redux(), full_redux_gpu()); in test_cuda_product_reductions()
Dcxx11_tensor_reduction_sycl.cpp36 Tensor<DataType, 2, DataLayout, IndexType> full_redux_gpu(outRange); in test_full_reductions_sum_sycl() local
45 sizeof(DataType) * (full_redux_gpu.dimensions().TotalSize())); in test_full_reductions_sum_sycl()
55 full_redux_gpu.data(), gpu_out_data, in test_full_reductions_sum_sycl()
56 (full_redux_gpu.dimensions().TotalSize()) * sizeof(DataType)); in test_full_reductions_sum_sycl()
58 std::cout << "SYCL FULL :" << full_redux_gpu(0, 0) in test_full_reductions_sum_sycl()
60 VERIFY_IS_APPROX(full_redux_gpu(0, 0), full_redux(0, 0)); in test_full_reductions_sum_sycl()
77 scalar_tensor full_redux_gpu; in test_full_reductions_sum_with_offset_sycl() local
97 sycl_device.memcpyDeviceToHost(full_redux_gpu.data(), gpu_out_data, in test_full_reductions_sum_with_offset_sycl()
101 VERIFY_IS_APPROX(full_redux_gpu(), full_redux()); in test_full_reductions_sum_with_offset_sycl()
116 Tensor<DataType, 0, DataLayout, IndexType> full_redux_gpu; in test_full_reductions_max_sycl() local
[all …]
Dcxx11_tensor_reduction_gpu.cu45 Tensor<Type, 0, DataLayout> full_redux_gpu; in test_full_reductions() local
46 gpu_device.memcpyDeviceToHost(full_redux_gpu.data(), gpu_out_ptr, out_bytes); in test_full_reductions()
50 VERIFY_IS_APPROX(full_redux(), full_redux_gpu()); in test_full_reductions()