Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cond_true (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // This lowering only works on ranked types.
        auto cond_type =
            mlir::dyn_cast<RankedTensorType>(op.getCondition().getType());
        auto then_type =
            mlir::dyn_cast<RankedTensorType>(op.getThenValue().getType());
        auto else_type =
            mlir::dyn_cast<RankedTensorType>(op.getElseValue().getType());
        if (!cond_type || !then_type || !else_type) {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top