Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FbgemmBuild.h « fbgemm « include - github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72c4e5618b8a01288d8836834d2b30eb1cef2cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright (c) Facebook, Inc. and its affiliates.
 * All rights reserved.
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree.
 */
#pragma once

#if !defined(FBGEMM_API)
  #if defined(FBGEMM_STATIC)
    #define FBGEMM_API
  #elif defined _WIN32 || defined __CYGWIN__
    #if (__GNUC__ || __clang__) && !(__MINGW64__ || __MINGW32__)
      #if defined(FBGEMM_EXPORTS)
        #define FBGEMM_API __attribute__((__dllexport__))
      #else
        #define FBGEMM_API __attribute__((__dllimport__))
      #endif
    #else
      #if defined(FBGEMM_EXPORTS)
        #define FBGEMM_API __declspec(dllexport)
      #else
        #define FBGEMM_API __declspec(dllimport)
      #endif
    #endif
  #else
    #if __clang__ || __GNUC__ >=4 || __INTEL_COMPILER
      #define FBGEMM_API __attribute__((__visibility__("default")))
    #else
      #define FBGEMM_API
    #endif
  #endif
#endif