Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tf_mlir_enable_merge_control_flow_pass (0.49 sec)

  1. tensorflow/compiler/jit/flags.cc

           Flag("tf_mlir_enable_mlir_bridge", &enable_mlir_bridge,
                "Enables experimental MLIR-Based TensorFlow Compiler Bridge.",
                &enable_mlir_bridge_is_explicit),
           Flag("tf_mlir_enable_merge_control_flow_pass",
                &enable_mlir_merge_control_flow_pass,
                "Enables MergeControlFlow pass for MLIR-Based TensorFlow Compiler "
                "Bridge."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // op.
      pm.addNestedPass<FuncOp>(mlir::createCanonicalizerPass());
    
      pm.addNestedPass<FuncOp>(mlir::createCSEPass());
      if (tensorflow::GetMlirCommonFlags()
              ->tf_mlir_enable_merge_control_flow_pass) {
        pm.addPass(mlir::TFDevice::CreateMergeControlFlowPass());
      }
    
      pm.addPass(
          tensorflow::tf2xla::internal::CreateMarkOpsForOutsideCompilationPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

    };
    
    // Flags for common MLIR configurations.
    struct MlirCommonFlags {
      ConfigProto::Experimental::MlirBridgeRollout tf_mlir_enable_mlir_bridge;
    
      bool tf_mlir_enable_merge_control_flow_pass;
      bool tf_mlir_enable_convert_control_to_data_outputs_pass;
      bool tf_mlir_enable_composite_tpuexecute_side_effects;
      bool tf_mlir_enable_strict_clusters;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top