Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isolation (0.41 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      StringPiece GetRelativePath(StringPiece absolute_path) {
        return tensorflow::str_util::StripPrefix(absolute_path, root_dir_);
      }
    
      // Initializes the randomness used to ensure test isolation.
      static void InitializeTestRNG() {
        std::random_device rd;
        std::mt19937 gen(rd());
        std::uniform_int_distribution<> distribution;
        rng_val_ = distribution(gen);
      }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
Back to top