Lines Matching refs:mDesc
360 if (!TypeManager::get()->isTensorType(operand.type) && !mDesc.dimensions.empty()) { in addRole()
364 auto combined = combineDimensions(mDesc.dimensions, operand.dimensions); in addRole()
377 uint32_t modelIndex = mDesc.preparedModels.add(preparedModel); in addRole()
380 mDesc.inputRoles.push_back(role); in addRole()
382 mDesc.outputRoles.push_back(role); in addRole()
386 mDesc.dimensions = std::move(combined.value()); in addRole()
398 auto combined = combineDimensions(mDesc.dimensions, dimensions); in setDimensions()
403 mDesc.dimensions = std::move(combined.value()); in setDimensions()
446 logMemoryDescriptorToInfo(mDesc, mOperand.value()); in finish()
448 std::set<const Device*> devices = getDevices(mDesc); in finish()
466 const uint32_t size = TypeManager::get()->getSizeOfData(mOperand->type, mDesc.dimensions); in finish()
484 std::tie(n, memory) = mAllocator->allocate(mDesc, mOperand->type); in allocate()
489 const uint32_t size = TypeManager::get()->getSizeOfData(mOperand->type, mDesc.dimensions); in allocate()
502 std::make_unique<DeviceMemoryValidator>(mRoles, mOperand.value(), mDesc.dimensions); in allocate()