File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ all(A .== 2.0)
50
50
argument to the kernel. See [ dependencies] (@ref dependencies) for a full
51
51
explanation.
52
52
53
- ## Important difference to Julia
53
+ ## Important differences to Julia
54
54
55
55
1 . Functions inside kernels are forcefully inlined, except when marked with ` @noinline ` .
56
56
2 . Floating-point multiplication, addition, subtraction are marked contractable.
@@ -61,6 +61,13 @@ all(A .== 2.0)
61
61
provided ` ndrange ` .
62
62
2 . Functions like ` Base.sin ` are mapped to ` CUDAnative.sin ` .
63
63
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
+
64
71
## How to debug kernels
65
72
66
73
* TODO*
You can’t perform that action at this time.
0 commit comments