Skip to content

Commit b98f396

Browse files
authored
Update index.md
1 parent e1202c4 commit b98f396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Major refactor of KernelAbstractions. In particular:
5151
- clarifies the semantics of `KA.copyto!` and adds `KA.pagelock!`
5252
- adds support for multiple devices per backend
5353

54-
#### 0.9.33
54+
#### 0.9.34
5555
Restricts the semantics of `@synchronize` to require convergent execution.
5656
The OpenCL backend had several miss-compilations due to divergent execution of `@synchronize`.
5757
The `CPU` backend always had this limitation and upon investigation the CUDA backend similarly requires convergent execution,
@@ -61,7 +61,7 @@ This highlighted a design flaw in KernelAbstractions. Most GPU implementations e
6161
This means a kernel with `ndrange=(32, 30)` might be executed on a static block of `(32,32)`. In order to block these extra indicies,
6262
KernelAbstraction would insert a dynamic boundscheck.
6363

64-
Prior to v0.9.33 a kernel like
64+
Prior to v0.9.34 a kernel like
6565

6666
```julia
6767
@kernel function localmem(A)

0 commit comments

Comments
 (0)