Lines Matching refs:hidlModel
190 const Model& hidlModel = metaModel.getModel(); in getSupportedOperations() local
191 const uint32_t operationCount = hidlModel.main.operations.size(); in getSupportedOperations()
216 const Operation& operation = hidlModel.main.operations[operationIndex]; in getSupportedOperations()
218 auto accumulateOperands = [&hidlModel, &accumulator](const hidl_vec<uint32_t>& operands) { in getSupportedOperations()
220 const Operand& operand = hidlModel.main.operands[operandIndex]; in getSupportedOperations()
601 static std::pair<int, std::shared_ptr<PreparedModel>> create(Model hidlModel);
637 const Model& hidlModel = metaModel.getModel(); in getSupportedOperations() local
638 const size_t count = hidlModel.main.operations.size(); in getSupportedOperations()
644 OperationType operationType = hidlModel.main.operations[i].type; in getSupportedOperations()
680 std::pair<int, std::shared_ptr<PreparedModel>> CpuPreparedModel::create(Model hidlModel) { in create() argument
682 if (!setRunTimePoolInfosFromHidlMemories(&poolInfos, hidlModel.pools)) { in create()
687 std::make_shared<CpuPreparedModel>(std::move(hidlModel), std::move(poolInfos)); in create()