Home
last modified time | relevance | path

Searched refs:GEMMConfigReshapedOnlyRHS (Results 1 – 9 of 9) sorted by relevance

/external/ComputeLibrary/src/runtime/CL/mlgo/
DMLGOHeuristics.h50 bool operator==(const GEMMConfigReshapedOnlyRHS &lhs, const GEMMConfigReshapedOnlyRHS &rhs);
89 …std::pair<bool, GEMMConfigReshapedOnlyRHS> query_gemm_config_reshaped_only_rhs(const Query &query)…
DMLGOHeuristics.cpp40 bool operator==(const GEMMConfigReshapedOnlyRHS &lhs, const GEMMConfigReshapedOnlyRHS &rhs) in operator ==()
94 std::pair<bool, GEMMConfigReshapedOnlyRHS> MLGOHeuristics::query_gemm_config_reshaped_only_rhs(cons… in query_gemm_config_reshaped_only_rhs()
97 const auto invalid = GEMMConfigReshapedOnlyRHS{}; in query_gemm_config_reshaped_only_rhs()
110 return _trees.at(index).query<GEMMConfigReshapedOnlyRHS>(shape_query); in query_gemm_config_reshaped_only_rhs()
DUtils.h40 std::ostream &operator<<(std::ostream &os, const GEMMConfigReshapedOnlyRHS &config);
47 std::string to_string(const GEMMConfigReshapedOnlyRHS &config);
DHeuristicTree.cpp240 template std::pair<bool, GEMMConfigReshapedOnlyRHS> HeuristicTree::query<GEMMConfigReshapedOnlyRHS>…
249 template bool HeuristicTree::add_leaf(NodeID id, GEMMConfigReshapedOnlyRHS val);
DUtils.cpp51 std::ostream &operator<<(std::ostream &os, const GEMMConfigReshapedOnlyRHS &config) in operator <<()
161 std::string to_string(const GEMMConfigReshapedOnlyRHS &config) in to_string()
DCommon.h54 struct GEMMConfigReshapedOnlyRHS struct
DMLGOParser.cpp599 GEMMConfigReshapedOnlyRHS gemm_config_reshaped_only_rhs(TokenStream &in, bool &valid) in gemm_config_reshaped_only_rhs()
601 const auto invalid_val = GEMMConfigReshapedOnlyRHS{}; in gemm_config_reshaped_only_rhs()
611 return GEMMConfigReshapedOnlyRHS{ m0, n0, k0, h0, ir, tr, ex }; in gemm_config_reshaped_only_rhs()
/external/ComputeLibrary/tests/validation/CL/UNIT/
DMLGOHeuristics.cpp92 …rhs(Query{ "g71", DataType::F16, 100, 1024, 20, 32 }).second == GEMMConfigReshapedOnlyRHS{ 4, 4, 4… in TEST_SUITE()
94 …rhs(Query{ "g71", DataType::F16, 100, 1024, 20, 32 }).second == GEMMConfigReshapedOnlyRHS{ 4, 4, 4… in TEST_SUITE()
96 …y_rhs(Query{ "g71", DataType::F16, 128, 101, 20, 1 }).second == GEMMConfigReshapedOnlyRHS{ 2, 2, 4… in TEST_SUITE()
98 …_rhs(Query{ "g71", DataType::F16, 400, 100, 512, 1 }).second == GEMMConfigReshapedOnlyRHS{ 5, 4, 4… in TEST_SUITE()
100 …_rhs(Query{ "g71", DataType::F16, 400, 100, 512, 1 }).second == GEMMConfigReshapedOnlyRHS{ 5, 4, 4… in TEST_SUITE()
/external/ComputeLibrary/src/runtime/CL/gemm_auto_heuristics/
DCLGEMMAutoHeuristics.cpp101 mlgo::GEMMConfigReshapedOnlyRHS config{}; in select_mlgo_gemm_config_reshaped_only_rhs()