Is there a way to output the start_system used in the calculation #556
Answered
by
saschatimme
jasonrong001
asked this question in
Q&A
-
I am trying to solve a set polynomial equations, the system is quite big. When running on a small workstation, the program takes up all the memories and is killed by the system. I am wondering if it is possible to output the start_system (I am using the total degree system) so that I can break the calculation into small parts which are less memory-demanding. |
Beta Was this translation helpful? Give feedback.
Answered by
saschatimme
Aug 22, 2023
Replies: 1 comment 2 replies
-
There are multiple options here:
This reduces the amount of code generation which is most likely the reason that your are running out of memory |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
jasonrong001
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are multiple options here:
compile
option in solve to:none
, i.e.This reduces the amount of code generation which is most likely the reason that your are running out of memory