1#pragma once
2
3#include <string>
4
5#include <c10/macros/Export.h>
6
7namespace c10 {
8
9C10_API void setThreadName(std::string name);
10
11} // namespace c10
12