Fix typo in maps.py

conjuction -> conjunction
This commit is contained in:
Ikko Eltociear Ashimine 2023-02-21 17:22:11 +09:00 committed by GitHub
parent 9e209a181c
commit 28f89f6244
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -398,7 +398,7 @@ def xmap(fun: Callable,
Note that the contraction in the program is performed over the positional axes,
while named axes are just a convenient way to achieve batching. While this
might seem like a silly example at first, it might turn out to be useful in
practice, since with conjuction with ``axis_resources`` this makes it possible
practice, since with conjunction with ``axis_resources`` this makes it possible
to implement a distributed matrix-multiplication in just a few lines of code::
devices = np.array(jax.devices())[:4].reshape((2, 2))