mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Follows #131996 Pull Request resolved: https://github.com/pytorch/pytorch/pull/131997 Approved by: https://github.com/Skylion007
26 lines
440 B
C++
26 lines
440 B
C++
#pragma once
|
|
#include <functional>
|
|
|
|
namespace torch::jit {
|
|
|
|
class ResourceGuard {
|
|
std::function<void()> _destructor;
|
|
bool _released{false};
|
|
|
|
public:
|
|
ResourceGuard(std::function<void()> destructor)
|
|
: _destructor(std::move(destructor)) {}
|
|
|
|
// NOLINTNEXTLINE(bugprone-exception-escape)
|
|
~ResourceGuard() {
|
|
if (!_released)
|
|
_destructor();
|
|
}
|
|
|
|
void release() {
|
|
_released = true;
|
|
}
|
|
};
|
|
|
|
} // namespace torch::jit
|