-
Beta Was this translation helpful? Give feedback.
Answered by
jakevdp
Feb 4, 2022
Replies: 1 comment 5 replies
-
pmap_mm = pmap(vmap_mv, in_axes=(None, 1), out_axes=1)
pmap_mm(aaa, aaa) That is, don't use |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
oconnoob
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pmap
has a similar API asvmap
, so I suspect what you want is this:That is, don't use
pmap
in addition tovmap
, usepmap
in place ofvmap
.