Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for addNestedPass (0.36 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.cc

      // new passes generally should go into the internal
      // AddReplicatedBridgeClusteringPipelinePasses.
      pm.addPass(mlir::TFTPU::CreateTPUValidateInputsPass());
      pm.addNestedPass<FuncOp>(
          mlir::TF::CreateCanonicalizeCompileAndReplicateAttributesPass());
      tensorflow::tf2xla::internal::AddReplicatedBridgeClusteringPipelinePasses(
          pm, module_name);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      manager.addPass(mlir::TF::CreatePrepareTpuComputationForTfExportPass());
      manager.addPass(mlir::TF::CreateTFRegionControlFlowToFunctional());
      manager.addPass(mlir::TF::CreateTFShapeInferencePass());
      manager.addNestedPass<mlir::func::FuncOp>(
          mlir::CreateFunctionalToExecutorDialectConversionPass());
      manager.addPass(mlir::CreateBreakUpIslandsPass());
    
      mlir::StatusScopedDiagnosticHandler diag_handler(module.getContext());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

    MlirFunction::GetFunctionRecord() {
      if (func_record_) {
        return func_record_.GetNewRef();
      }
      PassManager pm(func_.getContext());
      ::tensorflow::applyTensorflowAndCLOptions(pm);
      pm.addNestedPass<func::FuncOp>(
          CreateFunctionalToExecutorDialectConversionPass());
      pm.addPass(CreateBreakUpIslandsPass());
    
      // In case of failure, the `diag_handler` converts MLIR errors emitted to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

        // Run the Convert TF Quant Types, TF Quant -> MHLO Quant and MHLO Quant ->
        // MHLO int passes.
        PassManager pm(module_op->getContext());
        pm.addNestedPass<func::FuncOp>(CreateConvertTFQuantTypesPass());
        AddQuantizationLoweringPasses(pm);
        CHECK(succeeded(pm.run(module_op.get())));
        // Compile the program.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      mlir::StatusScopedDiagnosticHandler diag_handler(module.getContext());
    
      mlir::PassManager pm(module.getContext());
      SetCrashReproducer(pm);
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::tf_executor::CreateTFExecutorGraphPruningPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::CreateExecutorDialectToFunctionalConversionPass());
      if (!include_variables_in_initializers) {
        pm.addPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top