Document that JAX follows the NEP-29 deprecation policy.

Remove the "experimental" disclaimer from the concurrency documentation.
This commit is contained in:
Peter Hawkins 2021-04-21 11:10:38 -04:00
parent 8248837cf2
commit aafe8870ae
3 changed files with 12 additions and 4 deletions

View File

@ -1,10 +1,7 @@
Concurrency
===========
JAX has some limited support for Python concurrency.
Concurrency support is experimental and only lightly tested; please report any
bugs.
JAX has limited support for Python concurrency.
Clients may call JAX APIs (e.g., :func:`~jax.jit` or :func:`~jax.grad`)
concurrently from separate Python threads.

10
docs/deprecation.md Normal file
View File

@ -0,0 +1,10 @@
# Python and NumPy version support policy
JAX follows NumPy's [NEP-29 deprecation policy](https://numpy.org/neps/nep-0029-deprecation_policy.html). JAX supports at least:
* All minor versions of Python released 42 months prior to the project, and at minimum the two latest minor versions.
* All minor versions of numpy released in the 24 months prior to the project, and at minimum the last three minor versions.
JAX may support older versions of Python and NumPy, but support for older versions may be dropped at any time.

View File

@ -53,6 +53,7 @@ parallelize, Just-In-Time compile to GPU/TPU, and more.
:maxdepth: 1
:caption: Notes
deprecation
concurrency
gpu_memory_allocation
profiling