finish constraints.cu

This commit is contained in:
amdsc21 2023-03-09 22:43:51 +01:00
parent 309268de02
commit 1530c03f7d
2 changed files with 9 additions and 0 deletions

View File

@ -14,7 +14,12 @@
#include "xgboost/span.h"
#include "constraints.cuh"
#include "param.h"
#if defined(XGBOOST_USE_hip.CUDA)
#include "../common/device_helpers.cuh"
#elif defined(XGBOOST_USE_HIP)
#include "../common/device_helpers.hip.h"
#endif
namespace xgboost {

View File

@ -0,0 +1,4 @@
#if defined(XGBOOST_USE_HIP)
#include "constraints.cu"
#endif