You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the fit method of the XGBClassifier with any data, and n_jobs set to any value greater than 74780, a segfault occurs.
This is likely a platform specific value, 2^17 seems to be a consistently crashing value across machines, and so is used in the example
Steps to reproduce
This error occured using the python module, version 2.1.1, here is the full set of python modules:
What is the issue
When running the
fit
method of theXGBClassifier
with any data, and n_jobs set to any value greater than 74780, a segfault occurs.This is likely a platform specific value,
2^17
seems to be a consistently crashing value across machines, and so is used in the exampleSteps to reproduce
This error occured using the python module, version
2.1.1
, here is the full set of python modules:This persists across python
3.8
to3.13
This was run on
Ubuntu 22.04.5 LTS
, onAMD EPYC-Milan
with32GB
Memory.The code is:
running this:
> python3.13 segfault_xgboost.py Segmentation fault (core dumped)
running this with gdb to obtain the backtrace at the segfault gives:
Expected behaviour
To receive an error code for resource acquisition as with smaller values:
The text was updated successfully, but these errors were encountered: