You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
#if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|
|
#pragma once
|
|
|
|
#ifndef C10_USING_CUSTOM_GENERATED_MACROS
|
|
#include <c10/xpu/impl/xpu_cmake_macros.h>
|
|
#endif
|
|
|
|
// See c10/macros/Export.h for a detailed explanation of what the function
|
|
// of these macros are. We need one set of macros for every separate library
|
|
// we build.
|
|
|
|
#ifdef _WIN32
|
|
#if defined(C10_XPU_BUILD_SHARED_LIBS)
|
|
#define C10_XPU_EXPORT __declspec(dllexport)
|
|
#define C10_XPU_IMPORT __declspec(dllimport)
|
|
#else
|
|
#define C10_XPU_EXPORT
|
|
#define C10_XPU_IMPORT
|
|
#endif
|
|
#else // _WIN32
|
|
#if defined(__GNUC__)
|
|
#define C10_XPU_EXPORT __attribute__((__visibility__("default")))
|
|
#else // defined(__GNUC__)
|
|
#define C10_XPU_EXPORT
|
|
#endif // defined(__GNUC__)
|
|
#define C10_XPU_IMPORT C10_XPU_EXPORT
|
|
#endif // _WIN32
|
|
|
|
// This one is being used by libc10_xpu.so
|
|
#ifdef C10_XPU_BUILD_MAIN_LIB
|
|
#define C10_XPU_API C10_XPU_EXPORT
|
|
#else
|
|
#define C10_XPU_API C10_XPU_IMPORT
|
|
#endif
|
|
|
|
#else
|
|
#error "This file should not be included when either TORCH_STABLE_ONLY or TORCH_TARGET_VERSION is defined."
|
|
#endif // !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|