small typo fix (#2799)

This commit is contained in:
Yufeng 2020-04-22 17:27:33 -04:00 committed by GitHub
parent 3f8c73593d
commit aee18c8860
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,7 +269,7 @@ For parallel programming of multiple accelerators, like multiple GPUs, use
With `pmap` you write single-program multiple-data (SPMD) programs, including
fast parallel collective communication operations. Applying `pmap` will mean
that the function you write is compiled by XLA (similarly to `jit`), then
replicated and executed in parallel accross devices.
replicated and executed in parallel across devices.
Here's an example on an 8-GPU machine: