convert gpu lib to use c++-style include files

This commit is contained in:
Axel Kohlmeyer
2018-05-08 00:25:10 -04:00
parent ff6507e7b7
commit 3394d18a2a
60 changed files with 60 additions and 60 deletions

View File

@ -300,7 +300,7 @@
#ifndef __CUDPP_H__
#define __CUDPP_H__
#include <stdlib.h> // for size_t
#include <cstdlib> // for size_t
#ifdef __cplusplus
extern "C" {

View File

@ -16,7 +16,7 @@
//#include "cudpp_spmvmult.h"
#include "cudpp_radixsort.h"
#include <assert.h>
#include <cassert>
CUDPPPlanManager* CUDPPPlanManager::m_instance = NULL;

View File

@ -25,7 +25,7 @@
#include <cuda.h>
#include <cudpp.h>
#include <limits.h>
#include <float.h>
#include <cfloat>
#if (CUDA_VERSION >= 3000)
#define LAUNCH_BOUNDS(x) __launch_bounds__((x))