1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/development/python-modules/jax/test-cuda.nix
2024-05-22 17:32:03 +02:00

26 lines
332 B
Nix

{
jax,
jaxlib,
pkgs,
}:
pkgs.writers.writePython3Bin "jax-test-cuda"
{
libraries = [
jax
jaxlib
];
}
''
import jax
from jax import random
assert jax.devices()[0].platform == "gpu"
rng = random.PRNGKey(0)
x = random.normal(rng, (100, 100))
x @ x
print("success!")
''