mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/36299 Test Plan: Imported from OSS Differential Revision: D20943005 Pulled By: ezyang fbshipit-source-id: 9dd0a58824bd0f1b5ad259942f92954ba1f63eae
12 lines
148 B
C++
12 lines
148 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <c10/macros/Export.h>
|
|
|
|
namespace c10 {
|
|
|
|
C10_API void setThreadName(std::string name);
|
|
|
|
} // namespace c10
|