File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ Running the Unit Tests
8787To run all of the package unit tests, download and unpack the package source
8888tarball and run::
8989
90- python setup.py tests
90+ python setup.py test
9191
9292from within the main directory in the archive. Tests for individual
9393modules (found in the ``tests/ `` subdirectory) can also be run
Original file line number Diff line number Diff line change @@ -983,7 +983,7 @@ def add(x_gpu, y_gpu):
983983
984984 Notes
985985 -----
986- The `out` and `stream` options not supported because `GPUArray.__add__`
986+ The `out` and `stream` options are not supported because `GPUArray.__add__`
987987 doesn't provide them.
988988 """
989989
@@ -1008,7 +1008,7 @@ def subtract(x_gpu, y_gpu):
10081008
10091009 Notes
10101010 -----
1011- The `out` and `stream` options not supported because `GPUArray.__sub__`
1011+ The `out` and `stream` options are not supported because `GPUArray.__sub__`
10121012 doesn't provide them.
10131013 """
10141014
@@ -1033,7 +1033,7 @@ def multiply(x_gpu, y_gpu):
10331033
10341034 Notes
10351035 -----
1036- The `out` and `stream` options not supported because `GPUArray.__mul__`
1036+ The `out` and `stream` options are not supported because `GPUArray.__mul__`
10371037 doesn't provide them.
10381038 """
10391039
@@ -1058,7 +1058,7 @@ def divide(x_gpu, y_gpu):
10581058
10591059 Notes
10601060 -----
1061- The `out` and `stream` options not supported because `GPUArray.__div__`
1061+ The `out` and `stream` options are not supported because `GPUArray.__div__`
10621062 doesn't provide them.
10631063 """
10641064
You can’t perform that action at this time.
0 commit comments