Skip to content

Commit e0e7fee

Browse files
committed
document differences to GPUifyLoops
1 parent 2717bf6 commit e0e7fee

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

docs/src/index.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ all(A .== 2.0)
5050
argument to the kernel. See [dependencies](@ref dependencies) for a full
5151
explanation.
5252

53-
## Important difference to Julia
53+
## Important differences to Julia
5454

5555
1. Functions inside kernels are forcefully inlined, except when marked with `@noinline`.
5656
2. Floating-point multiplication, addition, subtraction are marked contractable.
@@ -61,6 +61,13 @@ all(A .== 2.0)
6161
provided `ndrange`.
6262
2. Functions like `Base.sin` are mapped to `CUDAnative.sin`.
6363

64+
## Important differences to GPUifyLoops
65+
66+
1. `@scratch` has been renamed to `@private`, and the semantics have changed. Instead
67+
of denoting how many dimensions are implicit on the GPU, you only ever provide the
68+
explicit number of dimensions that you require. The implicit CPU dimensions are
69+
appended.
70+
6471
## How to debug kernels
6572

6673
*TODO*

0 commit comments

Comments
 (0)