Lines Matching refs:OperationExecutionContext
49 class OperationExecutionContext : public IOperationExecutionContext { class
50 DISALLOW_IMPLICIT_CONSTRUCTORS(OperationExecutionContext);
53 OperationExecutionContext(const Operation* operation, RunTimeOperandInfo* operands) in OperationExecutionContext() function in android::nn::__anonec8350e20111::OperationExecutionContext
91 const RunTimeOperandInfo* OperationExecutionContext::getInputInfo(uint32_t index) const { in getInputInfo()
96 const RunTimeOperandInfo* OperationExecutionContext::getOutputInfo(uint32_t index) const { in getOutputInfo()
101 RunTimeOperandInfo* OperationExecutionContext::getOutputInfo(uint32_t index) { in getOutputInfo()
106 OperandType OperationExecutionContext::getInputType(uint32_t index) const { in getInputType()
110 Shape OperationExecutionContext::getInputShape(uint32_t index) const { in getInputShape()
114 const void* OperationExecutionContext::getInputBuffer(uint32_t index) const { in getInputBuffer()
118 const OperandExtraParams OperationExecutionContext::getInputExtraParams(uint32_t index) const { in getInputExtraParams()
122 OperandType OperationExecutionContext::getOutputType(uint32_t index) const { in getOutputType()
126 Shape OperationExecutionContext::getOutputShape(uint32_t index) const { in getOutputShape()
130 void* OperationExecutionContext::getOutputBuffer(uint32_t index) { in getOutputBuffer()
134 uint32_t OperationExecutionContext::getNumInputs() const { in getNumInputs()
138 uint32_t OperationExecutionContext::getNumOutputs() const { in getNumOutputs()
142 int OperationExecutionContext::getResultCode() const { in getResultCode()
228 bool OperationExecutionContext::setOutputShape(uint32_t index, const Shape& shape) { in setOutputShape()
232 bool OperationExecutionContext::isOmittedInput(uint32_t index) const { in isOmittedInput()
236 bool OperationExecutionContext::isOmittedOutput(uint32_t index) const { in isOmittedOutput()
240 bool OperationExecutionContext::checkNoOmittedOperand() const { in checkNoOmittedOperand()
252 bool OperationExecutionContext::checkNoZeroSizedInput() const { in checkNoZeroSizedInput()
1712 OperationExecutionContext context(&operation, operands); in executeOperation()