Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for emitWarning (2.39 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

        auto qd_arg_def_q_op =
            dyn_cast_or_null<quantfork::QuantizeCastOp>(dq_arg.getDefiningOp());
        if (!qd_arg_def_q_op) {
          return;
        }
    
        qd_arg_def_q_op.emitWarning()
            << " quantizer's output has another quantizer (" << q_op.getLoc()
            << ") as consumer - intentional?";
      });
    }
    
    // Merges consecutive QuantizeCast ops. For example, the following case:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

            if (mlir::dyn_cast<DenseFPElementsAttr>(attr).size() >=
                quant_specs_.minimum_elements_for_weights) {
              continue;
            }
    
            visited_nonquantizable_ops_->insert(op);
            op->emitWarning(
                "Skipped quantization for UnidirectionalSequenceLSTMOp. Partial "
                "quantization of inputs for UnidirectionalSequenceLSTMOp is not "
                "supported. The operand ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

            // and once existing cases have been fixed.
            mlir::InFlightDiagnostic error =
                strict_clusters ? mlir::emitError(op.getLoc(), "")
                                : mlir::emitWarning(op.getLoc(), "");
            error << "Op has cyclic dependency with a compilation cluster:\n";
            error << "The cluster depends on\n";
            error << op.getName() << "\n"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  4. 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)
Back to top