Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateAnalyzeVariablesPass (0.32 sec)

  1. tensorflow/compiler/mlir/lite/transforms/analyze_variables.cc

      });
      module->setAttr(kLegalizeTflVariables,
                      BoolAttr::get(context, legalize_to_tfl));
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateAnalyzeVariablesPass() {
      return std::make_unique<AnalyzeVariablesPass>();
    }
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeVariablesPass();
    
    // Creates a pass which analyze the model whether it is safe to use
    // native TFLite variables or not.
    std::unique_ptr<OperationPass<ModuleOp>> CreateAnalyzeVariablesPass();
    
    // Creates a pass which is responsible for legalizing TensorFlow static hash
    // tables to TensorFlow Lite hash tables.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeHashTablesPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

            mlir::TFL::CreateLegalizeTFPass(pass_config.runtime_verification,
                                            pass_config.preserve_assert_op));
        pass_manager->addPass(mlir::TFL::CreateAnalyzeVariablesPass());
        pass_manager->addPass(mlir::TFL::CreateLegalizeVariablesPass());
        pass_manager->addPass(mlir::TFL::CreateLegalizeHashTablesPass());
        if (!pass_config.unfold_batch_matmul) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.td

          variables should be legalized to TFLite native ones.
          This pass needs to run post TF->TFL legalization and before variable
          legalization.
      }];
      let constructor = "CreateAnalyzeVariablesPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def DefaultQuantParamsPass : Pass<"tfl-default-quant", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top