I started getting the following warning repeatedly when running my PyTorch Lightning deep learning scripts, at execution start and then all through the training:
"OMP: Info #276: omp_set_nested routine deprecated, please use omp_set_max_active_levels instead."
I get them when executing the main.py script; my scripts are publicly available here.
Symptoms:
Thanks for taking the time to reply!
I managed to sort myself out in the end. I spotted the numba package in my miniconda env, which is a Python compiler and that seemed to be the root of the problem. It was version 0.55.2 but the last version to date is 0.56.0. Trying to upgrade it via conda or pip didn't work for some reason (the 0.55.2 version couldn't be replaced). I recreated my env step by step, and noticed this package comes with torch-audiomentations, a package for audio data augmentation for deep learning, under torch, that I use. Re-installing it had numba version 0.56.0 installed properly, and the warnings disappeared.