Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (!(((*root.getODSResults(1).begin()).use_empty()))) {
          return rewriter.notifyMatchFailure(
              fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
                diag << "entities '' failed to satisfy constraint: has no use";
              });
        }
    
        if (!(((*root.getODSResults(2).begin()).use_empty()))) {
          return rewriter.notifyMatchFailure(
              fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

              "integer or 16-bit/32-bit/64-bit float type during TF Lite "
              "transformation pass";
          return allow_tensorlist_pass_through_
                     ? rewriter.notifyMatchFailure(op, error_info)
                     : op.emitOpError(error_info);
        }
    
        Value element_shape = adaptor.getOperands()[0];
        Type shape_dtype = getElementTypeOrSelf(element_shape.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto tf_roll_op = cast<RollOp>(op);
    
        auto input_ty =
            mlir::dyn_cast<RankedTensorType>(tf_roll_op.getInput().getType());
        if (!input_ty || !input_ty.hasStaticShape()) {
          return rewriter.notifyMatchFailure(
              op, "require the type of input to have static shapes");
        }
    
        DenseIntElementsAttr shift_attr;
        Value shift = tf_roll_op.getShift();
        auto shift_ranked_attr_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top