Files
pytorch/c10/core/impl/GPUTrace.cpp
cyy 4a019047ad Enable nested namespace check in clang-tidy (#118506)
It is time to enable nested namespaces in the code.

Pull Request resolved: https://github.com/pytorch/pytorch/pull/118506
Approved by: https://github.com/albanD
2024-01-31 00:32:35 +00:00

19 lines
425 B
C++

#include <c10/core/impl/GPUTrace.h>
#include <c10/util/CallOnce.h>
namespace c10::impl {
std::atomic<const PyInterpreter*> GPUTrace::gpuTraceState{nullptr};
bool GPUTrace::haveState{false};
void GPUTrace::set_trace(const PyInterpreter* trace) {
static c10::once_flag flag;
c10::call_once(flag, [&]() {
gpuTraceState.store(trace, std::memory_order_release);
haveState = true;
});
}
} // namespace c10::impl