Skip to content

Commit

Permalink
Replace ROCArrays with AMDGPU in docs (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
pxl-th authored Jan 9, 2024
1 parent c5c0d34 commit 3dc64b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ A = CuArray(ones(1024, 1024))
```

```julia
using ROCArrays: ROCArray
using AMDGPU: ROCArray
A = ROCArray(ones(1024, 1024))
```

Expand All @@ -75,7 +75,7 @@ all(A .== 2.0)
## Synchronization
!!! danger
All kernel launches are asynchronous, use [`synchronize(backend)`](@ref)
to wait on a series of kernel launches.
to wait on a series of kernel launches.

The code around KA may heavily rely on
[`GPUArrays`](https://github.com/JuliaGPU/GPUArrays.jl), for example, to
Expand Down

0 comments on commit 3dc64b9

Please sign in to comment.