Home
last modified time | relevance | path

Searched refs:gemmlowp_matrix_multiply_core (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/ComputeLibrary/tests/validation/fixtures/
H A DGEMMLowpFixture.h221 …reference::gemmlowp_matrix_multiply_core<int32_t, TI, TW>((pretranspose_A ? a_transposed : a), (pr…
226 …return reference::gemmlowp_matrix_multiply_core<int32_t, TI, TW>((pretranspose_A ? a_transposed : …
1063 … return reference::gemmlowp_matrix_multiply_core<int32_t, uint8_t>(lhs, rhs, dst_shape, 0, 0); in compute_reference()
1075 … return reference::gemmlowp_matrix_multiply_core<int32_t, int8_t>(lhs, rhs, dst_shape, 0, 0); in compute_reference()
1220 … return reference::gemmlowp_matrix_multiply_core<int32_t, uint8_t>(lhs, rhs, dst_shape, 0, 0); in compute_reference()
1232 … return reference::gemmlowp_matrix_multiply_core<int32_t, int8_t>(lhs, rhs, dst_shape, 0, 0); in compute_reference()
1366 … return reference::gemmlowp_matrix_multiply_core<int32_t, uint8_t>(lhs, rhs, dst_shape, 0, 0); in compute_reference()
1378 … return reference::gemmlowp_matrix_multiply_core<int32_t, int8_t>(lhs, rhs, dst_shape, 0, 0); in compute_reference()
1583 …dst = reference::gemmlowp_matrix_multiply_core<int32_t, T>(lhs, rhs, dst_shape, a_offset, b_… in compute_reference()
1728 … return reference::gemmlowp_matrix_multiply_core<int32_t, uint8_t>(lhs, rhs, dst_shape, 0, 0); in compute_reference()
[all …]
/aosp_15_r20/external/ComputeLibrary/tests/validation/reference/
H A DGEMMLowp.cpp181 SimpleTensor<T_out> gemmlowp_matrix_multiply_core(const SimpleTensor<T_in> &a, const SimpleTensor<T… in gemmlowp_matrix_multiply_core() function
237 return gemmlowp_matrix_multiply_core<T1, T2, T3>(a, b, shape_c, 0, 0); in gemmlowp()
337 template SimpleTensor<int32_t> gemmlowp_matrix_multiply_core(const SimpleTensor<int8_t> &a, const S…
338 template SimpleTensor<int32_t> gemmlowp_matrix_multiply_core(const SimpleTensor<uint8_t> &a, const …
H A DGEMMLowp.h39 SimpleTensor<T1> gemmlowp_matrix_multiply_core(const SimpleTensor<T2> &a, const SimpleTensor<T3> &b…
/aosp_15_r20/external/ComputeLibrary/tests/validate_examples/
H A Dcl_gemm.cpp301 …SimpleTensor<int32_t> ref_tmp_dst = reference::gemmlowp_matrix_multiply_core<int32_t, uint8_t>(ref… in do_validate()