mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
Before we can use clang-tidy-17 Pull Request resolved: https://github.com/pytorch/pytorch/pull/137407 Approved by: https://github.com/Skylion007, https://github.com/aaronenyeshi
67 lines
1.4 KiB
C++
67 lines
1.4 KiB
C++
#include <torch/csrc/monitor/counters.h>
|
|
|
|
#include <unordered_set>
|
|
|
|
namespace torch::monitor {
|
|
|
|
const char* aggregationName(Aggregation agg) {
|
|
switch (agg) {
|
|
case Aggregation::NONE:
|
|
return "none";
|
|
case Aggregation::VALUE:
|
|
return "value";
|
|
case Aggregation::MEAN:
|
|
return "mean";
|
|
case Aggregation::COUNT:
|
|
return "count";
|
|
case Aggregation::SUM:
|
|
return "sum";
|
|
case Aggregation::MAX:
|
|
return "max";
|
|
case Aggregation::MIN:
|
|
return "min";
|
|
default:
|
|
throw std::runtime_error(
|
|
"unknown aggregation: " + std::to_string(static_cast<int>(agg)));
|
|
}
|
|
}
|
|
|
|
namespace {
|
|
struct Stats {
|
|
std::mutex mu;
|
|
|
|
std::unordered_set<Stat<double>*> doubles;
|
|
std::unordered_set<Stat<int64_t>*> int64s;
|
|
};
|
|
|
|
Stats& stats() {
|
|
static Stats stats;
|
|
return stats;
|
|
}
|
|
} // namespace
|
|
|
|
namespace detail {
|
|
void registerStat(Stat<double>* stat) {
|
|
std::lock_guard<std::mutex> guard(stats().mu);
|
|
|
|
stats().doubles.insert(stat);
|
|
}
|
|
void registerStat(Stat<int64_t>* stat) {
|
|
std::lock_guard<std::mutex> guard(stats().mu);
|
|
|
|
stats().int64s.insert(stat);
|
|
}
|
|
void unregisterStat(Stat<double>* stat) {
|
|
std::lock_guard<std::mutex> guard(stats().mu);
|
|
|
|
stats().doubles.erase(stat);
|
|
}
|
|
void unregisterStat(Stat<int64_t>* stat) {
|
|
std::lock_guard<std::mutex> guard(stats().mu);
|
|
|
|
stats().int64s.erase(stat);
|
|
}
|
|
} // namespace detail
|
|
|
|
} // namespace torch::monitor
|