Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DumpTensorOp (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/debugger.cc

    namespace stablehlo::quantization {
    
    void DisableDebugging(mlir::ModuleOp module_op) {
      module_op.walk(
          [](mlir::TF::DumpTensorOp dump_op) { dump_op.setEnabled(false); });
    }
    
    void ChangeToQuantizedFilename(mlir::ModuleOp module_op) {
      module_op.walk([](mlir::TF::DumpTensorOp dump_op) {
        dump_op.setFileName("quantized_tensor_data.pb");
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 00:17:12 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      repeated QuantizationSpec specs = 1;
    }
    
    // Configuration for quantization debugger.
    // The debugging model assumes it should be run on CPU based server, since the
    // model contains TF::DumpTensorOp.
    // NEXT ID: 4
    message DebuggerConfig {
      // Type of quantization debugger. Depending on the type, inputs and outputs
      // are wired differently.
      // NEXT ID: 4
      enum DebuggerType {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          meta_graph = saved_model_loader.load(sess, tags, export_dir=model_dir)
          signature_def = meta_graph.signature_def[signature_key]
    
          # DumpTensorOp only works in graph mode.
          # Execute the model using session to run DumpTensorOp.
          output_tensor_names = [
              output_tensor_info.name
              for output_tensor_info in signature_def.outputs.values()
          ]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top