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
import jax
import numpy as onp
In [9]: %time x = jax.device_put([onp.random.randn(10,5) for _ in range(100)])
CPU times: user 1.45 s, sys: 7.8 ms, total: 1.46 s
Wall time: 1.45 s
In [10]: %time x = jax.device_put([onp.random.randn(10,5) for _ in range(500)])
CPU times: user 24.8 s, sys: 0 ns, total: 24.8 s
Wall time: 24.8 s
In [11]: %time x = jax.device_put([onp.random.randn(10,5) for _ in range(700)])
CPU times: user 45.2 s, sys: 190 ms, total: 45.4 s
Wall time: 45.4 s