You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment the nla() function takes an array as input and returns the modified array as output, but this creates a lot of allocations inside for loops. The new function call nla!() should take in the array to be modified and a preallocated array to store the modified array in. This should remove unneeded allocations and speed up computations.
The text was updated successfully, but these errors were encountered:
At the moment the
nla()
function takes an array as input and returns the modified array as output, but this creates a lot of allocations insidefor
loops. The new function callnla!()
should take in the array to be modified and a preallocated array to store the modified array in. This should remove unneeded allocations and speed up computations.The text was updated successfully, but these errors were encountered: