Lines Matching refs:fromOperand
100 const Operand& fromOperand) { in copyOperandExtraParams() argument
101 if (fromOperand.type == OperandType::TENSOR_QUANT8_SYMM_PER_CHANNEL && in copyOperandExtraParams()
102 std::holds_alternative<Operand::SymmPerChannelQuantParams>(fromOperand.extraParams)) { in copyOperandExtraParams()
104 std::get<Operand::SymmPerChannelQuantParams>(fromOperand.extraParams); in copyOperandExtraParams()
111 } else if (isExtension(fromOperand.type) && in copyOperandExtraParams()
112 std::holds_alternative<Operand::ExtensionParams>(fromOperand.extraParams)) { in copyOperandExtraParams()
113 auto extensionData = std::get<Operand::ExtensionParams>(fromOperand.extraParams); in copyOperandExtraParams()
116 } else if (!std::holds_alternative<Operand::NoParams>(fromOperand.extraParams) || in copyOperandExtraParams()
117 fromOperand.type == OperandType::TENSOR_QUANT8_SYMM_PER_CHANNEL) { in copyOperandExtraParams()
118 LOG(ERROR) << "Type " << fromOperand.type in copyOperandExtraParams()
119 << " has an unexpected extraParams variant: " << fromOperand.extraParams.index(); in copyOperandExtraParams()