Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for enableVerifier (0.66 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_composite_functions.cc

      PassManager pm(&ctx);
      // Intermediate output from QuantizePass will have quantized ops
      // (XlaCallModuleOps) with quantized input and output types, which are not
      // allowed in the TF dialect.
      pm.enableVerifier(false);
    
      PrepareQuantizePassOptions options;
      options.enable_per_channel_quantized_weight_ =
          enable_per_channel_quantized_weight_;
      // Change this to user-given bit width once we have custom configuration.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

        ModuleOp module, llvm::StringRef module_name) {
      PassManager tf_to_executor(module.getContext());
      ::tensorflow::applyTensorflowAndCLOptions(tf_to_executor);
      tf_to_executor.enableVerifier();
      AddTfDialectToExecutorPasses(tf_to_executor);
    
      if (VLOG_IS_ON(1) ||
          DEBUG_DATA_DUMPER()->ShouldDump(module_name.str(), kDebugGroupMain)) {
        ::tensorflow::DumpMlirOpToFile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      // quantized input and output types, which are not allowed in TF dialect.
      // This can be removed when the composite call supports quantized types.
      pm.enableVerifier(false);
    
      QuantizationSpecs quant_specs;
      quant_specs.inference_type = tensorflow::DT_QINT8;
      quant_specs.disable_per_channel = !enable_per_channel_quantization_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top