Parallel many dimensional optimization

后端 未结 7 1934
萌比男神i
萌比男神i 2021-02-07 20:48

I am building a script that generates input data [parameters] for another program to calculate. I would like to optimize the resulting data. Previously I have been using the num

7条回答
  •  执念已碎
    2021-02-07 21:13

    You could do parallel at two parts: 1) parallel the calculation of single iteration or 2) parallel start N initial guessing.

    On 2) you need a job controller to control the N initial guess discovery threads.

    Please add an extra output on your program: "lower bound" that indicates the output values of current input parameter's decents wont lower than this lower bound.

    The initial N guessing thread can compete with each other; if any one thread's lower bound is higher than existing thread's current value, then this thread can be dropped by your job controller.

提交回复
热议问题