blob: b4b10c2c75bc45ba75e304443c16efd243bb0642 [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
/*!
* Copyright (c) 2015 by Contributors
* \file cuda_utils.h
* \brief CUDA debugging utilities.
*/
#ifndef MXNET_COMMON_CUDA_UTILS_H_
#define MXNET_COMMON_CUDA_UTILS_H_
#include <dmlc/logging.h>
#include <dmlc/parameter.h>
#include <dmlc/optional.h>
#include <mshadow/base.h>
/*! \brief Macros/inlines to assist CLion to parse Cuda files (*.cu, *.cuh) */
#ifdef __JETBRAINS_IDE__
#define __CUDACC__ 1
#define __host__
#define __device__
#define __global__
#define __forceinline__
#define __shared__
inline void __syncthreads() {}
inline void __threadfence_block() {}
template<class T> inline T __clz(const T val) { return val; }
struct __cuda_fake_struct { int x; int y; int z; };
extern __cuda_fake_struct blockDim;
extern __cuda_fake_struct threadIdx;
extern __cuda_fake_struct blockIdx;
#endif
#if MXNET_USE_CUDA
#include <cuda_runtime.h>
#include <cublas_v2.h>
#include <curand.h>
/*!
* \brief When compiling a __device__ function, check that the architecture is >= Kepler (3.0)
* Note that __CUDA_ARCH__ is not defined outside of a __device__ function
*/
#ifdef __CUDACC__
inline __device__ bool __is_supported_cuda_architecture() {
#if defined(__CUDA_ARCH__) && __CUDA_ARCH__ < 300
#error "Fermi and earlier GPU architectures are not supported (architecture versions less than 3.0)"
return false;
#else
return true;
#endif // __CUDA_ARCH__ < 300
}
#endif // __CUDACC__
namespace mxnet {
namespace common {
/*! \brief common utils for cuda */
namespace cuda {
/*!
* \brief Get string representation of cuBLAS errors.
* \param error The error.
* \return String representation.
*/
inline const char* CublasGetErrorString(cublasStatus_t error) {
switch (error) {
case CUBLAS_STATUS_SUCCESS:
return "CUBLAS_STATUS_SUCCESS";
case CUBLAS_STATUS_NOT_INITIALIZED:
return "CUBLAS_STATUS_NOT_INITIALIZED";
case CUBLAS_STATUS_ALLOC_FAILED:
return "CUBLAS_STATUS_ALLOC_FAILED";
case CUBLAS_STATUS_INVALID_VALUE:
return "CUBLAS_STATUS_INVALID_VALUE";
case CUBLAS_STATUS_ARCH_MISMATCH:
return "CUBLAS_STATUS_ARCH_MISMATCH";
case CUBLAS_STATUS_MAPPING_ERROR:
return "CUBLAS_STATUS_MAPPING_ERROR";
case CUBLAS_STATUS_EXECUTION_FAILED:
return "CUBLAS_STATUS_EXECUTION_FAILED";
case CUBLAS_STATUS_INTERNAL_ERROR:
return "CUBLAS_STATUS_INTERNAL_ERROR";
case CUBLAS_STATUS_NOT_SUPPORTED:
return "CUBLAS_STATUS_NOT_SUPPORTED";
default:
break;
}
return "Unknown cuBLAS status";
}
/*!
* \brief Get string representation of cuSOLVER errors.
* \param error The error.
* \return String representation.
*/
inline const char* CusolverGetErrorString(cusolverStatus_t error) {
switch (error) {
case CUSOLVER_STATUS_SUCCESS:
return "CUSOLVER_STATUS_SUCCESS";
case CUSOLVER_STATUS_NOT_INITIALIZED:
return "CUSOLVER_STATUS_NOT_INITIALIZED";
case CUSOLVER_STATUS_ALLOC_FAILED:
return "CUSOLVER_STATUS_ALLOC_FAILED";
case CUSOLVER_STATUS_INVALID_VALUE:
return "CUSOLVER_STATUS_INVALID_VALUE";
case CUSOLVER_STATUS_ARCH_MISMATCH:
return "CUSOLVER_STATUS_ARCH_MISMATCH";
case CUSOLVER_STATUS_EXECUTION_FAILED:
return "CUSOLVER_STATUS_EXECUTION_FAILED";
case CUSOLVER_STATUS_INTERNAL_ERROR:
return "CUSOLVER_STATUS_INTERNAL_ERROR";
case CUSOLVER_STATUS_MATRIX_TYPE_NOT_SUPPORTED:
return "CUSOLVER_STATUS_MATRIX_TYPE_NOT_SUPPORTED";
default:
break;
}
return "Unknown cuSOLVER status";
}
/*!
* \brief Get string representation of cuRAND errors.
* \param status The status.
* \return String representation.
*/
inline const char* CurandGetErrorString(curandStatus_t status) {
switch (status) {
case CURAND_STATUS_SUCCESS:
return "CURAND_STATUS_SUCCESS";
case CURAND_STATUS_VERSION_MISMATCH:
return "CURAND_STATUS_VERSION_MISMATCH";
case CURAND_STATUS_NOT_INITIALIZED:
return "CURAND_STATUS_NOT_INITIALIZED";
case CURAND_STATUS_ALLOCATION_FAILED:
return "CURAND_STATUS_ALLOCATION_FAILED";
case CURAND_STATUS_TYPE_ERROR:
return "CURAND_STATUS_TYPE_ERROR";
case CURAND_STATUS_OUT_OF_RANGE:
return "CURAND_STATUS_OUT_OF_RANGE";
case CURAND_STATUS_LENGTH_NOT_MULTIPLE:
return "CURAND_STATUS_LENGTH_NOT_MULTIPLE";
case CURAND_STATUS_DOUBLE_PRECISION_REQUIRED:
return "CURAND_STATUS_DOUBLE_PRECISION_REQUIRED";
case CURAND_STATUS_LAUNCH_FAILURE:
return "CURAND_STATUS_LAUNCH_FAILURE";
case CURAND_STATUS_PREEXISTING_FAILURE:
return "CURAND_STATUS_PREEXISTING_FAILURE";
case CURAND_STATUS_INITIALIZATION_FAILED:
return "CURAND_STATUS_INITIALIZATION_FAILED";
case CURAND_STATUS_ARCH_MISMATCH:
return "CURAND_STATUS_ARCH_MISMATCH";
case CURAND_STATUS_INTERNAL_ERROR:
return "CURAND_STATUS_INTERNAL_ERROR";
}
return "Unknown cuRAND status";
}
template <typename DType>
inline DType __device__ CudaMax(DType a, DType b) {
return a > b ? a : b;
}
template <typename DType>
inline DType __device__ CudaMin(DType a, DType b) {
return a < b ? a : b;
}
} // namespace cuda
} // namespace common
} // namespace mxnet
/*!
* \brief Check CUDA error.
* \param msg Message to print if an error occured.
*/
#define CHECK_CUDA_ERROR(msg) \
{ \
cudaError_t e = cudaGetLastError(); \
CHECK_EQ(e, cudaSuccess) << (msg) << " CUDA: " << cudaGetErrorString(e); \
}
/*!
* \brief Protected CUDA call.
* \param func Expression to call.
*
* It checks for CUDA errors after invocation of the expression.
*/
#define CUDA_CALL(func) \
{ \
cudaError_t e = (func); \
CHECK(e == cudaSuccess || e == cudaErrorCudartUnloading) \
<< "CUDA: " << cudaGetErrorString(e); \
}
/*!
* \brief Protected cuBLAS call.
* \param func Expression to call.
*
* It checks for cuBLAS errors after invocation of the expression.
*/
#define CUBLAS_CALL(func) \
{ \
cublasStatus_t e = (func); \
CHECK_EQ(e, CUBLAS_STATUS_SUCCESS) \
<< "cuBLAS: " << mxnet::common::cuda::CublasGetErrorString(e); \
}
/*!
* \brief Protected cuSolver call.
* \param func Expression to call.
*
* It checks for cuSolver errors after invocation of the expression.
*/
#define CUSOLVER_CALL(func) \
{ \
cusolverStatus_t e = (func); \
CHECK_EQ(e, CUSOLVER_STATUS_SUCCESS) \
<< "cuSolver: " << mxnet::common::cuda::CusolverGetErrorString(e); \
}
/*!
* \brief Protected cuRAND call.
* \param func Expression to call.
*
* It checks for cuRAND errors after invocation of the expression.
*/
#define CURAND_CALL(func) \
{ \
curandStatus_t e = (func); \
CHECK_EQ(e, CURAND_STATUS_SUCCESS) \
<< "cuRAND: " << mxnet::common::cuda::CurandGetErrorString(e); \
}
/*!
* \brief Protected NVRTC call.
* \param func Expression to call.
*
* It checks for NVRTC errors after invocation of the expression.
*/
#define NVRTC_CALL(x) \
{ \
nvrtcResult result = x; \
CHECK_EQ(result, NVRTC_SUCCESS) \
<< #x " failed with error " \
<< nvrtcGetErrorString(result); \
}
/*!
* \brief Protected CUDA driver call.
* \param func Expression to call.
*
* It checks for CUDA driver errors after invocation of the expression.
*/
#define CUDA_DRIVER_CALL(func) \
{ \
CUresult e = (func); \
if (e != CUDA_SUCCESS) { \
char const * err_msg = nullptr; \
if (cuGetErrorString(e, &err_msg) == CUDA_ERROR_INVALID_VALUE) { \
LOG(FATAL) << "CUDA Driver: Unknown error " << e; \
} else { \
LOG(FATAL) << "CUDA Driver: " << err_msg; \
} \
} \
}
#if !defined(_MSC_VER)
#define CUDA_UNROLL _Pragma("unroll")
#define CUDA_NOUNROLL _Pragma("nounroll")
#else
#define CUDA_UNROLL
#define CUDA_NOUNROLL
#endif
/*!
* \brief Determine major version number of the gpu's cuda compute architecture.
* \param device_id The device index of the cuda-capable gpu of interest.
* \return the major version number of the gpu's cuda compute architecture.
*/
inline int ComputeCapabilityMajor(int device_id) {
int major = 0;
CUDA_CALL(cudaDeviceGetAttribute(&major,
cudaDevAttrComputeCapabilityMajor, device_id));
return major;
}
/*!
* \brief Determine minor version number of the gpu's cuda compute architecture.
* \param device_id The device index of the cuda-capable gpu of interest.
* \return the minor version number of the gpu's cuda compute architecture.
*/
inline int ComputeCapabilityMinor(int device_id) {
int minor = 0;
CUDA_CALL(cudaDeviceGetAttribute(&minor,
cudaDevAttrComputeCapabilityMinor, device_id));
return minor;
}
/*!
* \brief Return the integer SM architecture (e.g. Volta = 70).
* \param device_id The device index of the cuda-capable gpu of interest.
* \return the gpu's cuda compute architecture as an int.
*/
inline int SMArch(int device_id) {
auto major = ComputeCapabilityMajor(device_id);
auto minor = ComputeCapabilityMinor(device_id);
return 10 * major + minor;
}
/*!
* \brief Determine whether a cuda-capable gpu's architecture supports float16 math.
* Assume not if device_id is negative.
* \param device_id The device index of the cuda-capable gpu of interest.
* \return whether the gpu's architecture supports float16 math.
*/
inline bool SupportsFloat16Compute(int device_id) {
if (device_id < 0) {
return false;
} else {
// Kepler and most Maxwell GPUs do not support fp16 compute
int computeCapabilityMajor = ComputeCapabilityMajor(device_id);
return (computeCapabilityMajor > 5) ||
(computeCapabilityMajor == 5 && ComputeCapabilityMinor(device_id) >= 3);
}
}
/*!
* \brief Determine whether a cuda-capable gpu's architecture supports Tensor Core math.
* Assume not if device_id is negative.
* \param device_id The device index of the cuda-capable gpu of interest.
* \return whether the gpu's architecture supports Tensor Core math.
*/
inline bool SupportsTensorCore(int device_id) {
// Volta (sm_70) supports TensorCore algos
return device_id >= 0 &&
ComputeCapabilityMajor(device_id) >=7;
}
// The policy if the user hasn't set the environment variable MXNET_CUDA_ALLOW_TENSOR_CORE
#define MXNET_CUDA_ALLOW_TENSOR_CORE_DEFAULT true
/*!
* \brief Returns global policy for TensorCore algo use.
* \return whether to allow TensorCore algo (if not specified by the Operator locally).
*/
inline bool GetEnvAllowTensorCore() {
// Since these statics are in the '.h' file, they will exist and will be set
// separately in each compilation unit. Not ideal, but cleaner than creating a
// cuda_utils.cc solely to have a single instance and initialization.
static bool allow_tensor_core = false;
static bool is_set = false;
if (!is_set) {
// Use of optional<bool> here permits: "0", "1", "true" and "false" to all be legal.
bool default_value = MXNET_CUDA_ALLOW_TENSOR_CORE_DEFAULT;
allow_tensor_core = dmlc::GetEnv("MXNET_CUDA_ALLOW_TENSOR_CORE",
dmlc::optional<bool>(default_value)).value();
is_set = true;
}
return allow_tensor_core;
}
#if CUDA_VERSION >= 9000
// Sets the cuBLAS math mode that determines the 'allow TensorCore' policy. Returns previous.
inline cublasMath_t SetCublasMathMode(cublasHandle_t blas_handle, cublasMath_t new_math_type) {
auto handle_math_mode = CUBLAS_DEFAULT_MATH;
CUBLAS_CALL(cublasGetMathMode(blas_handle, &handle_math_mode));
CUBLAS_CALL(cublasSetMathMode(blas_handle, new_math_type));
return handle_math_mode;
}
#endif
#endif // MXNET_USE_CUDA
#if MXNET_USE_CUDNN
#include <cudnn.h>
#define CUDNN_CALL(func) \
{ \
cudnnStatus_t e = (func); \
CHECK_EQ(e, CUDNN_STATUS_SUCCESS) << "cuDNN: " << cudnnGetErrorString(e); \
}
/*!
* \brief Return max number of perf structs cudnnFindConvolutionForwardAlgorithm()
* may want to populate.
* \param cudnn_handle cudnn handle needed to perform the inquiry.
* \return max number of perf structs cudnnFindConvolutionForwardAlgorithm() may
* want to populate.
*/
inline int MaxForwardAlgos(cudnnHandle_t cudnn_handle) {
#if CUDNN_MAJOR >= 7
int max_algos = 0;
CUDNN_CALL(cudnnGetConvolutionForwardAlgorithmMaxCount(cudnn_handle, &max_algos));
return max_algos;
#else
return 10;
#endif
}
/*!
* \brief Return max number of perf structs cudnnFindConvolutionBackwardFilterAlgorithm()
* may want to populate.
* \param cudnn_handle cudnn handle needed to perform the inquiry.
* \return max number of perf structs cudnnFindConvolutionBackwardFilterAlgorithm() may
* want to populate.
*/
inline int MaxBackwardFilterAlgos(cudnnHandle_t cudnn_handle) {
#if CUDNN_MAJOR >= 7
int max_algos = 0;
CUDNN_CALL(cudnnGetConvolutionBackwardFilterAlgorithmMaxCount(cudnn_handle, &max_algos));
return max_algos;
#else
return 10;
#endif
}
/*!
* \brief Return max number of perf structs cudnnFindConvolutionBackwardDataAlgorithm()
* may want to populate.
* \param cudnn_handle cudnn handle needed to perform the inquiry.
* \return max number of perf structs cudnnFindConvolutionBackwardDataAlgorithm() may
* want to populate.
*/
inline int MaxBackwardDataAlgos(cudnnHandle_t cudnn_handle) {
#if CUDNN_MAJOR >= 7
int max_algos = 0;
CUDNN_CALL(cudnnGetConvolutionBackwardDataAlgorithmMaxCount(cudnn_handle, &max_algos));
return max_algos;
#else
return 10;
#endif
}
#endif // MXNET_USE_CUDNN
// Overload atomicAdd to work for floats on all architectures
#if defined(__CUDA_ARCH__) && __CUDA_ARCH__ < 600
// From CUDA Programming Guide
static inline __device__ void atomicAdd(double *address, double val) {
unsigned long long* address_as_ull = // NOLINT(*)
reinterpret_cast<unsigned long long*>(address); // NOLINT(*)
unsigned long long old = *address_as_ull; // NOLINT(*)
unsigned long long assumed; // NOLINT(*)
do {
assumed = old;
old = atomicCAS(address_as_ull, assumed,
__double_as_longlong(val +
__longlong_as_double(assumed)));
// Note: uses integer comparison to avoid hang in case of NaN (since NaN != NaN)
} while (assumed != old);
}
#endif
// Overload atomicAdd for half precision
// Taken from:
// https://github.com/torch/cutorch/blob/master/lib/THC/THCAtomics.cuh
#if defined(__CUDA_ARCH__)
static inline __device__ void atomicAdd(mshadow::half::half_t *address,
mshadow::half::half_t val) {
unsigned int *address_as_ui =
reinterpret_cast<unsigned int *>(reinterpret_cast<char *>(address) -
(reinterpret_cast<size_t>(address) & 2));
unsigned int old = *address_as_ui;
unsigned int assumed;
do {
assumed = old;
mshadow::half::half_t hsum;
hsum.half_ =
reinterpret_cast<size_t>(address) & 2 ? (old >> 16) : (old & 0xffff);
hsum += val;
old = reinterpret_cast<size_t>(address) & 2
? (old & 0xffff) | (hsum.half_ << 16)
: (old & 0xffff0000) | hsum.half_;
old = atomicCAS(address_as_ui, assumed, old);
} while (assumed != old);
}
static inline __device__ void atomicAdd(uint8_t *address, uint8_t val) {
unsigned int * address_as_ui = (unsigned int *) (address - ((size_t)address & 0x3));
unsigned int old = *address_as_ui;
unsigned int shift = (((size_t)address & 0x3) << 3);
unsigned int sum;
unsigned int assumed;
do {
assumed = old;
sum = val + static_cast<uint8_t>((old >> shift) & 0xff);
old = (old & ~(0x000000ff << shift)) | (sum << shift);
old = atomicCAS(address_as_ui, assumed, old);
} while (assumed != old);
}
static inline __device__ void atomicAdd(int8_t *address, int8_t val) {
unsigned int * address_as_ui = (unsigned int *) (address - ((size_t)address & 0x3));
unsigned int old = *address_as_ui;
unsigned int shift = (((size_t)address & 0x3) << 3);
unsigned int sum;
unsigned int assumed;
do {
assumed = old;
sum = val + static_cast<int8_t>((old >> shift) & 0xff);
old = (old & ~(0x000000ff << shift)) | (sum << shift);
old = atomicCAS(address_as_ui, assumed, old);
} while (assumed != old);
}
// Overload atomicAdd to work for signed int64 on all architectures
static inline __device__ void atomicAdd(int64_t *address, int64_t val) {
atomicAdd(reinterpret_cast<unsigned long long*>(address), static_cast<unsigned long long>(val)); // NOLINT
}
template <typename DType>
__device__ inline DType ldg(const DType* address) {
#if __CUDA_ARCH__ >= 350
return __ldg(address);
#else
return *address;
#endif
}
#endif
#endif // MXNET_COMMON_CUDA_UTILS_H_