diff options
author | LadyRick <ladyrick@qq.com> | 2018-08-14 10:02:42 -0700 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2018-08-14 10:11:15 -0700 |
commit | 3a40baa15cd845fbea17daeb12ed0e240c282839 (patch) | |
tree | 030f8ba01d9c57582c7632d7cbb31ed45f7bb938 /README.md | |
parent | ef44faece2cd4045f58cbbac6c74842b84ac6c45 (diff) | |
download | pytorch-3a40baa15cd845fbea17daeb12ed0e240c282839.tar.gz pytorch-3a40baa15cd845fbea17daeb12ed0e240c282839.tar.bz2 pytorch-3a40baa15cd845fbea17daeb12ed0e240c282839.zip |
fix a grammatical error: accelerate compute (#10204)
Summary:
"accelerate compute"
a verb shouldn't go with another verb.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/10204
Differential Revision: D9316699
Pulled By: fmassa
fbshipit-source-id: f1126c594905c3236ffd6b7e57a92552d3d4c1f1
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,8 +56,8 @@ If you use NumPy, then you have used Tensors (a.k.a ndarray). ![Tensor illustration](https://github.com/pytorch/pytorch/blob/master/docs/source/_static/img/tensor_illustration.png) -PyTorch provides Tensors that can live either on the CPU or the GPU, and accelerate -compute by a huge amount. +PyTorch provides Tensors that can live either on the CPU or the GPU, and accelerates the +computation by a huge amount. We provide a wide variety of tensor routines to accelerate and fit your scientific computation needs such as slicing, indexing, math operations, linear algebra, reductions. |