Lines Matching refs:mOperand
351 if (mOperand.has_value()) { in addRole()
352 if (operand.type != mOperand->type || operand.scale != mOperand->scale || in addRole()
353 operand.zeroPoint != mOperand->zeroPoint || in addRole()
354 operand.extraParams != mOperand->extraParams) { in addRole()
385 mOperand = std::move(operand); in addRole()
392 if (mOperand.has_value() && !TypeManager::get()->isTensorType(mOperand->type) && in setDimensions()
444 CHECK(mOperand.has_value()); in finish()
446 logMemoryDescriptorToInfo(mDesc, mOperand.value()); in finish()
466 const uint32_t size = TypeManager::get()->getSizeOfData(mOperand->type, mDesc.dimensions); in finish()
480 CHECK(mOperand.has_value()); in allocate()
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()