Home
last modified time | relevance | path

Searched refs:OpHandlerContext (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/c/experimental/op_handler/
Dinternal.cc30 OpHandlerContext::OpHandlerContext(AbstractContext* parent_ctx) in OpHandlerContext() function in tensorflow::OpHandlerContext
32 OpHandlerContext::~OpHandlerContext() {} in ~OpHandlerContext()
33 void OpHandlerContext::Release() { delete this; } in Release()
34 Status OpHandlerContext::RegisterFunction(AbstractFunction* function) { in RegisterFunction()
38 Status OpHandlerContext::RemoveFunction(const string& function) { in RemoveFunction()
42 void OpHandlerContext::set_default_handler(OpHandler* handler) { in set_default_handler()
47 OpHandlerOperation* OpHandlerContext::CreateOperation() { in CreateOperation()
Dinternal.h87 class OpHandlerContext : public AbstractContext {
89 explicit OpHandlerContext(AbstractContext*);
98 ~OpHandlerContext() override;
Dinternal_test.cc63 OpHandlerContext ctx(unwrap(c_ctx.get())); in TEST()