JuliaSmoothOptimizers / SolverTools.jl

Tools for developing nonlinear optimization solvers.
Other
26 stars 18 forks source link

fix BLAS operations #87

Closed amontoison closed 5 years ago

amontoison commented 5 years ago

Each operation needs to be vectorized. Otherwise, we allocate tempory vectors. It's why the macro @. is useful, we are sure to don't miss one.

amontoison commented 5 years ago

We don't mess with memory allocations :wink:

abelsiqueira commented 5 years ago

Thanks