Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AddPreVariableFreezingTFToTFLConversionPasses (0.35 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.h

    // This is the early part of the conversion in isolation. This enables a caller
    // to inject more information in the middle of the conversion before resuming it
    // (like freezing variables for example).
    void AddPreVariableFreezingTFToTFLConversionPasses(
        const mlir::TFL::PassConfig& pass_config,
        mlir::OpPassManager* pass_manager);
    
    // This is the later part of the conversion in isolation. This enables a caller
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 06:14:07 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

    }
    
    // This is the early part of the conversion in isolation. This enables a caller
    // to inject more information in the middle of the conversion before resuming
    // it.
    void AddPreVariableFreezingTFToTFLConversionPasses(
        const mlir::TFL::PassConfig& pass_config,
        mlir::OpPassManager* pass_manager) {
      // This pass wraps all the tf.FakeQuant ops in a custom op so they are not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

                quantization_py_function_lib, saved_model_bundle, pass_manager,
                status_handler, module))) {
          return status_handler.ConsumeStatus();
        }
      }
    
      AddPreVariableFreezingTFToTFLConversionPasses(pass_config, &pass_manager);
      if (failed(pass_manager.run(module))) {
        return status_handler.ConsumeStatus();
      }
    
      // Freeze variables if a session is provided.
      if (session != nullptr &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top