| 881 | } // namespace |
| 882 | |
| 883 | XGB_DLL int XGDMatrixGetFloatInfo(const DMatrixHandle handle, const char *field, |
| 884 | xgboost::bst_ulong *out_len, const float **out_dptr) { |
| 885 | return OldGetInfoImpl(handle, field, out_len, out_dptr, DataType::kFloat32); |
| 886 | } |
| 887 | |
| 888 | XGB_DLL int XGDMatrixGetUIntInfo(const DMatrixHandle handle, const char *field, |
| 889 | xgboost::bst_ulong *out_len, const unsigned **out_dptr) { |
no test coverage detected