Dear All,
Let's say I have a NLP which looks like following:
x = MX.sym('x')
y = MX.sym('y')
f = Function('f', [y, x], [some_function(y, x)])
N = data.shape[1]
f_map = f.map('f_map', N, 'openmp', [1], [])
nlp = {'x' : x, 'f' : sum2(f_map(data, x))}
solver = nlpsol('NLPSolver', 'ipopt', nlp)
solution = solver()
The question is: will I have parallel evaluation of the gradient and Hessian inside the solver?
Best regards,
Mikhail