remove some hip.h

This commit is contained in:
amdsc21 2023-06-07 03:39:01 +02:00
parent af8845405a
commit ce345c30a8
2 changed files with 0 additions and 10 deletions

View File

@ -3,11 +3,7 @@
*/ */
#include "../common/api_entry.h" // XGBAPIThreadLocalEntry #include "../common/api_entry.h" // XGBAPIThreadLocalEntry
#include "../common/threading_utils.h" #include "../common/threading_utils.h"
#if defined(XGBOOST_USE_CUDA)
#include "../data/device_adapter.cuh" #include "../data/device_adapter.cuh"
#elif defined(XGBOOST_USE_HIP)
#include "../data/device_adapter.hip.h"
#endif
#include "../data/proxy_dmatrix.h" #include "../data/proxy_dmatrix.h"
#include "c_api_error.h" #include "c_api_error.h"
#include "c_api_utils.h" #include "c_api_utils.h"

View File

@ -14,15 +14,9 @@
#include "../common/bitfield.h" #include "../common/bitfield.h"
#include "../common/categorical.h" #include "../common/categorical.h"
#include "../common/common.h" #include "../common/common.h"
#if defined(XGBOOST_USE_CUDA)
#include "../common/device_helpers.cuh" #include "../common/device_helpers.cuh"
#include "../data/device_adapter.cuh" #include "../data/device_adapter.cuh"
#include "../data/ellpack_page.cuh" #include "../data/ellpack_page.cuh"
#elif defined(XGBOOST_USE_HIP)
#include "../common/device_helpers.hip.h"
#include "../data/device_adapter.hip.h"
#include "../data/ellpack_page.hip.h"
#endif
#include "../data/proxy_dmatrix.h" #include "../data/proxy_dmatrix.h"
#include "../gbm/gbtree_model.h" #include "../gbm/gbtree_model.h"
#include "predict_fn.h" #include "predict_fn.h"