Searched refs:Ctx (Results 1 – 15 of 15) sorted by relevance
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/ |
A D | ctx.cc | 37 Path Ctx::last_used_path() const { return impl().last_used_path_; } in last_used_path() 39 void Ctx::set_explicit_tuning(Tuning value) { in set_explicit_tuning() 45 void Ctx::set_max_num_threads(int value) { in set_max_num_threads() 48 void Ctx::clear_performance_advisories() { in clear_performance_advisories() 60 void Ctx::SetRuntimeEnabledPaths(Path paths) { in SetRuntimeEnabledPaths() 143 Path Ctx::GetRuntimeEnabledPaths() { in GetRuntimeEnabledPaths() 168 Path Ctx::SelectPath(Path compiled_paths) { in SelectPath() 173 void Ctx::EnsureThreadSpecificResources(int thread_count) { in EnsureThreadSpecificResources() 193 Allocator* Ctx::GetMainAllocator() { in GetMainAllocator() 200 PrepackedCache* Ctx::GetPrepackedCache() { in GetPrepackedCache() [all …]
|
A D | context.h | 25 class Ctx; variable 96 const Ctx& ctx() const; 97 Ctx* mutable_ctx(); 99 friend const Ctx* get_ctx(const Context*); 100 friend Ctx* get_ctx(Context*);
|
A D | context_get_ctx.cc | 22 const Ctx* get_ctx(const Context* context) { in get_ctx() 23 return static_cast<const Ctx*>(context->impl_); in get_ctx() 25 Ctx* get_ctx(Context* context) { return static_cast<Ctx*>(context->impl_); } in get_ctx()
|
A D | context.cc | 31 const Ctx& Context::ctx() const { return static_cast<const Ctx&>(*impl_); } in ctx() 32 Ctx* Context::mutable_ctx() { return static_cast<Ctx*>(impl_); } in mutable_ctx()
|
A D | context_get_ctx.h | 27 const Ctx* get_ctx(const Context* context); 28 Ctx* get_ctx(Context*);
|
A D | frontend.h | 50 const MulParams<AccumScalar, DstScalar>& mul_params, Ctx* ctx, in MulFrontEndUpToCreateTrMulParams() 76 void MulFrontEndFromTrMulParams(Ctx* ctx, TrMulParams* params); 83 const MulParams<AccumScalar, DstScalar>& mul_params, Ctx* ctx, in MulFrontEnd()
|
A D | ctx_impl.h | 56 class CtxImpl final : public Ctx { 58 friend class Ctx;
|
A D | prepare_packed_matrices.h | 38 void PreparePackedMatrices(Ctx* ctx, TrMulParams* params);
|
A D | trmul.h | 35 void TrMul(Ctx* ctx, TrMulParams* params);
|
A D | frontend.cc | 25 void MulFrontEndFromTrMulParams(Ctx* ctx, TrMulParams* params) { in MulFrontEndFromTrMulParams()
|
A D | ctx.h | 43 class Ctx /* not final, subclassed by CtxImpl */ {
|
A D | create_trmul_params.h | 352 const TrMulParams& params, Ctx* ctx, 387 ChannelDimension channel_dimension, Ctx* ctx, 409 ChannelDimension channel_dimension, Ctx* ctx, TrMulParams* params) { 468 Ctx* ctx, TrMulParams* params) {
|
A D | prepare_packed_matrices.cc | 69 void PreparePackedMatrices(Ctx* ctx, TrMulParams* params) { in PreparePackedMatrices()
|
A D | trmul.cc | 250 int GetTentativeThreadCount(Ctx* ctx, int rows, int cols, int depth) { in GetTentativeThreadCount() 291 void TrMul(Ctx* ctx, TrMulParams* params) { in TrMul()
|
A D | prepacked_cache_test.cc | 231 ruy::Ctx* ctx = get_ctx(&context); in TestCachePolicies()
|
Completed in 14 milliseconds