Dear DiffEq.jl users,
I have N-body parallel (independent) simulation. Roughly, after applying most important optimizations like non-allocating and avoiding globals, my simulation for N=1000 runs for 5mins. This is all after choosing the optimum algorithm (given the precision requirements) and saving very few datapoints. I need to optimize for one of the quantities after the simulation ends. It’s a function aggregating all N=1000 particles. Think like a total phase-space volume of all particles after some process.
I need to minimize this quantity (phase space volume at the end) by tuning some of parameters of the diff equation. Given the long computation time of the problem, running typical parameter optimization via Recommended Methods · DiffEqParamEstim.jl does not work very well for me, as it does not shy on running the solver over and over again (I believe it assumes that running the diffeq should be fairly fast). I thought of using Surrogates.jl as it might handle high-cost optimizations better. I’m not so sure how to handle this issue properly.
Perhaps some of the more experienced members of the community could help out?