Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for notifyMatchFailure (0.51 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (!input_type) {
          return rewriter.notifyMatchFailure(op, "requires ranked input shape");
        }
        llvm::SmallVector<int64_t, 4> broadcast_dimensions;
        if (input_type.getRank() > 0) {
          auto ranked_output_type = mlir::dyn_cast<RankedTensorType>(output_type);
          if (!ranked_output_type) {
            return rewriter.notifyMatchFailure(op, "requires ranked output shape");
          }
    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