Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CAmount (0.21 sec)

  1. .bazelrc

    build:windows --cxxopt=/std:c++17
    build:windows --host_cxxopt=/std:c++17
    
    # On windows, we still link everything into a single DLL.
    build:windows --config=monolithic
    
    # On linux, we dynamically link small amount of kernels
    build:linux --config=dynamic_kernels
    
    # Make sure to include as little of windows.h as possible
    build:windows --copt=-DWIN32_LEAN_AND_MEAN
    build:windows --host_copt=-DWIN32_LEAN_AND_MEAN
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  2. tensorflow/c/eager/c_api_experimental.h

    // setting the same key will lead to errors.
    //
    // Note that the key-values are only expected to be used for cluster
    // configuration data, and should not be used for storing a large amount of data
    // or being accessed very frequently.
    TF_CAPI_EXPORT extern void TFE_InsertConfigKeyValue(TFE_Context* ctx,
                                                        const char* key,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

          [&env]() { return env->NowSeconds(); });
      // Execute the first read to load the block.
      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);
    }
    
    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)
  4. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern const char* TF_DeviceListType(const TF_DeviceList* list,
                                                        int index,
                                                        TF_Status* status);
    
    // Retrieve the amount of memory associated with a given device.
    //
    // If index is out of bounds, an error code will be set in the status object,
    // and -1 will be returned.
    TF_CAPI_EXPORT extern int64_t TF_DeviceListMemoryBytes(
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top