Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AnalyzeVariablesPass (0.13 sec)

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

      return op->getName().getStringRef().str() == "tf.SentencepieceTokenizeOp";
    }
    
    class AnalyzeVariablesPass
        : public impl::AnalyzeVariablesPassBase<AnalyzeVariablesPass> {
     public:
      explicit AnalyzeVariablesPass() {}
      void runOnOperation() override;
    };
    
    void AnalyzeVariablesPass::runOnOperation() {
      auto* context = &getContext();
      auto module = getOperation();
      bool legalize_to_tfl = true;
    
    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.td

    limitations under the License.
    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    
    def AnalyzeVariablesPass : Pass<"tfl-analyze-variables-pass", "mlir::ModuleOp"> {
      let summary = "Analyze variables in the graph";
      let description = [{
          Pass which analyzes the variables in the graph and add an attribute whether
    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