OpenBLAS malloc

I got this:

OpenBLAS: malloc failed in dsyrk_thread_UT
julia> versioninfo()
Julia Version 1.7.0
Commit 3bf9d17731 (2021-11-30 12:12 UTC)
Platform Info:
  OS: Windows (x86_64-w64-mingw32)
  CPU: Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-12.0.1 (ORCJIT, skylake)
Environment:
  JULIA_PKG_PRECOMPILE_AUTO = 0

julia> Threads.nthreads()
4

Unfortunately I can not share my script. Any ideas what might cause this or how to debug it?
I will try to reduce my script as much as possible in order to come up with a MWE.

Did you run out of memory?

How would I check for that? Simply in the task manager or resource monitor? Top was 90%

yeah. That would be the problem then. BLAS is trying to allocate a buffer somewhere and is failing because you are out of memory.

So nothing I can do?

Your 2 options are to figure out what is using all the RAM in your computation. It’s possible that this could be fixed by lowering RAM use elsewhere. It’s also possible that you just need more RAM to run the calculation.