Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for emitError (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      auto callsite_loc3 = mlir::CallSiteLoc::get(loc_filtered2, loc3);
    
      // Test with filter on.
      StatusScopedDiagnosticHandler ssdh_filter(&context, false, true);
      emitError(callsite_loc) << "Error 1";
      emitError(callsite_loc2) << "Error 2";
      emitError(callsite_loc3) << "Error 3";
      Status s_filtered = ssdh_filter.ConsumeStatus();
      // Check for the files that should not be filtered.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/materialize_mlir_passthrough_op.cc

        if (!nested_module) {
          op->emitError() << "could not parse attached MLIR module";
          return;
        }
        func::FuncOp main =
            dyn_cast<func::FuncOp>(nested_module->lookupSymbol("main"));
        if (!main) {
          op->emitError() << "MLIR Opaque Op expects a main() entry point\n";
          return;
        }
        if (main.getNumArguments() != op->getNumOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_custom_call_to_composite.cc

        if (!backendConfig)
          return op->emitError(
              "custom_call has no 'composite.backend_config' attribute or the "
              "attribute is not a dictionary");
    
        auto name = mlir::dyn_cast<StringAttr>(backendConfig.get("name"));
        if (!name)
          return op->emitError(
              "backend_config has no 'name' key or the name value is not a string");
    
        auto attrs =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

      absl::flat_hash_set<Node*> control_ret_nodes;
      Status status = tensorflow::tf2xla::v2::ConvertMlirToGraph(
          module_in, confs, &graph, &flib_def, &control_ret_nodes);
      if (!status.ok()) {
        mlir::emitError(mlir::UnknownLoc::get(&ctx)) << status.message();
        return signalPassFailure();
      }
    
      // Run each of the passes that were selected.
      GraphConstructorOptions opts;
      opts.allow_internal_ops = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference_pass.cc

        absl::StatusOr<SmallVector<SmallVector<int64_t>>> parsed_shapes;
        if (!input_arg_shapes_.empty()) {
          parsed_shapes = ParseArgumentShapes(input_arg_shapes_);
          if (!parsed_shapes.ok()) {
            getOperation().emitError() << parsed_shapes.status().message();
            return signalPassFailure();
          }
          input_shapes_vec = SmallVector<ArrayRef<int64_t>>{parsed_shapes->begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/passes/rewrite_quantized_io.cc

              llvm::raw_string_ostream os{error_message};
              os << "The argument with type ";
              arg.getType().print(os);
              os << " should have one user, which should be tfr.cast.";
              func->emitError(error_message);
              return;
            }
          }
        }
    
        builder.setInsertionPoint(terminator);
        // Replace tfr.cast(tensor<quant_type>) -> output
        // with tfr.cast(tensor<storage_type>) -> output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

      // Apply patterns to reachable functions.
      for (Operation* op : reachable_functions) {
        assert(isa<func::FuncOp>(op));
        if (failed(applyPatternsAndFoldGreedily(op, patterns))) {
          return op->emitError() << kBadDecompositionMessage;
        }
      }
    
      // Apply patterns to device cluster ops.
      // Note: This module search for cluster ops is a bit wasteful as we could have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_types.h

                                MLIRContext* context, ArrayRef<StringAttr> attrs) {
        return Base::getChecked(emitError, context, attrs);
      }
    
      static Derived get(MLIRContext* context) { return get({}, context); }
    
      // TODO(fengliuai): fix the implementation
      static LogicalResult verify(function_ref<InFlightDiagnostic()> emitError,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass.cc

              absl::StrCat("Node `", op->getName().getStringRef().str(), "` ",
                           "is a launch op which should have been removed by "
                           "outside compilation");
    
          op->emitError() << launch_error;
          LOG(ERROR) << launch_error;
          return WalkResult::interrupt();
        }
    
        if (HasXlaOutsideCompilationMarker(*op)) {
          std::string outside_compilation_error = absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 19:52:08 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_partitioned_op_conversion.cc

      if (!(tensor_type && tensor_type.hasRank())) {
        return op->emitError()
               << "cannot convert op with unranked or non-tensor input type "
               << tensor_type << ".";
      }
    
      int rank = tensor_type.getRank();
      if (rank <= partition_dim) {
        return op->emitError() << "cannot partition " << first_operand_type
                               << " (rank = " << rank << ") along dimension "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top