Searched refs:Context (Results 1 – 14 of 14) sorted by relevance
28 Context::Context() : impl_(new CtxImpl) {} in Context() function in ruy::Context29 Context::~Context() { delete impl_; } in ~Context()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()34 Path Context::last_used_path() const { return ctx().last_used_path(); } in last_used_path()36 void Context::set_explicit_tuning(Tuning value) { in set_explicit_tuning()40 ThreadPool* Context::mutable_thread_pool() { in mutable_thread_pool()43 int Context::max_num_threads() const { return ctx().max_num_threads(); } in max_num_threads()44 void Context::set_max_num_threads(int value) { in set_max_num_threads()50 bool Context::performance_advisory(PerformanceAdvisory advisory) const { in performance_advisory()[all …]
37 class Context final {39 Context();40 ~Context();99 friend const Ctx* get_ctx(const Context*);100 friend Ctx* get_ctx(Context*);103 Context(const Context&) = delete;
27 const Ctx* get_ctx(const Context* context);28 Ctx* get_ctx(Context*);
22 const Ctx* get_ctx(const Context* context) { in get_ctx()25 Ctx* get_ctx(Context* context) { return static_cast<Ctx*>(context->impl_); } in get_ctx()
39 const MulParams<AccumScalar, DstScalar>& mul_params, Context* context, in Mul()99 const MulParams<AccumScalar, DstScalar>& mul_params, Context* context, in Mul()
27 Context context; in TEST()
68 ruy::Context context; in TestPerChannelBuffersReallocation()
230 ruy::Context context; in TestCachePolicies()272 ruy::Context context; in TEST()
682 inline Context& GlobalContext() {688 static Context context;1845 Context context;
21 void ExampleMulFloat(ruy::Context *context) { in ExampleMulFloat()45 void ExampleMulFloatWithBiasAddAndClamp(ruy::Context *context) { in ExampleMulFloatWithBiasAddAndClamp()73 void ExampleMulUint8AsymmetricQuantized(ruy::Context *context) { in ExampleMulUint8AsymmetricQuantized()102 void ExampleMulInt8PerChannelQuantized(ruy::Context *context) { in ExampleMulInt8PerChannelQuantized()129 void ExampleMulInt8GetRawAccumulators(ruy::Context *context) { in ExampleMulInt8GetRawAccumulators()155 ruy::Context context; in main()
121 ruy::Context context; in run()
40 ruy::Context* ruy_context() const { return ruy_context_.get(); } in ruy_context()97 const std::unique_ptr<ruy::Context> ruy_context_;
104 uint8_t Context[RTK_CONTEXT_SIZE]; member
99 # Possible values are: None, LTR, RTL and Context.
Completed in 32 milliseconds