Skip to content

Commit 668b79c

Browse files
authored
Fix typo in docs.
[skip tests]
1 parent 0044ea2 commit 668b79c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/tutorials/performance.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# ### Limiting the Maximum Number of Registers Per Thread
2323

2424
# The number of threads that can be launched is partly determined by the number of registers a kernel uses. This is due to registers being shared between all threads on a multiprocessor.
25-
# Setting the maximum number of registers per thread will force less registers to be used which can increase thread count at the expense of having to spill registers into local memory, this may improve performance. To set the max registers to 32 use `@cuda max_registers=32`.
25+
# Setting the maximum number of registers per thread will force less registers to be used which can increase thread count at the expense of having to spill registers into local memory, this may improve performance. To set the max registers to 32 use `@cuda maxregs=32`.
2626

2727
# ### FastMath
2828

0 commit comments

Comments
 (0)