/external/eigen/test/ |
D | rand.cpp | 64 CALL_SUBTEST(check_in_range<float>(10,11)); in test_rand() 65 CALL_SUBTEST(check_in_range<float>(1.24234523,1.24234523)); in test_rand() 66 CALL_SUBTEST(check_in_range<float>(-1,1)); in test_rand() 67 CALL_SUBTEST(check_in_range<float>(-1432.2352,-1432.2352)); in test_rand() 69 CALL_SUBTEST(check_in_range<double>(10,11)); in test_rand() 70 CALL_SUBTEST(check_in_range<double>(1.24234523,1.24234523)); in test_rand() 71 CALL_SUBTEST(check_in_range<double>(-1,1)); in test_rand() 72 CALL_SUBTEST(check_in_range<double>(-1432.2352,-1432.2352)); in test_rand() 74 CALL_SUBTEST(check_in_range<int>(0,-1)); in test_rand() 75 CALL_SUBTEST(check_in_range<short>(0,-1)); in test_rand() [all …]
|
D | product_small.cpp | 73 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,ColMajor,ColMajor,ColMajor>(rows,cols,depth) )); in test_lazy_all_layout() 74 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,RowMajor,ColMajor,ColMajor>(rows,cols,depth) )); in test_lazy_all_layout() 75 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,ColMajor,RowMajor,ColMajor>(rows,cols,depth) )); in test_lazy_all_layout() 76 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,RowMajor,RowMajor,ColMajor>(rows,cols,depth) )); in test_lazy_all_layout() 77 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,ColMajor,ColMajor,RowMajor>(rows,cols,depth) )); in test_lazy_all_layout() 78 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,RowMajor,ColMajor,RowMajor>(rows,cols,depth) )); in test_lazy_all_layout() 79 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,ColMajor,RowMajor,RowMajor>(rows,cols,depth) )); in test_lazy_all_layout() 80 CALL_SUBTEST(( test_lazy_single<T,Rows,Cols,Depth,RowMajor,RowMajor,RowMajor>(rows,cols,depth) )); in test_lazy_all_layout() 91 CALL_SUBTEST(( test_lazy_all_layout<T,1,1,1>() )); in test_lazy_l1() 92 CALL_SUBTEST(( test_lazy_all_layout<T,1,1,2>() )); in test_lazy_l1() [all …]
|
D | sizeof.cpp | 23 CALL_SUBTEST(verifySizeOf(Matrix<float, 1, 1>()) ); in test_sizeof() 24 CALL_SUBTEST(verifySizeOf(Array<float, 2, 1>()) ); in test_sizeof() 25 CALL_SUBTEST(verifySizeOf(Array<float, 3, 1>()) ); in test_sizeof() 26 CALL_SUBTEST(verifySizeOf(Array<float, 4, 1>()) ); in test_sizeof() 27 CALL_SUBTEST(verifySizeOf(Array<float, 5, 1>()) ); in test_sizeof() 28 CALL_SUBTEST(verifySizeOf(Array<float, 6, 1>()) ); in test_sizeof() 29 CALL_SUBTEST(verifySizeOf(Array<float, 7, 1>()) ); in test_sizeof() 30 CALL_SUBTEST(verifySizeOf(Array<float, 8, 1>()) ); in test_sizeof() 31 CALL_SUBTEST(verifySizeOf(Array<float, 9, 1>()) ); in test_sizeof() 32 CALL_SUBTEST(verifySizeOf(Array<float, 10, 1>()) ); in test_sizeof() [all …]
|
D | numext.cpp | 37 CALL_SUBTEST( check_abs<bool>() ); in test_numext() 38 CALL_SUBTEST( check_abs<signed char>() ); in test_numext() 39 CALL_SUBTEST( check_abs<unsigned char>() ); in test_numext() 40 CALL_SUBTEST( check_abs<short>() ); in test_numext() 41 CALL_SUBTEST( check_abs<unsigned short>() ); in test_numext() 42 CALL_SUBTEST( check_abs<int>() ); in test_numext() 43 CALL_SUBTEST( check_abs<unsigned int>() ); in test_numext() 44 CALL_SUBTEST( check_abs<long>() ); in test_numext() 45 CALL_SUBTEST( check_abs<unsigned long>() ); in test_numext() 46 CALL_SUBTEST( check_abs<half>() ); in test_numext() [all …]
|
D | qtvector.cpp | 133 CALL_SUBTEST(check_qtvector_matrix(Vector2f())); in test_qtvector() 134 CALL_SUBTEST(check_qtvector_matrix(Matrix3f())); in test_qtvector() 135 CALL_SUBTEST(check_qtvector_matrix(Matrix3d())); in test_qtvector() 138 CALL_SUBTEST(check_qtvector_matrix(Matrix2f())); in test_qtvector() 139 CALL_SUBTEST(check_qtvector_matrix(Vector4f())); in test_qtvector() 140 CALL_SUBTEST(check_qtvector_matrix(Matrix4f())); in test_qtvector() 141 CALL_SUBTEST(check_qtvector_matrix(Matrix4d())); in test_qtvector() 144 CALL_SUBTEST(check_qtvector_matrix(MatrixXd(1,1))); in test_qtvector() 145 CALL_SUBTEST(check_qtvector_matrix(VectorXd(20))); in test_qtvector() 146 CALL_SUBTEST(check_qtvector_matrix(RowVectorXf(20))); in test_qtvector() [all …]
|
D | dynalloc.cpp | 125 CALL_SUBTEST(check_handmade_aligned_malloc()); in test_dynalloc() 126 CALL_SUBTEST(check_aligned_malloc()); in test_dynalloc() 127 CALL_SUBTEST(check_aligned_new()); in test_dynalloc() 128 CALL_SUBTEST(check_aligned_stack_alloc()); in test_dynalloc() 132 CALL_SUBTEST( check_custom_new_delete<Vector4f>() ); in test_dynalloc() 133 CALL_SUBTEST( check_custom_new_delete<Vector2f>() ); in test_dynalloc() 134 CALL_SUBTEST( check_custom_new_delete<Matrix4f>() ); in test_dynalloc() 135 CALL_SUBTEST( check_custom_new_delete<MatrixXi>() ); in test_dynalloc() 142 CALL_SUBTEST(check_dynaligned<Vector4f>() ); in test_dynalloc() 143 CALL_SUBTEST(check_dynaligned<Vector2d>() ); in test_dynalloc() [all …]
|
D | lscg.cpp | 20 CALL_SUBTEST( check_sparse_square_solving(lscg_colmajor_diag) ); in test_lscg_T() 21 CALL_SUBTEST( check_sparse_square_solving(lscg_colmajor_I) ); in test_lscg_T() 23 CALL_SUBTEST( check_sparse_leastsquare_solving(lscg_colmajor_diag) ); in test_lscg_T() 24 CALL_SUBTEST( check_sparse_leastsquare_solving(lscg_colmajor_I) ); in test_lscg_T() 26 CALL_SUBTEST( check_sparse_square_solving(lscg_rowmajor_diag) ); in test_lscg_T() 27 CALL_SUBTEST( check_sparse_square_solving(lscg_rowmajor_I) ); in test_lscg_T() 29 CALL_SUBTEST( check_sparse_leastsquare_solving(lscg_rowmajor_diag) ); in test_lscg_T() 30 CALL_SUBTEST( check_sparse_leastsquare_solving(lscg_rowmajor_I) ); in test_lscg_T()
|
D | cuda_basic.cu | 155 CALL_SUBTEST( run_and_compare_to_cuda(coeff_wise<Vector3f>(), nthreads, in, out) ); in test_cuda_basic() 156 CALL_SUBTEST( run_and_compare_to_cuda(coeff_wise<Array44f>(), nthreads, in, out) ); in test_cuda_basic() 158 CALL_SUBTEST( run_and_compare_to_cuda(replicate<Array4f>(), nthreads, in, out) ); in test_cuda_basic() 159 CALL_SUBTEST( run_and_compare_to_cuda(replicate<Array33f>(), nthreads, in, out) ); in test_cuda_basic() 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() 164 CALL_SUBTEST( run_and_compare_to_cuda(prod_test<Matrix3f,Matrix3f>(), nthreads, in, out) ); in test_cuda_basic() 165 CALL_SUBTEST( run_and_compare_to_cuda(prod_test<Matrix4f,Vector4f>(), nthreads, in, out) ); in test_cuda_basic() 167 CALL_SUBTEST( run_and_compare_to_cuda(diagonal<Matrix3f,Vector3f>(), nthreads, in, out) ); in test_cuda_basic() 168 CALL_SUBTEST( run_and_compare_to_cuda(diagonal<Matrix4f,Vector4f>(), nthreads, in, out) ); in test_cuda_basic() [all …]
|
D | conjugate_gradient.cpp | 22 CALL_SUBTEST( check_sparse_spd_solving(cg_colmajor_lower_diag) ); in test_conjugate_gradient_T() 23 CALL_SUBTEST( check_sparse_spd_solving(cg_colmajor_upper_diag) ); in test_conjugate_gradient_T() 24 CALL_SUBTEST( check_sparse_spd_solving(cg_colmajor_loup_diag) ); in test_conjugate_gradient_T() 25 CALL_SUBTEST( check_sparse_spd_solving(cg_colmajor_lower_I) ); in test_conjugate_gradient_T() 26 CALL_SUBTEST( check_sparse_spd_solving(cg_colmajor_upper_I) ); in test_conjugate_gradient_T()
|
D | svd_common.h | 232 CALL_SUBTEST(( svd_check_full(m, fullSvd) )); in svd_test_all_computation_options() 233 CALL_SUBTEST(( svd_least_square<SvdType>(m, ComputeFullU | ComputeFullV) )); in svd_test_all_computation_options() 234 CALL_SUBTEST(( svd_min_norm(m, ComputeFullU | ComputeFullV) )); in svd_test_all_computation_options() 243 CALL_SUBTEST(( svd_compare_to_full(m, ComputeFullU, fullSvd) )); in svd_test_all_computation_options() 244 CALL_SUBTEST(( svd_compare_to_full(m, ComputeFullV, fullSvd) )); in svd_test_all_computation_options() 245 CALL_SUBTEST(( svd_compare_to_full(m, 0, fullSvd) )); in svd_test_all_computation_options() 249 CALL_SUBTEST(( svd_compare_to_full(m, ComputeFullU|ComputeThinV, fullSvd) )); in svd_test_all_computation_options() 250 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinV, fullSvd) )); in svd_test_all_computation_options() 251 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU|ComputeFullV, fullSvd) )); in svd_test_all_computation_options() 252 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU , fullSvd) )); in svd_test_all_computation_options() [all …]
|
/external/eigen/unsupported/test/ |
D | FFTW.cpp | 230 CALL_SUBTEST( test_return_by_value(32) ); in test_FFTW() 233 CALL_SUBTEST( test_complex<float>(32) ); CALL_SUBTEST( test_complex<double>(32) ); in test_FFTW() 234 CALL_SUBTEST( test_complex<float>(256) ); CALL_SUBTEST( test_complex<double>(256) ); in test_FFTW() 235 CALL_SUBTEST( test_complex<float>(3*8) ); CALL_SUBTEST( test_complex<double>(3*8) ); in test_FFTW() 236 CALL_SUBTEST( test_complex<float>(5*32) ); CALL_SUBTEST( test_complex<double>(5*32) ); in test_FFTW() 237 CALL_SUBTEST( test_complex<float>(2*3*4) ); CALL_SUBTEST( test_complex<double>(2*3*4) ); in test_FFTW() 238 CALL_SUBTEST( test_complex<float>(2*3*4*5) ); CALL_SUBTEST( test_complex<double>(2*3*4*5) ); in test_FFTW() 239 CALL_SUBTEST( test_complex<float>(2*3*4*5*7) ); CALL_SUBTEST( test_complex<double>(2*3*4*5*7) ); in test_FFTW() 241 CALL_SUBTEST( test_scalar<float>(32) ); CALL_SUBTEST( test_scalar<double>(32) ); in test_FFTW() 242 CALL_SUBTEST( test_scalar<float>(45) ); CALL_SUBTEST( test_scalar<double>(45) ); in test_FFTW() [all …]
|
D | cxx11_tensor_ifft.cpp | 135 CALL_SUBTEST(test_1D_fft_ifft_invariant<ColMajor>(4)); in test_cxx11_tensor_ifft() 136 CALL_SUBTEST(test_1D_fft_ifft_invariant<ColMajor>(16)); in test_cxx11_tensor_ifft() 137 CALL_SUBTEST(test_1D_fft_ifft_invariant<ColMajor>(32)); in test_cxx11_tensor_ifft() 138 CALL_SUBTEST(test_1D_fft_ifft_invariant<ColMajor>(1024*1024)); in test_cxx11_tensor_ifft() 140 CALL_SUBTEST(test_2D_fft_ifft_invariant<ColMajor>(4,4)); in test_cxx11_tensor_ifft() 141 CALL_SUBTEST(test_2D_fft_ifft_invariant<ColMajor>(8,16)); in test_cxx11_tensor_ifft() 142 CALL_SUBTEST(test_2D_fft_ifft_invariant<ColMajor>(16,32)); in test_cxx11_tensor_ifft() 143 CALL_SUBTEST(test_2D_fft_ifft_invariant<ColMajor>(1024,1024)); in test_cxx11_tensor_ifft() 145 CALL_SUBTEST(test_3D_fft_ifft_invariant<ColMajor>(4,4,4)); in test_cxx11_tensor_ifft() 146 CALL_SUBTEST(test_3D_fft_ifft_invariant<ColMajor>(8,16,32)); in test_cxx11_tensor_ifft() [all …]
|
D | cxx11_tensor_io.cpp | 124 CALL_SUBTEST(test_output_0d<ColMajor>()); in test_cxx11_tensor_io() 125 CALL_SUBTEST(test_output_0d<RowMajor>()); in test_cxx11_tensor_io() 126 CALL_SUBTEST(test_output_1d<ColMajor>()); in test_cxx11_tensor_io() 127 CALL_SUBTEST(test_output_1d<RowMajor>()); in test_cxx11_tensor_io() 128 CALL_SUBTEST(test_output_2d<ColMajor>()); in test_cxx11_tensor_io() 129 CALL_SUBTEST(test_output_2d<RowMajor>()); in test_cxx11_tensor_io() 130 CALL_SUBTEST(test_output_expr<ColMajor>()); in test_cxx11_tensor_io() 131 CALL_SUBTEST(test_output_expr<RowMajor>()); in test_cxx11_tensor_io() 132 CALL_SUBTEST(test_output_string<ColMajor>()); in test_cxx11_tensor_io() 133 CALL_SUBTEST(test_output_string<RowMajor>()); in test_cxx11_tensor_io() [all …]
|
D | kronecker_product.cpp | 113 CALL_SUBTEST(check_kronecker_product(DM_fix_ab)); in test_kronecker_product() 114 CALL_SUBTEST(check_kronecker_product(kroneckerProduct(DM_a.topLeftCorner<2,3>(),DM_b))); in test_kronecker_product() 123 CALL_SUBTEST(check_kronecker_product(DM_block_ab.block<6,6>(2,5))); in test_kronecker_product() 127 CALL_SUBTEST(check_kronecker_product(DM_ab)); in test_kronecker_product() 128 CALL_SUBTEST(check_kronecker_product(kroneckerProduct(DM_a,DM_b))); in test_kronecker_product() 132 CALL_SUBTEST(check_kronecker_product(SM_ab)); in test_kronecker_product() 134 CALL_SUBTEST(check_kronecker_product(SM_ab2)); in test_kronecker_product() 135 CALL_SUBTEST(check_kronecker_product(kroneckerProduct(SM_a,DM_b))); in test_kronecker_product() 141 CALL_SUBTEST(check_kronecker_product(SM_ab)); in test_kronecker_product() 145 CALL_SUBTEST(check_kronecker_product(SM_ab2)); in test_kronecker_product() [all …]
|
D | cxx11_tensor_argmax.cpp | 278 CALL_SUBTEST(test_simple_index_tuples<RowMajor>()); in test_cxx11_tensor_argmax() 279 CALL_SUBTEST(test_simple_index_tuples<ColMajor>()); in test_cxx11_tensor_argmax() 280 CALL_SUBTEST(test_index_tuples_dim<RowMajor>()); in test_cxx11_tensor_argmax() 281 CALL_SUBTEST(test_index_tuples_dim<ColMajor>()); in test_cxx11_tensor_argmax() 282 CALL_SUBTEST(test_argmax_tuple_reducer<RowMajor>()); in test_cxx11_tensor_argmax() 283 CALL_SUBTEST(test_argmax_tuple_reducer<ColMajor>()); in test_cxx11_tensor_argmax() 284 CALL_SUBTEST(test_argmin_tuple_reducer<RowMajor>()); in test_cxx11_tensor_argmax() 285 CALL_SUBTEST(test_argmin_tuple_reducer<ColMajor>()); in test_cxx11_tensor_argmax() 286 CALL_SUBTEST(test_simple_argmax<RowMajor>()); in test_cxx11_tensor_argmax() 287 CALL_SUBTEST(test_simple_argmax<ColMajor>()); in test_cxx11_tensor_argmax() [all …]
|
D | cxx11_tensor_scan.cpp | 102 CALL_SUBTEST((test_1d_scan<ColMajor, float, true>())); in test_cxx11_tensor_scan() 103 CALL_SUBTEST((test_1d_scan<ColMajor, float, false>())); in test_cxx11_tensor_scan() 104 CALL_SUBTEST((test_1d_scan<RowMajor, float, true>())); in test_cxx11_tensor_scan() 105 CALL_SUBTEST((test_1d_scan<RowMajor, float, false>())); in test_cxx11_tensor_scan() 106 CALL_SUBTEST(test_4d_scan<ColMajor>()); in test_cxx11_tensor_scan() 107 CALL_SUBTEST(test_4d_scan<RowMajor>()); in test_cxx11_tensor_scan() 108 CALL_SUBTEST(test_tensor_maps<ColMajor>()); in test_cxx11_tensor_scan() 109 CALL_SUBTEST(test_tensor_maps<RowMajor>()); in test_cxx11_tensor_scan()
|
D | cxx11_tensor_contraction.cpp | 515 CALL_SUBTEST(test_evals<ColMajor>()); in test_cxx11_tensor_contraction() 516 CALL_SUBTEST(test_evals<RowMajor>()); in test_cxx11_tensor_contraction() 517 CALL_SUBTEST(test_scalar<ColMajor>()); in test_cxx11_tensor_contraction() 518 CALL_SUBTEST(test_scalar<RowMajor>()); in test_cxx11_tensor_contraction() 519 CALL_SUBTEST(test_multidims<ColMajor>()); in test_cxx11_tensor_contraction() 520 CALL_SUBTEST(test_multidims<RowMajor>()); in test_cxx11_tensor_contraction() 521 CALL_SUBTEST(test_holes<ColMajor>()); in test_cxx11_tensor_contraction() 522 CALL_SUBTEST(test_holes<RowMajor>()); in test_cxx11_tensor_contraction() 523 CALL_SUBTEST(test_full_redux<ColMajor>()); in test_cxx11_tensor_contraction() 524 CALL_SUBTEST(test_full_redux<RowMajor>()); in test_cxx11_tensor_contraction() [all …]
|
D | special_functions.cpp | 142 CALL_SUBTEST( verify_component_wise(ref, ref); ); in array_special_functions() 143 CALL_SUBTEST( res = x.zeta(q); verify_component_wise(res, ref); ); in array_special_functions() 144 CALL_SUBTEST( res = zeta(x,q); verify_component_wise(res, ref); ); in array_special_functions() 152 CALL_SUBTEST( verify_component_wise(ref, ref); ); in array_special_functions() 154 CALL_SUBTEST( res = x.digamma(); verify_component_wise(res, ref); ); in array_special_functions() 155 CALL_SUBTEST( res = digamma(x); verify_component_wise(res, ref); ); in array_special_functions() 165 CALL_SUBTEST( verify_component_wise(ref, ref); ); in array_special_functions() 170 CALL_SUBTEST( res = polygamma(n,x); verify_component_wise(res, ref); ); in array_special_functions() 174 CALL_SUBTEST( res = polygamma(n,x); verify_component_wise(res.head(8), ref.head(8)); ); in array_special_functions() 280 CALL_SUBTEST(res = betainc(a, b, x); in array_special_functions() [all …]
|
D | minres.cpp | 27 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_lower_I) ); in test_minres_T() 28 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_upper_I) ); in test_minres_T() 30 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_lower_diag) ); in test_minres_T() 31 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_upper_diag) ); in test_minres_T() 32 CALL_SUBTEST( check_sparse_spd_solving(minres_colmajor_uplo_diag) ); in test_minres_T()
|
D | cxx11_tensor_generator.cpp | 85 CALL_SUBTEST(test_1D<ColMajor>()); in test_cxx11_tensor_generator() 86 CALL_SUBTEST(test_1D<RowMajor>()); in test_cxx11_tensor_generator() 87 CALL_SUBTEST(test_2D<ColMajor>()); in test_cxx11_tensor_generator() 88 CALL_SUBTEST(test_2D<RowMajor>()); in test_cxx11_tensor_generator() 89 CALL_SUBTEST(test_gaussian<ColMajor>()); in test_cxx11_tensor_generator() 90 CALL_SUBTEST(test_gaussian<RowMajor>()); in test_cxx11_tensor_generator()
|
D | cxx11_tensor_reduction.cpp | 488 CALL_SUBTEST(test_trivial_reductions<ColMajor>()); in test_cxx11_tensor_reduction() 489 CALL_SUBTEST(test_trivial_reductions<RowMajor>()); in test_cxx11_tensor_reduction() 490 CALL_SUBTEST(test_simple_reductions<ColMajor>()); in test_cxx11_tensor_reduction() 491 CALL_SUBTEST(test_simple_reductions<RowMajor>()); in test_cxx11_tensor_reduction() 492 CALL_SUBTEST(test_reductions_in_expr<ColMajor>()); in test_cxx11_tensor_reduction() 493 CALL_SUBTEST(test_reductions_in_expr<RowMajor>()); in test_cxx11_tensor_reduction() 494 CALL_SUBTEST(test_full_reductions<ColMajor>()); in test_cxx11_tensor_reduction() 495 CALL_SUBTEST(test_full_reductions<RowMajor>()); in test_cxx11_tensor_reduction() 496 CALL_SUBTEST(test_user_defined_reductions<ColMajor>()); in test_cxx11_tensor_reduction() 497 CALL_SUBTEST(test_user_defined_reductions<RowMajor>()); in test_cxx11_tensor_reduction() [all …]
|
D | BVH.cpp | 200 CALL_SUBTEST(test2.testIntersect1()); in test_BVH() 201 CALL_SUBTEST(test2.testMinimize1()); in test_BVH() 202 CALL_SUBTEST(test2.testIntersect2()); in test_BVH() 203 CALL_SUBTEST(test2.testMinimize2()); in test_BVH() 208 CALL_SUBTEST(test3.testIntersect1()); in test_BVH() 209 CALL_SUBTEST(test3.testMinimize1()); in test_BVH() 210 CALL_SUBTEST(test3.testIntersect2()); in test_BVH() 211 CALL_SUBTEST(test3.testMinimize2()); in test_BVH() 216 CALL_SUBTEST(test4.testIntersect1()); in test_BVH() 217 CALL_SUBTEST(test4.testMinimize1()); in test_BVH() [all …]
|
D | cxx11_tensor_convolution.cpp | 141 CALL_SUBTEST(test_evals<ColMajor>()); in test_cxx11_tensor_convolution() 142 CALL_SUBTEST(test_evals<RowMajor>()); in test_cxx11_tensor_convolution() 143 CALL_SUBTEST(test_expr<ColMajor>()); in test_cxx11_tensor_convolution() 144 CALL_SUBTEST(test_expr<RowMajor>()); in test_cxx11_tensor_convolution() 145 CALL_SUBTEST(test_modes<ColMajor>()); in test_cxx11_tensor_convolution() 146 CALL_SUBTEST(test_modes<RowMajor>()); in test_cxx11_tensor_convolution() 147 CALL_SUBTEST(test_strides<ColMajor>()); in test_cxx11_tensor_convolution() 148 CALL_SUBTEST(test_strides<RowMajor>()); in test_cxx11_tensor_convolution()
|
D | cxx11_tensor_concatenation.cpp | 128 CALL_SUBTEST(test_dimension_failures<ColMajor>()); in test_cxx11_tensor_concatenation() 129 CALL_SUBTEST(test_dimension_failures<RowMajor>()); in test_cxx11_tensor_concatenation() 130 CALL_SUBTEST(test_static_dimension_failure<ColMajor>()); in test_cxx11_tensor_concatenation() 131 CALL_SUBTEST(test_static_dimension_failure<RowMajor>()); in test_cxx11_tensor_concatenation() 132 CALL_SUBTEST(test_simple_concatenation<ColMajor>()); in test_cxx11_tensor_concatenation() 133 CALL_SUBTEST(test_simple_concatenation<RowMajor>()); in test_cxx11_tensor_concatenation() 135 CALL_SUBTEST(test_concatenation_as_lvalue()); in test_cxx11_tensor_concatenation()
|
D | cxx11_tensor_broadcasting.cpp | 186 CALL_SUBTEST(test_simple_broadcasting<ColMajor>()); in test_cxx11_tensor_broadcasting() 187 CALL_SUBTEST(test_simple_broadcasting<RowMajor>()); in test_cxx11_tensor_broadcasting() 188 CALL_SUBTEST(test_vectorized_broadcasting<ColMajor>()); in test_cxx11_tensor_broadcasting() 189 CALL_SUBTEST(test_vectorized_broadcasting<RowMajor>()); in test_cxx11_tensor_broadcasting() 190 CALL_SUBTEST(test_static_broadcasting<ColMajor>()); in test_cxx11_tensor_broadcasting() 191 CALL_SUBTEST(test_static_broadcasting<RowMajor>()); in test_cxx11_tensor_broadcasting() 192 CALL_SUBTEST(test_fixed_size_broadcasting<ColMajor>()); in test_cxx11_tensor_broadcasting() 193 CALL_SUBTEST(test_fixed_size_broadcasting<RowMajor>()); in test_cxx11_tensor_broadcasting()
|