Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ julia> b = fill(2.0, n);
julia> c = a .+ b;
```

To do the same computation on the GPU, we first need to copy the
host arrays to the device and then simply add them together element-wise:
To do the same computation on the GPU, we first need to copy
the host arrays to the device and then simply add them together element-wise:

```jldoctest simple-example
julia> a_d = ROCArray(a);
Expand Down