mirror of
https://github.com/ROCm/jax.git
synced 2025-04-18 12:56:07 +00:00

The `jax.experimental.stax` and `jax.experimental.optimizers` modules are standalone examples libraries. By contrast, the remaining modules in `jax.experimental` are experimental features of the JAX core system. This change moves the two example libraries, and the README that describes them, to `jax.example_libraries` to reflect this distinction. PiperOrigin-RevId: 404405186
19 lines
866 B
INI
19 lines
866 B
INI
[pytest]
|
|
filterwarnings =
|
|
error
|
|
ignore:No GPU/TPU found, falling back to CPU.:UserWarning
|
|
ignore:outfeed_receiver is unnecessary and deprecated:DeprecationWarning
|
|
# xmap
|
|
ignore:xmap is an experimental feature and probably has bugs!
|
|
# The rest are for experimental/jax_to_tf
|
|
ignore:the imp module is deprecated in favour of importlib.*:DeprecationWarning
|
|
ignore:can't resolve package from __spec__ or __package__:ImportWarning
|
|
ignore:Using or importing the ABCs.*:DeprecationWarning
|
|
# jax2tf tests due to mix of JAX and TF
|
|
ignore:numpy.ufunc size changed
|
|
ignore:.*experimental feature
|
|
ignore:index.*is deprecated.*:DeprecationWarning
|
|
ignore:jax.experimental.* is deprecated, import jax.example_libraries.* instead:FutureWarning
|
|
doctest_optionflags = NUMBER NORMALIZE_WHITESPACE
|
|
addopts = --doctest-glob="*.rst"
|