Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreatePrepareCompositeFunctionsPass (0.41 sec)

  1. tensorflow/compiler/mlir/lite/transforms/passes.h

        const std::vector<std::string>& trim_funcs_allowlist);
    
    // Creates an instance of the TensorFlow Lite dialect PrepareCompositeFunctions
    // pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePrepareCompositeFunctionsPass();
    
    // Creates an instance of the TensorFlow Lite dialect SplitMergedOperandsPass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateSplitMergedOperandsPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

          ConvertTFAPIImplements(func, tf_api_implements_attr, module);
        }
      }
    }
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreatePrepareCompositeFunctionsPass() {
      return std::make_unique<PrepareCompositeFunctionsPass>();
    }
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // Enable fusing composite ops that can be lowered to built-in TFLite ops.
      if (pass_config.emit_builtin_tflite_ops &&
          toco_flags.tf_quantization_mode().empty()) {
        pass_manager->addPass(mlir::TFL::CreatePrepareCompositeFunctionsPass());
      }
    
      pass_manager->addPass(mlir::createInlinerPass());
      pass_manager->addPass(mlir::createSymbolDCEPass());
    
      if (pass_config.legalize_custom_tensor_list_ops) {
    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

    }
    
    def PrepareCompositeFunctionsPass : Pass<"tfl-prepare-composite-funcs-tf", "mlir::ModuleOp"> {
      let summary = "Prepares composite functions in Tensorflow dialect of MLIR.";
      let constructor = "CreatePrepareCompositeFunctionsPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
      let description = [{
          This pass uses mechanisms listed in RFC:
          https://github.com/tensorflow/community/pull/113
    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