Searched refs:full_redux (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/test/ |
D | cxx11_tensor_complex_cuda.cu | 85 Tensor<std::complex<float>, 0> full_redux; in test_cuda_sum_reductions() local 86 full_redux = in.sum(); in test_cuda_sum_reductions() 89 std::size_t out_bytes = full_redux.size() * sizeof(std::complex<float>); in test_cuda_sum_reductions() 104 VERIFY_IS_APPROX(full_redux(), full_redux_gpu()); in test_cuda_sum_reductions() 122 Tensor<std::complex<float>, 0> full_redux; in test_cuda_product_reductions() local 123 full_redux = in.prod(); in test_cuda_product_reductions() 126 std::size_t out_bytes = full_redux.size() * sizeof(std::complex<float>); in test_cuda_product_reductions() 141 VERIFY_IS_APPROX(full_redux(), full_redux_gpu()); in test_cuda_product_reductions()
|
D | cxx11_tensor_reduction_cuda.cu | 34 Tensor<Type, 0, DataLayout> full_redux; in test_full_reductions() local 35 full_redux = in.sum(); in test_full_reductions() 38 std::size_t out_bytes = full_redux.size() * sizeof(Type); in test_full_reductions() 53 VERIFY_IS_APPROX(full_redux(), full_redux_gpu()); in test_full_reductions()
|
D | cxx11_tensor_reduction_sycl.cpp | 32 Tensor<float, 0> full_redux; in test_full_reductions_sycl() local 37 full_redux = in.sum(); in test_full_reductions_sycl() 49 VERIFY_IS_APPROX(full_redux_gpu(), full_redux()); in test_full_reductions_sycl()
|
D | cxx11_tensor_thread_pool.cpp | 283 Tensor<float, 0, DataLayout> full_redux; in test_multithreaded_reductions() local 284 full_redux = t1.sum(); in test_multithreaded_reductions() 291 VERIFY_IS_APPROX(full_redux(), full_redux_tp()); in test_multithreaded_reductions()
|