Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gpu_options (0.1 sec)

  1. tensorflow/compiler/jit/xla_gpu_device.cc

      if (iter != session_options.config.device_count().end() &&
          iter->second == 0) {
        // Device count for GPU is 0.
        return absl::OkStatus();
      }
    
      string allowed_gpus =
          session_options.config.gpu_options().visible_device_list();
      std::optional<std::set<int>> gpu_ids =
          ParseVisibleDeviceList(allowed_gpus).value();
      if (!gpu_ids) {
        gpu_ids.emplace();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test_helper.cc

      GraphOptimizationPassOptions opt_options;
      opt_options.graph = graph;
      opt_options.session_options = &session_options;
      opt_options.flib_def = flib_def;
    
      if (options.enable_cluster_scoping) {
        ClusterScopingPass cluster_scoping_pass;
        TF_RETURN_IF_ERROR(cluster_scoping_pass.Run(opt_options));
      }
    
      MarkForCompilationPass mark_for_compilation_pass;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 19:51:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/cluster_scoping_pass_test.cc

          ->mutable_optimizer_options()
          ->set_global_jit_level(OptimizerOptions::ON_2);
      GraphOptimizationPassOptions opt_options =
          wrapper.CreateGraphOptimizationPassOptions(graph);
    
      ClusterScopingPass pass;
      return pass.Run(opt_options);
    }
    
    absl::flat_hash_map<string, string> GetXlaInternalScopes(const Graph& graph) {
      absl::flat_hash_map<string, string> scopes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 16:20:48 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/osgi/OsgiTest.kt

      private fun RepositoryPlugin.deployFile(file: Path) {
        if (fileSystem.metadataOrNull(file)?.isRegularFile != true) return
        try {
          fileSystem.read(file) {
            put(inputStream(), RepositoryPlugin.PutOptions())
            println("Deployed ${file.name}")
          }
        } catch (e: IllegalArgumentException) {
          if ("Jar does not have a symbolic name" in e.message!!) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top