Lines Matching refs:mDesc
375 if (!TypeManager::get()->isTensorType(operand.type) && !mDesc.dimensions.empty()) { in addRole()
379 auto combined = combineDimensions(mDesc.dimensions, operand.dimensions); in addRole()
392 uint32_t modelIndex = mDesc.preparedModels.add(preparedModel); in addRole()
395 mDesc.inputRoles.push_back(role); in addRole()
397 mDesc.outputRoles.push_back(role); in addRole()
401 mDesc.dimensions = std::move(combined.value()); in addRole()
413 auto combined = combineDimensions(mDesc.dimensions, dimensions); in setDimensions()
418 mDesc.dimensions = std::move(combined.value()); in setDimensions()
461 logMemoryDescriptorToInfo(mDesc, mOperand.value()); in finish()
463 std::set<const Device*> devices = getDevices(mDesc); in finish()
481 const uint32_t size = TypeManager::get()->getSizeOfData(mOperand->type, mDesc.dimensions); in finish()
499 std::tie(n, memory) = mAllocator->allocate(mDesc, mOperand->type); in allocate()
504 const uint32_t size = TypeManager::get()->getSizeOfData(mOperand->type, mDesc.dimensions); in allocate()
517 std::make_unique<DeviceMemoryValidator>(mRoles, mOperand.value(), mDesc.dimensions); in allocate()