Lines Matching refs:fromOperand
140 const Operand& fromOperand) { in copyOperandExtraParams() argument
141 if (fromOperand.type == OperandType::TENSOR_QUANT8_SYMM_PER_CHANNEL && in copyOperandExtraParams()
142 std::holds_alternative<Operand::SymmPerChannelQuantParams>(fromOperand.extraParams)) { in copyOperandExtraParams()
144 std::get<Operand::SymmPerChannelQuantParams>(fromOperand.extraParams); in copyOperandExtraParams()
151 } else if (isExtension(fromOperand.type) && in copyOperandExtraParams()
152 std::holds_alternative<Operand::ExtensionParams>(fromOperand.extraParams)) { in copyOperandExtraParams()
153 auto extensionData = std::get<Operand::ExtensionParams>(fromOperand.extraParams); in copyOperandExtraParams()
156 } else if (!std::holds_alternative<Operand::NoParams>(fromOperand.extraParams) || in copyOperandExtraParams()
157 fromOperand.type == OperandType::TENSOR_QUANT8_SYMM_PER_CHANNEL) { in copyOperandExtraParams()
158 LOG(ERROR) << "Type " << fromOperand.type in copyOperandExtraParams()
159 << " has an unexpected extraParams variant: " << fromOperand.extraParams.index(); in copyOperandExtraParams()