| 475 | } |
| 476 | |
| 477 | XGB_DLL int XGProxyDMatrixSetDataDense(DMatrixHandle handle, char const *data) { |
| 478 | API_BEGIN(); |
| 479 | CHECK_HANDLE(); |
| 480 | xgboost_CHECK_C_ARG_PTR(data); |
| 481 | GetDMatrixProxy(handle)->SetArray(data); |
| 482 | API_END(); |
| 483 | } |
| 484 | |
| 485 | XGB_DLL int XGProxyDMatrixSetDataCSR(DMatrixHandle handle, char const *indptr, char const *indices, |
| 486 | char const *data, xgboost::bst_ulong ncol) { |
no test coverage detected