Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 60 (0.3 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

      TF_EXPECT_OK(ReadCache(&cache2, "", 0, 1, &out));
      EXPECT_EQ(calls, 1);
      // Advance the clock by a huge amount and verify that the cached block is
      // used to satisfy the read.
      env->SetNowSeconds(365 * 24 * 60 * 60);  // ~1 year, just for fun.
      TF_EXPECT_OK(ReadCache(&cache2, "", 0, 1, &out));
      EXPECT_EQ(calls, 1);
    }
    
    TEST(RamFileBlockCacheTest, RemoveFile) {
      int calls = 0;
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:57 GMT 2021
    - 23.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/grappler/grappler_test.cc

            << i;
      }
      TF_DeleteStatus(status);
    }
    
    TEST(TF_GraphProperties, InputProperties) {
      std::unique_ptr<SingleMachine> cluster(new SingleMachine(5 * 60, 3, 0));
      TF_ASSERT_OK(cluster->Provision());
    
      TrivialTestGraphInputYielder fake_input(4, 1, 10, false,
                                              cluster->GetDeviceNames());
      GrapplerItem item;
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Thu Apr 13 22:30:58 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  3. .bazelrc

    # major release. Example: sm_80 kernels can run on sm_89 GPUs but
    # not on sm_90 GPUs. compute_80 kernels though can also run on sm_90 GPUs.
    build:cuda_clang --repo_env=TF_CUDA_COMPUTE_CAPABILITIES="sm_60,sm_70,sm_80,sm_89,compute_90"
    
    # Set up compilation CUDA version and paths and use the CUDA Clang toolchain.
    build:cuda_clang_official --config=cuda_clang
    build:cuda_clang_official --action_env=TF_CUDA_VERSION="12"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  4. configure.py

        for compute_capability in tf_cuda_compute_capabilities.split(','):
          m = re.match('[0-9]+.[0-9]+', compute_capability)
          if not m:
            # We now support sm_35,sm_50,sm_60,compute_70.
            sm_compute_match = re.match('(sm|compute)_?([0-9]+[0-9]+)',
                                        compute_capability)
            if not sm_compute_match:
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  5. RELEASE.md

        is no longer experimental and allows the use of 16-bit floating point
        formats during training, improving performance by up to 3x on GPUs and 60%
        on TPUs. Please see below for additional details.
    
    *   TensorFlow Profiler now supports profiling `MultiWorkerMirroredStrategy` and
        tracing multiple workers using the
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top