未验证 提交 630943c7 编写于 作者: Y Yi Wang 提交者: GitHub

Update documentation (#9918)

上级 2f382640
...@@ -11,12 +11,13 @@ distributed under the License is distributed on an "AS IS" BASIS, ...@@ -11,12 +11,13 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. */ limitations under the License. */
#pragma once #pragma once
#include <cuda_profiler_api.h> #include <cuda_profiler_api.h>
#include <stdio.h>
#include <stdlib.h> #include <string>
#include <string.h>
#include "paddle/fluid/platform/enforce.h"
namespace paddle { namespace paddle {
namespace platform { namespace platform {
......
...@@ -14,29 +14,25 @@ limitations under the License. */ ...@@ -14,29 +14,25 @@ limitations under the License. */
#pragma once #pragma once
#ifdef __CUDACC__ // Boost 1.41.0 requires __CUDACC_VER__, but in CUDA 9 __CUDACC_VER__
#ifdef __CUDACC_VER_MAJOR__ // is removed, so we have to manually define __CUDACC_VER__ instead.
// CUDA 9 define `__CUDACC_VER__` as a warning message, manually define // For details, please refer to
// __CUDACC_VER__ instead. // https://github.com/PaddlePaddle/Paddle/issues/6626
#if defined(__CUDACC__) && defined(__CUDACC_VER_MAJOR__)
#undef __CUDACC_VER__ #undef __CUDACC_VER__
#define __CUDACC_VER__ \
#define __CUDACC_VER__ \ __CUDACC_VER_BUILD__ + __CUDACC_VER_MAJOR__ * 10000 + \
(__CUDACC_VER_MAJOR__ * 10000 + __CUDACC_VER_MINOR__ * 100 + \ __CUDACC_VER_MINOR__ * 100
__CUDACC_VER_BUILD__)
#endif
#endif #endif
#include <boost/config.hpp> #include "boost/config.hpp"
#ifdef PADDLE_WITH_CUDA // Because Boost 1.41.0's variadic templates has bug on nvcc, boost
// will disable variadic template support in NVCC mode. Define
// Because boost's variadic templates has bug on nvcc, boost will disable // BOOST_NO_CXX11_VARIADIC_TEMPLATES on gcc/clang to generate same
// variadic template support when GPU enabled on nvcc. // function symbols. For details,
// Define BOOST_NO_CXX11_VARIADIC_TEMPLATES on gcc/clang to generate same
// function symbols.
//
// https://github.com/PaddlePaddle/Paddle/issues/3386 // https://github.com/PaddlePaddle/Paddle/issues/3386
#ifdef PADDLE_WITH_CUDA
#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES #ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
#define BOOST_NO_CXX11_VARIADIC_TEMPLATES #define BOOST_NO_CXX11_VARIADIC_TEMPLATES
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册