/external/eigen/unsupported/test/ |
D | cxx11_tensor_reduction_sycl.cpp | 67 Tensor<float, 2> redux(reduced_tensorRange); in test_first_dim_reductions_sycl() local 72 redux= in.sum(red_axis); in test_first_dim_reductions_sycl() 87 VERIFY_IS_APPROX(redux_gpu(j,k), redux(j,k)); in test_first_dim_reductions_sycl() 105 Tensor<float, 2> redux(reduced_tensorRange); in test_last_dim_reductions_sycl() local 110 redux= in.sum(red_axis); in test_last_dim_reductions_sycl() 124 VERIFY_IS_APPROX(redux_gpu(j,k), redux(j,k)); in test_last_dim_reductions_sycl()
|
D | cxx11_tensor_reduction_cuda.cu | 70 Tensor<Type, 2, DataLayout> redux = in.sum(red_axis); in test_first_dim_reductions() local 92 VERIFY_IS_APPROX(2*redux(i), redux_gpu(i)); in test_first_dim_reductions() 110 Tensor<Type, 2, DataLayout> redux = in.sum(red_axis); in test_last_dim_reductions() local 132 VERIFY_IS_APPROX(2*redux(i), redux_gpu(i)); in test_last_dim_reductions()
|
D | cxx11_tensor_of_float16_cuda.cu | 318 void test_cuda_reductions(int size1, int size2, int redux) { in test_cuda_reductions() argument 321 << " tensor along dim " << redux << std::endl; in test_cuda_reductions() 326 int result_size = (redux == 1 ? size1 : size2); in test_cuda_reductions() 345 Eigen::array<int, 1> redux_dim = {{redux}}; in test_cuda_reductions()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopVectorize/ |
D | reverse_induction.ll | 20 %redux5 = phi i32 [ 0, %entry ], [ %inc.redux, %for.body ] 24 %inc.redux = add i32 %tmp.i1, %redux5 30 ret i32 %inc.redux 46 %redux5 = phi i32 [ 0, %entry ], [ %inc.redux, %for.body ] 50 %inc.redux = add i32 %tmp.i1, %redux5 56 ret i32 %inc.redux 72 %redux5 = phi i32 [ 0, %entry ], [ %inc.redux, %for.body ] 76 %inc.redux = add i32 %tmp.i1, %redux5 82 ret i32 %inc.redux
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | reverse_induction.ll | 26 %redux5 = phi i32 [ 0, %entry ], [ %inc.redux, %for.body ] 30 %inc.redux = add i32 %tmp.i1, %redux5 36 ret i32 %inc.redux 58 %redux5 = phi i32 [ 0, %entry ], [ %inc.redux, %for.body ] 62 %inc.redux = add i32 %tmp.i1, %redux5 68 ret i32 %inc.redux 90 %redux5 = phi i32 [ 0, %entry ], [ %inc.redux, %for.body ] 94 %inc.redux = add i32 %tmp.i1, %redux5 100 ret i32 %inc.redux
|
/external/wpa_supplicant_8/src/tls/ |
D | libtommath.c | 1888 int (*redux)(mp_int*,mp_int*,mp_int*); in s_mp_exptmod() local 1940 redux = mp_reduce; in s_mp_exptmod() 1945 redux = mp_reduce_2k_l; in s_mp_exptmod() 1975 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) { in s_mp_exptmod() 1987 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) { in s_mp_exptmod() 2036 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod() 2053 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod() 2062 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod() 2080 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod() 2090 if ((err = redux (&res, P, &mu)) != MP_OKAY) { in s_mp_exptmod() [all …]
|
/external/eigen/test/ |
D | cuda_basic.cu | 81 struct redux { struct 161 CALL_SUBTEST( run_and_compare_to_cuda(redux<Array4f>(), nthreads, in, out) ); in test_cuda_basic() 162 CALL_SUBTEST( run_and_compare_to_cuda(redux<Matrix3f>(), nthreads, in, out) ); in test_cuda_basic()
|
D | CMakeLists.txt | 169 ei_add_test(redux)
|
D | array_for_matrix.cpp | 48 …VERIFY_IS_APPROX(m1.colwise().sum(), m1.colwise().redux(internal::scalar_sum_op<Scalar,Scalar>())); in array_for_matrix()
|
D | array.cpp | 76 …VERIFY_IS_APPROX(m1.colwise().sum(), m1.colwise().redux(internal::scalar_sum_op<Scalar,Scalar>())); in array()
|
/external/eigen/Eigen/src/Core/ |
D | Redux.h | 411 DenseBase<Derived>::redux(const Func& func) const 428 return derived().redux(Eigen::internal::scalar_min_op<Scalar,Scalar>()); 438 return derived().redux(Eigen::internal::scalar_max_op<Scalar,Scalar>()); 453 return derived().redux(Eigen::internal::scalar_sum_op<Scalar,Scalar>()); 468 …return Scalar(derived().redux(Eigen::internal::scalar_sum_op<Scalar,Scalar>())) / Scalar(this->siz… 487 return derived().redux(Eigen::internal::scalar_product_op<Scalar>());
|
D | StableNorm.h | 216 return this->cwiseAbs().redux(internal::scalar_hypot_op<RealScalar>()); in hypotNorm()
|
D | VectorwiseOp.h | 134 { return mat.redux(m_functor); } 271 redux(const BinaryOp& func = BinaryOp()) const
|
D | DenseBase.h | 460 Scalar redux(const BinaryOp& func) const;
|
/external/tensorflow/tensorflow/core/kernels/ |
D | bias_op.cc | 293 redux; in Compute() local 297 redux(context->eigen_device<Device>(), two_dims, output_backprop, in Compute()
|
/external/eigen/Eigen/src/Geometry/ |
D | Homogeneous.h | 106 redux(const Func& func) const 108 return func(m_matrix.redux(func), Scalar(1));
|
/external/eigen/doc/ |
D | TutorialReductionsVisitorsBroadcasting.dox | 81 In the meantime you can have a look at the DenseBase::redux() function.
|
/external/brotli/tests/testdata/ |
D | lcet10.txt | 4750 simulacra for the text redux * One's model of text determines what one's
|