Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tf_mlir_enable_tpu_variable_runtime_reformatting_pass (0.51 sec)

  1. tensorflow/compiler/jit/flags.cc

                "When tf_dump_graphs_in_tfg is true, graphs after transformations "
                "are dumped in MLIR TFG dialect and not in GraphDef"),
           Flag("tf_mlir_enable_tpu_variable_runtime_reformatting_pass",
                &enable_tpu_variable_runtime_reformatting_pass,
                "Enables TPUVariableRuntimeReformatting pass for MLIR-Based "
    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/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

          mlir::TFTPU::CreateExtractTPUCopyWithDynamicShapeOpPass());
      pm.addNestedPass<FuncOp>(
          mlir::TFTPU::CreateTPUColocateCompositeResourceOps());
      if (tensorflow::GetMlirCommonFlags()
              ->tf_mlir_enable_tpu_variable_runtime_reformatting_pass) {
        pm.addPass(mlir::TFTPU::CreateTPUVariableRuntimeReformattingPass());
      }
    }
    
    void AddNonTPULowerClusterToRuntimeOpsPassPipeline(
        OpPassManager& pm, llvm::StringRef module_name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

      bool tf_mlir_enable_convert_control_to_data_outputs_pass;
      bool tf_mlir_enable_composite_tpuexecute_side_effects;
      bool tf_mlir_enable_strict_clusters;
      bool tf_mlir_enable_tpu_variable_runtime_reformatting_pass;
      // TODO(pineapplejuice233): Revisit this flag once the performance impact is verified
      // with different local CPU devices settings.
      bool tf_mlir_enable_multiple_local_cpu_devices;
    };
    
    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