▽Eli Bendersky’s website ●02/05 10:55 Decorator JITs - Python as a DSLFebruary 03, 2025 at 06:22Spend enough time looking at Python programs and packages for machine learning,and you'll notice that the "JIT decorator" pattern is pretty popular. Forexample, this JAX snippet:import jax.numpy as jnp import jax @jax.jit def add(a, b): return jnp.add(a, b) # Use "add" as a regular Python function ... = add(...)Or the Triton language