Home
last modified time | relevance | path

Searched refs:opIndex (Results 1 – 4 of 4) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/fuzzing/
DRandomGraphGenerator.cpp256 operand->opIndex = testModel.main.operands.size(); in createTestModel()
288 testModel.main.inputIndexes.push_back(operand->opIndex); in createTestModel()
290 testModel.main.outputIndexes.push_back(operand->opIndex); in createTestModel()
301 testOperation.inputs.push_back(op->opIndex); in createTestModel()
305 testOperation.outputs.push_back(op->opIndex); in createTestModel()
DRandomGraphGenerator.h64 int32_t opIndex = -1; member
/packages/modules/NeuralNetworks/runtime/test/
DTestUnspecifiedDimensions.cpp272 Result setInOut(Execution* execution, uint32_t index, uint32_t opIndex, in setInOut() argument
283 return execution->setInputFromMemory(opIndex, memory->getMemory(), 0, size, t); in setInOut()
285 return execution->setOutputFromMemory(opIndex, memory->getMemory(), 0, size, t); in setInOut()
289 return execution->setInput(opIndex, buffer, size, t); in setInOut()
291 return execution->setOutput(opIndex, buffer, size, t); in setInOut()
/packages/modules/NeuralNetworks/runtime/
DModelBuilder.cpp833 int opIndex = opsReadyToRun.back(); in sortIntoRunOrder() local
835 const Operation& operation = mOperations[opIndex]; in sortIntoRunOrder()
837 runOrder.push_back(mOperations[opIndex]); in sortIntoRunOrder()
838 sortedOperationIndexMap.push_back(opIndex); in sortIntoRunOrder()