Home
last modified time | relevance | path

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

/frameworks/ml/nn/common/
DValidateHal.cpp874 NN_RET_CHECK_LT(role.ioIndex, inputIndexes.size()); in validateMemoryDesc()
877 const auto [it, success] = roles.emplace(preparedModel.get(), IOType::INPUT, role.ioIndex); in validateMemoryDesc()
879 operands.push_back(model->main.operands[inputIndexes[role.ioIndex]]); in validateMemoryDesc()
888 NN_RET_CHECK_LT(role.ioIndex, outputIndexes.size()); in validateMemoryDesc()
891 const auto [it, success] = roles.emplace(preparedModel.get(), IOType::OUTPUT, role.ioIndex); in validateMemoryDesc()
893 operands.push_back(model->main.operands[outputIndexes[role.ioIndex]]); in validateMemoryDesc()
/frameworks/ml/nn/runtime/test/fuzzing/
DRandomGraphGenerator.h66 int32_t ioIndex = -1; member
/frameworks/ml/nn/runtime/
DMemory.cpp393 BufferRole role = {.modelIndex = modelIndex, .ioIndex = ind, .frequency = freq}; in addRole()