Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for tf_xla_persistent_cache_directory (0.45 sec)

  1. tensorflow/compiler/jit/xla_platform_info_test.cc

     protected:
      void SetUp() override {
        tensorflow::GetXlaDeviceFlags()->tf_xla_enable_xla_devices = true;
        tensorflow::GetMarkForCompilationPassFlags()
            ->tf_xla_persistent_cache_directory = "";
        tensorflow::GetMarkForCompilationPassFlags()
            ->tf_xla_persistent_cache_device_types = "";
      }
    
      DeviceSetup device_setup_;
    };
    
    class StubDevice : public DeviceBase {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 14 15:17:12 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/device_compiler_serialize_options_test.cc

    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()
          ->tf_xla_disable_strict_signature_checks = true;
      tensorflow::GetMarkForCompilationPassFlags()->tf_xla_persistent_cache_prefix =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/device_compiler_serialize_test.cc

    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)
  4. tensorflow/compiler/jit/flags.cc

               "Causes the function names assigned by auto clustering to be "
               "deterministic from run to run."),
          Flag("tf_xla_persistent_cache_directory",
               &mark_for_compilation_flags->tf_xla_persistent_cache_directory,
               "If non-empty, JIT-compiled executables are saved to and loaded "
               "from the specified file system directory path. Empty by default."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_platform_info.cc

                            return compilation_device_type == DeviceType(device);
                          })) {
        return "";
      }
      return GetMarkForCompilationPassFlags()->tf_xla_persistent_cache_directory;
    }
    
    absl::StatusOr<std::optional<std::set<int>>> ParseVisibleDeviceList(
        absl::string_view visible_device_list) {
      std::set<int> gpu_ids;
      if (visible_device_list.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/flags.h

      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;
    
      // If non-empty, the persistent cache will only be used for the specified
      // devices (comma separated). Each device type should be able to be converted
      // to `DeviceType`.
    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