Why is MEM_STATIC capped at 8191?
Q-Chem warning in module libmdc/get_mega.C, line 167:
Allowed MEM_STATIC has been capped at MEM_STATIC=8191
Why is MEM_STATIC capped at 8191?
Q-Chem warning in module libmdc/get_mega.C, line 167:
Allowed MEM_STATIC has been capped at MEM_STATIC=8191
Has been for a few versions now, part of a move away from F77-style static memory. Memory bottleneck steps for most types of calculations have been migrated into C code (dynamic memory allocation), and are thus controlled by MEM_TOTAL.
Thank you for the information.