Home
last modified time | relevance | path

Searched defs:TimingScope (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Support/
H A DTiming.h25 class TimingScope; variable
273 TimingScope() : timer() {} in TimingScope() function
274 TimingScope(const Timer &other) : timer(other) { in TimingScope() function
278 TimingScope(Timer &&other) : timer(std::move(other)) { in TimingScope() function
282 TimingScope(TimingScope &&other) : timer(std::move(other.timer)) {} in TimingScope() function