Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for emitWarning (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (failed(PropagateShapeIntoAttachedFunctions(op, max_iterations))) {
            op->emitWarning() << "unable to refine shape of attached function "
                                 "arguments and bodies";
            return WalkResult::interrupt();
          }
    
          if (failed(PropagateShapeIntoAttachedRegions(op, max_iterations))) {
            op->emitWarning() << "unable to refine shape of attached region "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

                                                  target_opset_);
        patterns.add<QuantizeAvgPoolOpPattern>(ctx);
      }
      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
        func.emitWarning("Failed to converge pattern at QuantizePass.");
      }
    
      if (!shouldKeepUnusedQdqPattern()) {
        RewritePatternSet patterns_2(&getContext());
        patterns_2.add<RemoveUnusedQdqPattern>(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        const int arg_index = GetTensorIndex(
            tensors[input_pair.value()->tensor_index]->name, input_names);
        if (arg_index == -1) {
          func->emitWarning("Invalid signature tensors specified.");
          return;
        }
        func.setArgAttr(
            arg_index, kTfSavedModelIndexPathAttr,
            mlir::ArrayAttr::get(context, {mlir::StringAttr::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            return failure();
          }
          if (identifier_to_attr.count(
                  llvm::StringRef(std::string(key_and_value_pair[1]))) == 0) {
            float_func.emitWarning(absl::StrCat("Using the default value for the '",
                                                key_and_value_pair[0],
                                                "' attribute"));
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        // is static.
        // Note: We do not handle this situation as an error, this would be too
        // restrictive due to incompleteness of shape inference at this point.
        mlir::InFlightDiagnostic diag =
            mlir::emitWarning(op->getLoc(), "has static shape result");
        if (op->getContext()->shouldPrintOpOnDiagnostic()) {
          diag.attachNote(op->getLoc())
              .append("see current operation: ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top