luinardi / hypermapper

Black-box Optimizer based on Bayesian Optimization
MIT License
154 stars 26 forks source link

Hypermapper fails when calling threadpool_limits(limits=1) (line 536 in local_search()) #89

Open anormanhogan opened 1 year ago

anormanhogan commented 1 year ago

Any time I begin the optimizer, I get an error that stems from the local_search() script when threadpool_limits() is called. Beyond that, the error further propogates into threadpoolctl until it ends with: File ~/anaconda3/lib/python3.10/site-packages/threadpoolctl.py:646, in _OpenBLASModule.get_version(self) 643 get_config = getattr(self._dynlib, "openblas_get_config", 644 lambda: None) 645 get_config.restype = ctypes.c_char_p --> 646 config = get_config().split() 647 if config[0] == b"OpenBLAS": 648 return config[1].decode("utf-8")

AttributeError: 'NoneType' object has no attribute 'split'

Any idea why this might be happening? Everything is updated to its current version. Thanks in advance!