Replies: 1 comment
-
When you use batchrunner, it is using multiple processors, but only one processor will output to the screen. Due these challenges debugging with multiple processors is very difficult. It is best to only use 1 processor for debugging and verifying your code, and then use multiple processors when running to get your results and conduct parameter sweeps. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a simple simulation that runs correctly by itself or with visualization, but when I try to run it with batch runner, the initial condition is lost sometime and the run failed. Any help is welcome. I am very lost. This is run in init in model
Here is part of the print out:
...
pa> pa68:(4, 2)
pa> pa69:(4, 1)
pa> pa70:(4, 0)
pa1:None
pa2:None
pa3:None
...
You can see when I create the variable, it has the value for pos, but when I print it out after I created them, the pos value is gone. This only happens when I use batch_run. Anyone has any idea where I should look for answers or what could be going on?
Beta Was this translation helpful? Give feedback.
All reactions