1#ifndef PROFILER_ITT_H
2#define PROFILER_ITT_H
3
4namespace torch {
5namespace profiler {
6bool itt_is_available();
7void itt_range_push(const char* msg);
8void itt_range_pop();
9void itt_mark(const char* msg);
10} // namespace profiler
11} // namespace torch
12
13#endif // PROFILER_ITT_H
14