Hey,
trying to run this program, but says it's going OOM, and that paging file is too small
I have 64gb ram and paging file is 96gb (set to automatic)
the test input mp3 file is 26kb
i'm unsure if manually increasing the page file is going to do much
how come this program needs this kind of memory to run?
(venv) A:\repos\audio2vmd\audio2vmd>python audio2vmd.py test.mp3
Traceback (most recent call last):
File "A:\repos\audio2vmd\audio2vmd\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 62, in <module>
from tensorflow.python._pywrap_tensorflow_internal import *
ImportError: DLL load failed while importing _pywrap_tensorflow_internal: The paging file is too small for this operation to complete.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 1, in <module>
Traceback (most recent call last):
File "A:\repos\audio2vmd\audio2vmd\venv\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 62, in <module>
from tensorflow.python._pywrap_tensorflow_internal import *
ImportError: DLL load failed while importing _pywrap_tensorflow_internal: The paging file is too small for this operation to complete.
im also not sure if this tool can use cuda, but it seems to want to run on cuda 11, which needs some manual setup with PATHS if cuda 12 is the default on the system
I have multiple cuda installed and it can be set for the shell session with:
set CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8
set PATH=%CUDA_PATH%\bin;%CUDA_PATH%\libnvvp;%PATH%
it no longer complains it can't find cuda v11, but it still fails due to page file, so not sure if it changes anything
Hey,
trying to run this program, but says it's going OOM, and that paging file is too small
I have 64gb ram and paging file is 96gb (set to automatic)
the test input mp3 file is 26kb
i'm unsure if manually increasing the page file is going to do much
how come this program needs this kind of memory to run?
im also not sure if this tool can use cuda, but it seems to want to run on cuda 11, which needs some manual setup with PATHS if cuda 12 is the default on the system
I have multiple cuda installed and it can be set for the shell session with:
it no longer complains it can't find cuda v11, but it still fails due to page file, so not sure if it changes anything