variant.h 1.4 KB
Newer Older
Y
Yu Yang 已提交
1 2
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

L
Luo Tao 已提交
3 4 5
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Y
Yu Yang 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yu Yang 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
Y
Yu Yang 已提交
14 15 16

#pragma once

Y
Yu Yang 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29
#ifdef __CUDACC__
#ifdef __CUDACC_VER_MAJOR__
// CUDA 9 define `__CUDACC_VER__` as a warning message, manually define
// __CUDACC_VER__ instead.
#undef __CUDACC_VER__

#define __CUDACC_VER__                                         \
  (__CUDACC_VER_MAJOR__ * 10000 + __CUDACC_VER_MINOR__ * 100 + \
   __CUDACC_VER_BUILD__)
#endif

#endif

Y
Yu Yang 已提交
30 31
#include <boost/config.hpp>

32
#ifdef PADDLE_WITH_CUDA
Y
Yu Yang 已提交
33 34

// Because boost's variadic templates has bug on nvcc, boost will disable
35 36
// variadic template support when GPU enabled on nvcc.
// Define BOOST_NO_CXX11_VARIADIC_TEMPLATES on gcc/clang to generate same
Y
Yu Yang 已提交
37
// function symbols.
38 39
//
// https://github.com/PaddlePaddle/Paddle/issues/3386
Y
Yu Yang 已提交
40 41 42 43 44
#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
#define BOOST_NO_CXX11_VARIADIC_TEMPLATES
#endif
#endif

Y
Yu Yang 已提交
45 46
#include <boost/mpl/comparison.hpp>
#include <boost/mpl/less_equal.hpp>
Y
Yu Yang 已提交
47
#include <boost/variant.hpp>