Interchange false/true operands of tf_executor.Switch MLIR op to match TF

PiperOrigin-RevId: 266171419
This commit is contained in:
Jacques Pienaar 2019-08-29 10:26:44 -07:00 committed by TensorFlower Gardener
parent 11c7902a6e
commit b2c7258633

View File

@ -272,8 +272,8 @@ def TfExecutor_SwitchOp : TfExecutor_Op<"Switch",
);
let results = (outs
AnyType: $trueOutput,
AnyType: $falseOutput,
AnyType: $trueOutput,
TfeControlType: $control
);