Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stateless (0.17 sec)

  1. RELEASE.md

        *   `RandomBinomial` broadcasts and appends the sample shape to the left
            rather than the right.
        *   Added `tf.random.stateless_binomial`, `tf.random.stateless_gamma`,
            `tf.random.stateless_poisson`
        *   `tf.random.stateless_uniform` now supports unbounded sampling of `int`
            types.
    *   Math and Linear Algebra:
        *   Add `tf.linalg.LinearOperatorTridiag`.
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

        max_bytes = static_cast<size_t>(value * 1024 * 1024);
      }
      const char* max_staleness_env = std::getenv(kMaxStaleness);
      if (max_staleness_env && absl::SimpleAtoi(max_staleness_env, &value)) {
        max_staleness = value;
      }
      TF_VLog(1, "GCS cache max size = %u ; block size = %u ; max staleness = %u",
              max_bytes, block_size, max_staleness);
    
      file_block_cache = std::make_unique<RamFileBlockCache>(
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
Back to top