Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for notifyMatchFailure (0.2 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        return rewriter.notifyMatchFailure(conv_op, "requires static shape");
      mhlo::ConvDimensionNumbersAttr dnums = conv_op.getDimensionNumbers();
    
      auto lhs_dilation = conv_op.getLhsDilation().value();
      if (lhs_dilation.isSplat() && lhs_dilation.getSplatValue<int64_t>() == 1)
        return rewriter.notifyMatchFailure(conv_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          return rewriter.notifyMatchFailure(
              loc, "No Reshape->BroadcastTo->Reshape pattern found");
        }
    
        // Pattern is applied only if the broadcast_to shape has more than 5
        // dimensions.
        if (mlir::cast<ShapedType>(tfl_broadcast_to_op.getShape().getType())
                .getNumElements() < 6) {
          return rewriter.notifyMatchFailure(loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // to be compatible.
    template <typename Ty>
    static LogicalResult flipComatibleShapeError(Ty op, PatternRewriter& rewriter) {
      if (op.getIncompatibleShapeError()) {
        return rewriter.notifyMatchFailure(op, "the attribute is already true");
      }
    
      // incompatible_shape_error=false implies that the op will either return a
      // valid result or a scalar boolean indicating the error. For unranked outputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top