Home
last modified time | relevance | path

Searched refs:live_stream_count_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/stream_executor/
Dstream_executor_pimpl.cc166 live_stream_count_(0), in StreamExecutor()
188 live_stream_count_(0), in StreamExecutor()
208 if (live_stream_count_.load() != 0) { in ~StreamExecutor()
775 live_stream_count_.fetch_add(1, std::memory_order_relaxed); in AllocateStream()
777 auto count = live_stream_count_.fetch_sub(1); in AllocateStream()
788 CHECK_GE(live_stream_count_.fetch_sub(1), 0) in DeallocateStream()
Dstream_executor_pimpl.h703 std::atomic_int_fast32_t live_stream_count_; variable