Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetPointerToFuel (0.13 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

              ? options.session_options->config.experimental()
                    .session_metadata()
                    .name()
              : ""}
          .Run();
    }
    
    std::atomic<int64_t>* GetPointerToFuel(int64_t initial_value) {
      static std::atomic<int64_t>* fuel = [&]() {
        std::atomic<int64_t>* fuel = new std::atomic<int64_t>;
        *fuel = initial_value;
        return fuel;
      }();
    
      return fuel;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top