finished histogram.cu

This commit is contained in:
amdsc21
2023-03-09 21:28:37 +01:00
parent f67e7de7ef
commit 0ed5d3c849
6 changed files with 69 additions and 2 deletions

View File

@@ -13,10 +13,14 @@
#include <string>
#include <vector>
#if defined(__CUDACC__) || defined(__HIP_PLATFORM_AMD__)
#if defined(__CUDACC__)
#include <thrust/copy.h>
#include <thrust/device_ptr.h>
#include "device_helpers.cuh"
#elif defined(__HIP_PLATFORM_AMD__)
#include <thrust/copy.h>
#include <thrust/device_ptr.h>
#include "device_helpers.hip.h"
#endif // defined(__CUDACC__) || defined(__HIP_PLATFORM_AMD__)
#include "xgboost/span.h"