File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 5353
5454intersphinx_mapping = {
5555 "python" : ("https://docs.python.org/3" , None ),
56+ "jax" : ("https://jax.readthedocs.io/en/latest" , None ),
5657}
5758
5859nitpick_ignore = [
Original file line number Diff line number Diff line change @@ -309,6 +309,7 @@ checks = [
309309 " ES01" ,
310310]
311311exclude = [ # don't report on objects that match any of these regex
312+ ' .*test_at.*' ,
312313 ' .*test_funcs.*' ,
313314 ' .*test_utils.*' ,
314315 ' .*test_version.*' ,
Original file line number Diff line number Diff line change @@ -566,7 +566,7 @@ class at: # pylint: disable=invalid-name # numpydoc ignore=PR02
566566 x : array
567567 Input array.
568568 idx : index, optional
569- Only `Array API compliant indices
569+ Only `array API standard compliant indices
570570 <https://data-apis.org/array-api/latest/API_specification/indexing.html>`_
571571 are supported.
572572
@@ -623,8 +623,7 @@ class at: # pylint: disable=invalid-name # numpydoc ignore=PR02
623623
624624 See Also
625625 --------
626- jax.numpy.ndarray.at : `docs
627- <https://jax.readthedocs.io/en/latest/_autosummary/jax.numpy.ndarray.at.html>`_.
626+ jax.numpy.ndarray.at : Equivalent array method in JAX.
628627
629628 Notes
630629 -----
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ from types import ModuleType
44
55from ._typing import Array , Device
66
7+ # pylint: disable=missing-class-docstring,unused-argument
8+
79class ArrayModule (ModuleType ):
810 def device (self , x : Array , / ) -> Device : ...
911
You can’t perform that action at this time.
0 commit comments