1
Fork 0
This repository has been archived on 2026-08-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2026SEL3-project-Brittle_St.../tests/test_jax_init.py

7 lines
209 B
Python

import jax
def test_jax_initializes():
"""Verify that JAX initializes and exposes at least one device."""
devices = jax.devices()
assert len(devices) > 0, "JAX should expose at least one device"