Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for disableMultithreading (0.52 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

      // Even if multithreading is already disabled, if we are executing within a
      // pass-manager,  disableMultithreading throws assertion fail. Below if
      // statement ensures that disableMultithreading will not be executed if
      // multithreading is already disabled.
      if (pm.getContext()->isMultithreadingEnabled()) {
        pm.getContext()->disableMultithreading();
      }
    
      // The configuration uses the default parameter values for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.cc

                              llvm::StringRef module_name) {
      // Print the whole module after each pass, which requires disabling
      // multi-threading as well.
      pm.getContext()->disableMultithreading();
      pm.enableIRPrinting(std::make_unique<::tensorflow::DataDumperLoggerConfig>(
          [module_name, dump_group_name](const std::string& pass_tag_name,
                                         mlir::Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

                              llvm::StringRef module_name) {
      // Print the whole module after each pass, which requires disabling
      // multi-threading as well.
      pm.getContext()->disableMultithreading();
      pm.enableIRPrinting(std::make_unique<::tensorflow::DataDumperLoggerConfig>(
          [module_name, dump_group_name](const std::string& pass_tag_name,
                                         mlir::Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/debug/debug.cc

      if (dump_to_dir || print_to_stdout) {
        // Necessary for maintaining sequence of passes when dumping MLIR to files
        // or stdout.
        pm.getContext()->disableMultithreading();
      }
    
      if (dump_to_dir) {
        dump_dir = tsl::io::JoinPath(
            dump_dir, absl::FormatTime("%E4Y%m%d_%H%M%E6S", absl::Now(),
                                       absl::LocalTimeZone()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

                               module_name.str(), kDebugGroupBridgePhase2)) {
        // Print the whole module after each pass which requires disabling
        // multi-threading as well.
        module_op.getContext()->disableMultithreading();
        tf2xla.enableIRPrinting(
            std::make_unique<::tensorflow::DataDumperLoggerConfig>(
                [module_name](const std::string& pass_tag_name,
                              mlir::Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
Back to top