Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/cunn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 22f490f..6d8609c 100644
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ local a = torch.CudaTensor(1000,1000):uniform()
a:add(1)
```
... the GPU kernel to add 1 will only be scheduled for launch by `a:add(1)`. It might not have completed yet, or
-even have reached the GPU, at the time that the `a:add(1)` instructions has completed
+even have reached the GPU, at the time that the `a:add(1)` returns
* therefore for running wall-clock timings, you should call `cutorch.synchronize()` before each timecheck
point:
```lua