Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tf_xla_deterministic_cluster_names (0.41 sec)

  1. tensorflow/compiler/jit/tests/device_compiler_serialize_options_test.cc

          /*expect_persistent_cache_use=*/true));
    }
    
    }  // namespace
    }  // namespace tensorflow
    
    int main(int argc, char** argv) {
      tensorflow::GetMarkForCompilationPassFlags()
          ->tf_xla_deterministic_cluster_names = true;
      tensorflow::GetMarkForCompilationPassFlags()
          ->tf_xla_persistent_cache_directory = tensorflow::testing::TmpDir();
      tensorflow::GetMarkForCompilationPassFlags()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/device_compiler_serialize_test.cc

      }
    }
    
    }  // namespace
    }  // namespace tensorflow
    
    int main(int argc, char** argv) {
      tensorflow::GetMarkForCompilationPassFlags()
          ->tf_xla_deterministic_cluster_names = true;
      tensorflow::GetMarkForCompilationPassFlags()
          ->tf_xla_persistent_cache_directory = tensorflow::testing::TmpDir();
      ::testing::InitGoogleTest(&argc, argv);
      return RUN_ALL_TESTS();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.cc

               "Disable resource variables related safety checks when clustering "
               "(this is unsound)."),
          Flag("tf_xla_deterministic_cluster_names",
               &mark_for_compilation_flags->tf_xla_deterministic_cluster_names,
               "Causes the function names assigned by auto clustering to be "
               "deterministic from run to run."),
          Flag("tf_xla_persistent_cache_directory",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.h

      // If true names of clustered operations will be computed deterministically
      // so that they remain stable from run to run of auto clusteing.
      bool tf_xla_deterministic_cluster_names;
    
      // If non-empty, JIT-compiled executables are saved to and loaded from the
      // specified file system directory path.
      std::string tf_xla_persistent_cache_directory;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          flags->tf_xla_disable_resource_variable_safety_checks_for_debugging;
      debug_options.ignore_xla_compile_attr = false;
      debug_options.deterministic_cluster_names =
          flags->tf_xla_deterministic_cluster_names;
      debug_options.max_cluster_size = flags->tf_xla_max_cluster_size;
      debug_options.min_cluster_size = flags->tf_xla_min_cluster_size;
      debug_options.fuel = GetPointerToFuel(flags->tf_xla_clustering_fuel);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top