Lines Matching refs:inputs
261 static bool verifyOperationInputs(const std::vector<hexagon_nn_input>& inputs) { in verifyOperationInputs() argument
262 for (const hexagon_nn_input& input : inputs) { in verifyOperationInputs()
280 const std::vector<hexagon_nn_input>& inputs, in addOperationInternal() argument
282 HEXAGON_SOFT_ASSERT(verifyOperationInputs(inputs), in addOperationInternal()
287 return hexagon::Controller::getInstance().append_node(mGraphId, node, op, pad, inputs.data(), in addOperationInternal()
288 inputs.size(), outputs.data(), in addOperationInternal()
323 const std::vector<hexagon_nn_input>& inputs, in addBasicOperation() argument
326 uint32_t node = addOperationInternal(op, pad, inputs, outs); in addBasicOperation()
354 const std::vector<hexagon_nn_input>& inputs, in addFloatOperationWithActivation() argument
359 uint32_t node = addOperationInternal(op, pad, inputs, outs); in addFloatOperationWithActivation()
372 const std::vector<hexagon_nn_input>& inputs, in addQuant8OperationWithActivation() argument
377 uint32_t node = addOperationInternal(op, pad, inputs, outs); in addQuant8OperationWithActivation()
392 const std::vector<hexagon_nn_input>& inputs, in addFusedFloatOperation() argument
399 node = addOperationInternal(op, pad, inputs, outs); in addFusedFloatOperation()
420 const std::vector<hexagon_nn_input>& inputs, in addFusedQuant8Operation() argument
438 node = addOperationInternal(op, pad, inputs, out32); in addFusedQuant8Operation()
518 OperandType operandType = mOperands[operation.inputs[0]].type; in addOperations()
525 getOperationPrepareTable()[opTuple](operation.inputs, operation.outputs, this); in addOperations()
588 OperandType operandType = mOperands[operation.inputs[0]].type; in supportedOperations()
594 supported[i] = entry->second(operation.inputs, operation.outputs, this); in supportedOperations()
666 std::vector<hexagon_nn_tensordef> inputs; in execute() local
667 for (size_t i = 0; i < request.inputs.size(); ++i) { in execute()
669 OperandInfo newInfo = getUpdatedOperand(request.inputs[i], pools, oldInfo); in execute()
670 inputs.push_back(convertToTensordef(newInfo)); in execute()
682 int err = hexagon::Controller::getInstance().execute_new(mGraphId, inputs.data(), inputs.size(), in execute()