Solver: out of memory #1293
-
|
While running a model with approximately 196 million non zero values in GridPath 0.9 (Python Version 3.9.13) on a system with 128 GB ram following error was received: Concurrent LP optimizer: dual simplex and barrier Traceback (most recent call last): |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
hi, i am also facing the memory insufficient issue, do u figure it out ? many thanks! |
Beta Was this translation helpful? Give feedback.
-
|
The log says that solver is running in concurrent mode, which means both simplex and barrier are trying to solve at the same time on a large model. Switching to barrier only should work. |
Beta Was this translation helpful? Give feedback.
The log says that solver is running in concurrent mode, which means both simplex and barrier are trying to solve at the same time on a large model. Switching to barrier only should work.