17#if (!defined(GPUCA_STANDALONE) || defined(GPUCA_BUILD_QA)) && !defined(GPUCA_GPUCODE)
24std::weak_ptr<GPUROOTDumpCore> GPUROOTDumpCore::sInstance;
34 for (uint32_t
i = 0;
i < mBranches.size();
i++) {
35 mBranches[
i]->write();
41std::shared_ptr<GPUROOTDumpCore> GPUROOTDumpCore::getAndCreate()
43 static std::atomic_flag lock = ATOMIC_FLAG_INIT;
44 while (lock.test_and_set(std::memory_order_acquire)) {
46 std::shared_ptr<GPUROOTDumpCore>
retVal = sInstance.lock();
48 retVal = std::make_shared<GPUROOTDumpCore>(GPUROOTDumpCorePrivate());
51 lock.clear(std::memory_order_release);
57 std::shared_ptr<GPUROOTDumpCore> p = GPUROOTDumpCore::get().lock();
59 throw std::runtime_error(
"No instance of GPUROOTDumpCore exists");
61 p->mBranches.emplace_back(
this);
63 std::remove(
"gpudebug.root");
64 p->mFile.reset(
new TFile(
"gpudebug.root",
"recreate"));
GPUROOTDumpCore(const GPUROOTDumpCore &)=delete