Home | History | Annotate | Download | only in graph_transformations

Lines Matching refs:OpType

55   enum class OpType { BiasPlusOperand, BiasMinusOperand, OperandMinusBias };
57 const OpType optype = (add_or_sub_op->type == OperatorType::kAdd)
58 ? OpType::BiasPlusOperand
60 ? OpType::BiasMinusOperand
61 : OpType::OperandMinusBias;
66 if (optype == OpType::BiasPlusOperand) {
68 } else if (optype == OpType::BiasMinusOperand) {
70 } else if (optype == OpType::OperandMinusBias) {