Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tf_xla_persistent_cache_prefix (0.5 sec)

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

      tensorflow::GetMarkForCompilationPassFlags()
          ->tf_xla_disable_strict_signature_checks = true;
      tensorflow::GetMarkForCompilationPassFlags()->tf_xla_persistent_cache_prefix =
          "my_test_prefix";
      ::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.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.cc

               "If true, entires loaded into the XLA compile cache will not have "
               "their signatures checked strictly. Defaults to false."),
          Flag("tf_xla_persistent_cache_prefix",
               &mark_for_compilation_flags->tf_xla_persistent_cache_prefix,
               "Specifies the persistance cache prefix. Default is "
               "\"xla_compile_cache\""),
          Flag("tf_xla_sparse_core_disable_table_stacking",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_platform_info.cc

      PjRtDeviceExecutablePersistor::Config persistor_config(
          persistent_cache_directory,
          GetMarkForCompilationPassFlags()->tf_xla_disable_strict_signature_checks,
          GetMarkForCompilationPassFlags()->tf_xla_persistent_cache_prefix,
          GetMarkForCompilationPassFlags()->tf_xla_persistent_cache_read_only);
    
      return new PjRtDeviceCompiler(
          std::make_unique<PjRtDeviceExecutablePersistor>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.h

      // for debugging. Defaults to false.
      bool tf_xla_disable_strict_signature_checks;
    
      // Specifies the persistance cache prefix. Default is "xla_compile_cache"
      string tf_xla_persistent_cache_prefix;
    };
    
    // Flags associated with XLA Sparse Core.
    struct XlaSparseCoreFlags {
      // Max level of division to split input data into minibatches.
      int tf_xla_sparse_core_minibatch_max_division_level;
    
    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