| 451 | } // namespace |
| 452 | |
| 453 | XGB_DLL int XGProxyDMatrixSetDataCudaArrayInterface(DMatrixHandle handle, char const *data) { |
| 454 | API_BEGIN(); |
| 455 | CHECK_HANDLE(); |
| 456 | xgboost_CHECK_C_ARG_PTR(data); |
| 457 | GetDMatrixProxy(handle)->SetCudaArray(data); |
| 458 | API_END(); |
| 459 | } |
| 460 | |
| 461 | XGB_DLL int XGProxyDMatrixSetDataCudaColumnar(DMatrixHandle handle, char const *data) { |
| 462 | API_BEGIN(); |
nothing calls this directly
no test coverage detected