edbennett / performant-numpy

A lesson on ways to write Numpy code that is performant
Other
1 stars 2 forks source link

Change the usage signature for generalised ufunc #11

Closed chillenzer closed 2 years ago

chillenzer commented 2 years ago

Replace

result = g(x, 5, result)

with

result = g(x, 5)
chillenzer commented 2 years ago

Sorry, realised that this is literally the next line of the script.