mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Turn more functions and variables into static if they are not used outside the cpp files. Unused functions are removed. Pull Request resolved: https://github.com/pytorch/pytorch/pull/150930 Approved by: https://github.com/Skylion007 Co-authored-by: Aaron Gokaslan <aaronGokaslan@gmail.com>
9 lines
181 B
C++
9 lines
181 B
C++
#ifndef ITT_H
|
|
#define ITT_H
|
|
#include <torch/csrc/utils/pybind.h>
|
|
|
|
namespace torch::profiler {
|
|
void initIttBindings(PyObject* module); // namespace torch::profiler
|
|
}
|
|
#endif // ITT_H
|