blob: 371355aa99439c4977ba08295119929acdad7851 [file] [log] [blame]
#pragma once
#ifdef _WIN32
#if !defined(TORCH_BUILD_STATIC_LIBS)
#if defined(torch_EXPORTS)
#define TORCH_API __declspec(dllexport)
#else
#define TORCH_API __declspec(dllimport)
#endif
#else
#define TORCH_API
#endif
#elif defined(__GNUC__)
#if defined(torch_EXPORTS)
#define TORCH_API __attribute__((__visibility__("default")))
#else
#define TORCH_API
#endif
#else
#define TORCH_API
#endif