Teaching NumPy’s ufuncs new tricks

Lobsters Hottest Tools

Summary

This article teaches new techniques and tricks for using universal functions (ufuncs) in NumPy, a Python library for numerical computing.

<p><a href="https://lobste.rs/s/fvdo91/teaching_numpy_s_ufuncs_new_tricks">Comments</a></p>
Original Article

Similar Articles

Scaling NumPy on Free-Threaded Python

Lobsters Hottest

The article discusses efforts to improve NumPy's performance on free-threaded Python (Python without the Global Interpreter Lock), enabling better parallelism and scalability.

Tracing np.add, all the way down

Hacker News Top

This blog post traces the execution of NumPy's np.add function from Python down to C, explaining the internal machinery and SIMD optimization involved in numerical addition.