We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f608d82 commit 4f4b991Copy full SHA for 4f4b991
src/ptx.jl
@@ -59,9 +59,8 @@ llvm_datalayout(target::PTXCompilerTarget) =
59
# little endian
60
"e-" *
61
# on 32-bit systems, use 32-bit pointers.
62
- # on 64-bit systems, use 64-bit pointers, but prefer 32-bit indexing.
63
- # this is not what the NVPTX user guide recommends, but helps for performance.
64
- (Int === Int64 ? "p:64:64:64:32-" : "p:32:32:32-") *
+ # on 64-bit systems, use 64-bit pointers.
+ (Int === Int64 ? "p:64:64:64-" : "p:32:32:32-") *
65
# alignment of integer types
66
"i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-" *
67
# alignment of floating point types
0 commit comments