Lines Matching refs:OperationExecutionContext

65 class OperationExecutionContext : public IOperationExecutionContext {  class
66 DISALLOW_IMPLICIT_CONSTRUCTORS(OperationExecutionContext);
69 OperationExecutionContext(const Operation* operation, RunTimeOperandInfo* operands) in OperationExecutionContext() function in android::nn::__anonfe513d680111::OperationExecutionContext
107 const RunTimeOperandInfo* OperationExecutionContext::getInputInfo(uint32_t index) const { in getInputInfo()
112 const RunTimeOperandInfo* OperationExecutionContext::getOutputInfo(uint32_t index) const { in getOutputInfo()
117 RunTimeOperandInfo* OperationExecutionContext::getOutputInfo(uint32_t index) { in getOutputInfo()
122 OperandType OperationExecutionContext::getInputType(uint32_t index) const { in getInputType()
126 Shape OperationExecutionContext::getInputShape(uint32_t index) const { in getInputShape()
130 const void* OperationExecutionContext::getInputBuffer(uint32_t index) const { in getInputBuffer()
134 const Operand::ExtraParams& OperationExecutionContext::getInputExtraParams(uint32_t index) const { in getInputExtraParams()
138 OperandType OperationExecutionContext::getOutputType(uint32_t index) const { in getOutputType()
142 Shape OperationExecutionContext::getOutputShape(uint32_t index) const { in getOutputShape()
146 void* OperationExecutionContext::getOutputBuffer(uint32_t index) { in getOutputBuffer()
150 uint32_t OperationExecutionContext::getNumInputs() const { in getNumInputs()
154 uint32_t OperationExecutionContext::getNumOutputs() const { in getNumOutputs()
158 int OperationExecutionContext::getResultCode() const { in getResultCode()
244 bool OperationExecutionContext::setOutputShape(uint32_t index, const Shape& shape) { in setOutputShape()
248 bool OperationExecutionContext::isOmittedInput(uint32_t index) const { in isOmittedInput()
252 bool OperationExecutionContext::isOmittedOutput(uint32_t index) const { in isOmittedOutput()
256 bool OperationExecutionContext::checkNoOmittedOperand() const { in checkNoOmittedOperand()
268 bool OperationExecutionContext::checkNoZeroSizedInput() const { in checkNoZeroSizedInput()
1657 OperationExecutionContext context(&operation, operands); in executeOperation()