Hi,
I'm using DaemonMode, and it works fine. However, I'm now calling the solver in parallel with the same script. To make use of multiprocessing, I tried starting the server with julia -t auto .... However, using this, the clients run into problems when executing the code (seems like they access the variables of each other).
Using julia -p auto everything works fine, but it seems like the clients are still called sequentielly (at least the total runtime is the same as using no -p flag)
What could be the cause of this?