clang 23.0.0git
__clang_cuda_intrinsics.h
Go to the documentation of this file.
1/*===--- __clang_cuda_intrinsics.h - Device-side CUDA intrinsic wrappers ---===
2 *
3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 * See https://llvm.org/LICENSE.txt for license information.
5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 *
7 *===-----------------------------------------------------------------------===
8 */
9#ifndef __CLANG_CUDA_INTRINSICS_H__
10#define __CLANG_CUDA_INTRINSICS_H__
11#ifndef __CUDA__
12#error "This file is for CUDA compilation only."
13#endif
14
15// sm_30 intrinsics: __shfl_{up,down,xor}.
16
17#define __SM_30_INTRINSICS_H__
18#define __SM_30_INTRINSICS_HPP__
19
20#if !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 300
21
22#pragma push_macro("__MAKE_SHUFFLES")
23#define __MAKE_SHUFFLES(__FnName, __IntIntrinsic, __FloatIntrinsic, __Mask, \
24 __Type) \
25 inline __device__ int __FnName(int __val, __Type __offset, \
26 int __width = warpSize) { \
27 return __IntIntrinsic(__val, __offset, \
28 ((warpSize - __width) << 8) | (__Mask)); \
29 } \
30 inline __device__ float __FnName(float __val, __Type __offset, \
31 int __width = warpSize) { \
32 return __FloatIntrinsic(__val, __offset, \
33 ((warpSize - __width) << 8) | (__Mask)); \
34 } \
35 inline __device__ unsigned int __FnName(unsigned int __val, __Type __offset, \
36 int __width = warpSize) { \
37 return static_cast<unsigned int>( \
38 ::__FnName(static_cast<int>(__val), __offset, __width)); \
39 } \
40 inline __device__ long long __FnName(long long __val, __Type __offset, \
41 int __width = warpSize) { \
42 struct __Bits { \
43 int __a, __b; \
44 }; \
45 _Static_assert(sizeof(__val) == sizeof(__Bits)); \
46 _Static_assert(sizeof(__Bits) == 2 * sizeof(int)); \
47 __Bits __tmp; \
48 memcpy(&__tmp, &__val, sizeof(__val)); \
49 __tmp.__a = ::__FnName(__tmp.__a, __offset, __width); \
50 __tmp.__b = ::__FnName(__tmp.__b, __offset, __width); \
51 long long __ret; \
52 memcpy(&__ret, &__tmp, sizeof(__tmp)); \
53 return __ret; \
54 } \
55 inline __device__ long __FnName(long __val, __Type __offset, \
56 int __width = warpSize) { \
57 _Static_assert(sizeof(long) == sizeof(long long) || \
58 sizeof(long) == sizeof(int)); \
59 if (sizeof(long) == sizeof(long long)) { \
60 return static_cast<long>( \
61 ::__FnName(static_cast<long long>(__val), __offset, __width)); \
62 } else if (sizeof(long) == sizeof(int)) { \
63 return static_cast<long>( \
64 ::__FnName(static_cast<int>(__val), __offset, __width)); \
65 } \
66 } \
67 inline __device__ unsigned long __FnName( \
68 unsigned long __val, __Type __offset, int __width = warpSize) { \
69 return static_cast<unsigned long>( \
70 ::__FnName(static_cast<long>(__val), __offset, __width)); \
71 } \
72 inline __device__ unsigned long long __FnName( \
73 unsigned long long __val, __Type __offset, int __width = warpSize) { \
74 return static_cast<unsigned long long>( \
75 ::__FnName(static_cast<long long>(__val), __offset, __width)); \
76 } \
77 inline __device__ double __FnName(double __val, __Type __offset, \
78 int __width = warpSize) { \
79 long long __tmp; \
80 _Static_assert(sizeof(__tmp) == sizeof(__val)); \
81 memcpy(&__tmp, &__val, sizeof(__val)); \
82 __tmp = ::__FnName(__tmp, __offset, __width); \
83 double __ret; \
84 memcpy(&__ret, &__tmp, sizeof(__ret)); \
85 return __ret; \
86 }
87
88__MAKE_SHUFFLES(__shfl, __nvvm_shfl_idx_i32, __nvvm_shfl_idx_f32, 0x1f, int);
89// We use 0 rather than 31 as our mask, because shfl.up applies to lanes >=
90// maxLane.
91__MAKE_SHUFFLES(__shfl_up, __nvvm_shfl_up_i32, __nvvm_shfl_up_f32, 0,
92 unsigned int);
93__MAKE_SHUFFLES(__shfl_down, __nvvm_shfl_down_i32, __nvvm_shfl_down_f32, 0x1f,
94 unsigned int);
95__MAKE_SHUFFLES(__shfl_xor, __nvvm_shfl_bfly_i32, __nvvm_shfl_bfly_f32, 0x1f,
96 int);
97#pragma pop_macro("__MAKE_SHUFFLES")
98
99#endif // !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 300
100
101#if CUDA_VERSION >= 9000
102#if (!defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 300)
103// __shfl_sync_* variants available in CUDA-9
104#pragma push_macro("__MAKE_SYNC_SHUFFLES")
105#define __MAKE_SYNC_SHUFFLES(__FnName, __IntIntrinsic, __FloatIntrinsic, \
106 __Mask, __Type) \
107 inline __device__ int __FnName(unsigned int __mask, int __val, \
108 __Type __offset, int __width = warpSize) { \
109 return __IntIntrinsic(__mask, __val, __offset, \
110 ((warpSize - __width) << 8) | (__Mask)); \
111 } \
112 inline __device__ float __FnName(unsigned int __mask, float __val, \
113 __Type __offset, int __width = warpSize) { \
114 return __FloatIntrinsic(__mask, __val, __offset, \
115 ((warpSize - __width) << 8) | (__Mask)); \
116 } \
117 inline __device__ unsigned int __FnName(unsigned int __mask, \
118 unsigned int __val, __Type __offset, \
119 int __width = warpSize) { \
120 return static_cast<unsigned int>( \
121 ::__FnName(__mask, static_cast<int>(__val), __offset, __width)); \
122 } \
123 inline __device__ long long __FnName(unsigned int __mask, long long __val, \
124 __Type __offset, \
125 int __width = warpSize) { \
126 struct __Bits { \
127 int __a, __b; \
128 }; \
129 _Static_assert(sizeof(__val) == sizeof(__Bits)); \
130 _Static_assert(sizeof(__Bits) == 2 * sizeof(int)); \
131 __Bits __tmp; \
132 memcpy(&__tmp, &__val, sizeof(__val)); \
133 __tmp.__a = ::__FnName(__mask, __tmp.__a, __offset, __width); \
134 __tmp.__b = ::__FnName(__mask, __tmp.__b, __offset, __width); \
135 long long __ret; \
136 memcpy(&__ret, &__tmp, sizeof(__tmp)); \
137 return __ret; \
138 } \
139 inline __device__ unsigned long long __FnName( \
140 unsigned int __mask, unsigned long long __val, __Type __offset, \
141 int __width = warpSize) { \
142 return static_cast<unsigned long long>( \
143 ::__FnName(__mask, static_cast<long long>(__val), __offset, __width)); \
144 } \
145 inline __device__ long __FnName(unsigned int __mask, long __val, \
146 __Type __offset, int __width = warpSize) { \
147 _Static_assert(sizeof(long) == sizeof(long long) || \
148 sizeof(long) == sizeof(int)); \
149 if (sizeof(long) == sizeof(long long)) { \
150 return static_cast<long>(::__FnName( \
151 __mask, static_cast<long long>(__val), __offset, __width)); \
152 } else if (sizeof(long) == sizeof(int)) { \
153 return static_cast<long>( \
154 ::__FnName(__mask, static_cast<int>(__val), __offset, __width)); \
155 } \
156 } \
157 inline __device__ unsigned long __FnName( \
158 unsigned int __mask, unsigned long __val, __Type __offset, \
159 int __width = warpSize) { \
160 return static_cast<unsigned long>( \
161 ::__FnName(__mask, static_cast<long>(__val), __offset, __width)); \
162 } \
163 inline __device__ double __FnName(unsigned int __mask, double __val, \
164 __Type __offset, int __width = warpSize) { \
165 long long __tmp; \
166 _Static_assert(sizeof(__tmp) == sizeof(__val)); \
167 memcpy(&__tmp, &__val, sizeof(__val)); \
168 __tmp = ::__FnName(__mask, __tmp, __offset, __width); \
169 double __ret; \
170 memcpy(&__ret, &__tmp, sizeof(__ret)); \
171 return __ret; \
172 }
173__MAKE_SYNC_SHUFFLES(__shfl_sync, __nvvm_shfl_sync_idx_i32,
174 __nvvm_shfl_sync_idx_f32, 0x1f, int);
175// We use 0 rather than 31 as our mask, because shfl.up applies to lanes >=
176// maxLane.
177__MAKE_SYNC_SHUFFLES(__shfl_up_sync, __nvvm_shfl_sync_up_i32,
178 __nvvm_shfl_sync_up_f32, 0, unsigned int);
179__MAKE_SYNC_SHUFFLES(__shfl_down_sync, __nvvm_shfl_sync_down_i32,
180 __nvvm_shfl_sync_down_f32, 0x1f, unsigned int);
181__MAKE_SYNC_SHUFFLES(__shfl_xor_sync, __nvvm_shfl_sync_bfly_i32,
182 __nvvm_shfl_sync_bfly_f32, 0x1f, int);
183#pragma pop_macro("__MAKE_SYNC_SHUFFLES")
184
185inline __device__ void __syncwarp(unsigned int mask = 0xffffffff) {
186 return __nvvm_bar_warp_sync(mask);
187}
188
189inline __device__ void __barrier_sync(unsigned int id) {
190 __nvvm_barrier_sync(id);
191}
192
193inline __device__ void __barrier_sync_count(unsigned int id,
194 unsigned int count) {
195 __nvvm_barrier_sync_cnt(id, count);
196}
197
198inline __device__ int __all_sync(unsigned int mask, int pred) {
199 return __nvvm_vote_all_sync(mask, pred);
200}
201
202inline __device__ int __any_sync(unsigned int mask, int pred) {
203 return __nvvm_vote_any_sync(mask, pred);
204}
205
206inline __device__ int __uni_sync(unsigned int mask, int pred) {
207 return __nvvm_vote_uni_sync(mask, pred);
208}
209
210inline __device__ unsigned int __ballot_sync(unsigned int mask, int pred) {
211 return __nvvm_vote_ballot_sync(mask, pred);
212}
213
214inline __device__ unsigned int __activemask() {
215#if CUDA_VERSION < 9020
216 return __nvvm_vote_ballot(1);
217#else
218 return __nvvm_activemask();
219#endif
220}
221
222inline __device__ unsigned int __fns(unsigned mask, unsigned base, int offset) {
223 return __nvvm_fns(mask, base, offset);
224}
225
226#endif // !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 300
227
228// Define __match* builtins CUDA-9 headers expect to see.
229#if !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 700
230inline __device__ unsigned int __match32_any_sync(unsigned int mask,
231 unsigned int value) {
232 return __nvvm_match_any_sync_i32(mask, value);
233}
234
235inline __device__ unsigned int
236__match64_any_sync(unsigned int mask, unsigned long long value) {
237 return __nvvm_match_any_sync_i64(mask, value);
238}
239
240inline __device__ unsigned int
241__match32_all_sync(unsigned int mask, unsigned int value, int *pred) {
242 return __nvvm_match_all_sync_i32p(mask, value, pred);
243}
244
245inline __device__ unsigned int
246__match64_all_sync(unsigned int mask, unsigned long long value, int *pred) {
247 return __nvvm_match_all_sync_i64p(mask, value, pred);
248}
249#include "crt/sm_70_rt.hpp"
250
251#endif // !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 700
252#endif // __CUDA_VERSION >= 9000
253
254// sm_32 intrinsics: __ldg and __funnelshift_{l,lc,r,rc}.
255
256// Prevent the vanilla sm_32 intrinsics header from being included.
257#define __SM_32_INTRINSICS_H__
258#define __SM_32_INTRINSICS_HPP__
259
260#if !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 320
261
262inline __device__ char __ldg(const char *ptr) { return __nvvm_ldg_c(ptr); }
263inline __device__ short __ldg(const short *ptr) { return __nvvm_ldg_s(ptr); }
264inline __device__ int __ldg(const int *ptr) { return __nvvm_ldg_i(ptr); }
265inline __device__ long __ldg(const long *ptr) { return __nvvm_ldg_l(ptr); }
266inline __device__ long long __ldg(const long long *ptr) {
267 return __nvvm_ldg_ll(ptr);
268}
269inline __device__ unsigned char __ldg(const unsigned char *ptr) {
270 return __nvvm_ldg_uc(ptr);
271}
272inline __device__ signed char __ldg(const signed char *ptr) {
273 return __nvvm_ldg_uc((const unsigned char *)ptr);
274}
275inline __device__ unsigned short __ldg(const unsigned short *ptr) {
276 return __nvvm_ldg_us(ptr);
277}
278inline __device__ unsigned int __ldg(const unsigned int *ptr) {
279 return __nvvm_ldg_ui(ptr);
280}
281inline __device__ unsigned long __ldg(const unsigned long *ptr) {
282 return __nvvm_ldg_ul(ptr);
283}
284inline __device__ unsigned long long __ldg(const unsigned long long *ptr) {
285 return __nvvm_ldg_ull(ptr);
286}
287inline __device__ float __ldg(const float *ptr) { return __nvvm_ldg_f(ptr); }
288inline __device__ double __ldg(const double *ptr) { return __nvvm_ldg_d(ptr); }
289
290inline __device__ char2 __ldg(const char2 *ptr) {
291 typedef char c2 __attribute__((ext_vector_type(2)));
292 // We can assume that ptr is aligned at least to char2's alignment, but the
293 // load will assume that ptr is aligned to char2's alignment. This is only
294 // safe if alignof(c2) <= alignof(char2).
295 c2 rv = __nvvm_ldg_c2(reinterpret_cast<const c2 *>(ptr));
296 char2 ret;
297 ret.x = rv[0];
298 ret.y = rv[1];
299 return ret;
300}
301inline __device__ char4 __ldg(const char4 *ptr) {
302 typedef char c4 __attribute__((ext_vector_type(4)));
303 c4 rv = __nvvm_ldg_c4(reinterpret_cast<const c4 *>(ptr));
304 char4 ret;
305 ret.x = rv[0];
306 ret.y = rv[1];
307 ret.z = rv[2];
308 ret.w = rv[3];
309 return ret;
310}
311inline __device__ short2 __ldg(const short2 *ptr) {
312 typedef short s2 __attribute__((ext_vector_type(2)));
313 s2 rv = __nvvm_ldg_s2(reinterpret_cast<const s2 *>(ptr));
314 short2 ret;
315 ret.x = rv[0];
316 ret.y = rv[1];
317 return ret;
318}
319inline __device__ short4 __ldg(const short4 *ptr) {
320 typedef short s4 __attribute__((ext_vector_type(4)));
321 s4 rv = __nvvm_ldg_s4(reinterpret_cast<const s4 *>(ptr));
322 short4 ret;
323 ret.x = rv[0];
324 ret.y = rv[1];
325 ret.z = rv[2];
326 ret.w = rv[3];
327 return ret;
328}
329inline __device__ int2 __ldg(const int2 *ptr) {
330 typedef int i2 __attribute__((ext_vector_type(2)));
331 i2 rv = __nvvm_ldg_i2(reinterpret_cast<const i2 *>(ptr));
332 int2 ret;
333 ret.x = rv[0];
334 ret.y = rv[1];
335 return ret;
336}
337inline __device__ int4 __ldg(const int4 *ptr) {
338 typedef int i4 __attribute__((ext_vector_type(4)));
339 i4 rv = __nvvm_ldg_i4(reinterpret_cast<const i4 *>(ptr));
340 int4 ret;
341 ret.x = rv[0];
342 ret.y = rv[1];
343 ret.z = rv[2];
344 ret.w = rv[3];
345 return ret;
346}
347inline __device__ longlong2 __ldg(const longlong2 *ptr) {
348 typedef long long ll2 __attribute__((ext_vector_type(2)));
349 ll2 rv = __nvvm_ldg_ll2(reinterpret_cast<const ll2 *>(ptr));
350 longlong2 ret;
351 ret.x = rv[0];
352 ret.y = rv[1];
353 return ret;
354}
355
356inline __device__ uchar2 __ldg(const uchar2 *ptr) {
357 typedef unsigned char uc2 __attribute__((ext_vector_type(2)));
358 uc2 rv = __nvvm_ldg_uc2(reinterpret_cast<const uc2 *>(ptr));
359 uchar2 ret;
360 ret.x = rv[0];
361 ret.y = rv[1];
362 return ret;
363}
364inline __device__ uchar4 __ldg(const uchar4 *ptr) {
365 typedef unsigned char uc4 __attribute__((ext_vector_type(4)));
366 uc4 rv = __nvvm_ldg_uc4(reinterpret_cast<const uc4 *>(ptr));
367 uchar4 ret;
368 ret.x = rv[0];
369 ret.y = rv[1];
370 ret.z = rv[2];
371 ret.w = rv[3];
372 return ret;
373}
374inline __device__ ushort2 __ldg(const ushort2 *ptr) {
375 typedef unsigned short us2 __attribute__((ext_vector_type(2)));
376 us2 rv = __nvvm_ldg_us2(reinterpret_cast<const us2 *>(ptr));
377 ushort2 ret;
378 ret.x = rv[0];
379 ret.y = rv[1];
380 return ret;
381}
382inline __device__ ushort4 __ldg(const ushort4 *ptr) {
383 typedef unsigned short us4 __attribute__((ext_vector_type(4)));
384 us4 rv = __nvvm_ldg_us4(reinterpret_cast<const us4 *>(ptr));
385 ushort4 ret;
386 ret.x = rv[0];
387 ret.y = rv[1];
388 ret.z = rv[2];
389 ret.w = rv[3];
390 return ret;
391}
392inline __device__ uint2 __ldg(const uint2 *ptr) {
393 typedef unsigned int ui2 __attribute__((ext_vector_type(2)));
394 ui2 rv = __nvvm_ldg_ui2(reinterpret_cast<const ui2 *>(ptr));
395 uint2 ret;
396 ret.x = rv[0];
397 ret.y = rv[1];
398 return ret;
399}
400inline __device__ uint4 __ldg(const uint4 *ptr) {
401 typedef unsigned int ui4 __attribute__((ext_vector_type(4)));
402 ui4 rv = __nvvm_ldg_ui4(reinterpret_cast<const ui4 *>(ptr));
403 uint4 ret;
404 ret.x = rv[0];
405 ret.y = rv[1];
406 ret.z = rv[2];
407 ret.w = rv[3];
408 return ret;
409}
410inline __device__ ulonglong2 __ldg(const ulonglong2 *ptr) {
411 typedef unsigned long long ull2 __attribute__((ext_vector_type(2)));
412 ull2 rv = __nvvm_ldg_ull2(reinterpret_cast<const ull2 *>(ptr));
413 ulonglong2 ret;
414 ret.x = rv[0];
415 ret.y = rv[1];
416 return ret;
417}
418
419inline __device__ float2 __ldg(const float2 *ptr) {
420 typedef float f2 __attribute__((ext_vector_type(2)));
421 f2 rv = __nvvm_ldg_f2(reinterpret_cast<const f2 *>(ptr));
422 float2 ret;
423 ret.x = rv[0];
424 ret.y = rv[1];
425 return ret;
426}
427inline __device__ float4 __ldg(const float4 *ptr) {
428 typedef float f4 __attribute__((ext_vector_type(4)));
429 f4 rv = __nvvm_ldg_f4(reinterpret_cast<const f4 *>(ptr));
430 float4 ret;
431 ret.x = rv[0];
432 ret.y = rv[1];
433 ret.z = rv[2];
434 ret.w = rv[3];
435 return ret;
436}
437inline __device__ double2 __ldg(const double2 *ptr) {
438 typedef double d2 __attribute__((ext_vector_type(2)));
439 d2 rv = __nvvm_ldg_d2(reinterpret_cast<const d2 *>(ptr));
440 double2 ret;
441 ret.x = rv[0];
442 ret.y = rv[1];
443 return ret;
444}
445
446// TODO: Implement these as intrinsics, so the backend can work its magic on
447// these. Alternatively, we could implement these as plain C and try to get
448// llvm to recognize the relevant patterns.
449inline __device__ unsigned __funnelshift_l(unsigned low32, unsigned high32,
450 unsigned shiftWidth) {
451 unsigned result;
452 __asm__("shf.l.wrap.b32 %0, %1, %2, %3;"
453 : "=r"(result)
454 : "r"(low32), "r"(high32), "r"(shiftWidth));
455 return result;
456}
457inline __device__ unsigned __funnelshift_lc(unsigned low32, unsigned high32,
458 unsigned shiftWidth) {
459 unsigned result;
460 __asm__("shf.l.clamp.b32 %0, %1, %2, %3;"
461 : "=r"(result)
462 : "r"(low32), "r"(high32), "r"(shiftWidth));
463 return result;
464}
465inline __device__ unsigned __funnelshift_r(unsigned low32, unsigned high32,
466 unsigned shiftWidth) {
467 unsigned result;
468 __asm__("shf.r.wrap.b32 %0, %1, %2, %3;"
469 : "=r"(result)
470 : "r"(low32), "r"(high32), "r"(shiftWidth));
471 return result;
472}
473inline __device__ unsigned __funnelshift_rc(unsigned low32, unsigned high32,
474 unsigned shiftWidth) {
475 unsigned ret;
476 __asm__("shf.r.clamp.b32 %0, %1, %2, %3;"
477 : "=r"(ret)
478 : "r"(low32), "r"(high32), "r"(shiftWidth));
479 return ret;
480}
481
482#if defined(__cplusplus) && (__cplusplus >= 201103L)
483
484#pragma push_macro("__INTRINSIC_LOAD")
485#define __INTRINSIC_LOAD(__FnName, __AsmOp, __DeclType, __TmpType, __AsmType, \
486 __Volatile, __Clobber) \
487 inline __device__ __DeclType __FnName(const __DeclType *__ptr) { \
488 __TmpType __ret; \
489 __asm__ __Volatile(__AsmOp " %0, [%1];" \
490 : __AsmType(__ret) \
491 : "l"(__ptr)__Clobber); \
492 return (__DeclType)__ret; \
493 }
494
495#pragma push_macro("__INTRINSIC_LOAD2")
496#define __INTRINSIC_LOAD2(__FnName, __AsmOp, __DeclType, __TmpType, __AsmType, \
497 __Volatile, __Clobber) \
498 inline __device__ __DeclType __FnName(const __DeclType *__ptr) { \
499 __DeclType __ret; \
500 __TmpType __tmp; \
501 __asm__ __Volatile(__AsmOp " {%0,%1}, [%2];" \
502 : __AsmType(__tmp.x), __AsmType(__tmp.y) \
503 : "l"(__ptr)__Clobber); \
504 using __ElementType = decltype(__ret.x); \
505 __ret.x = (__ElementType)__tmp.x; \
506 __ret.y = (__ElementType)__tmp.y; \
507 return __ret; \
508 }
509
510#pragma push_macro("__INTRINSIC_LOAD4")
511#define __INTRINSIC_LOAD4(__FnName, __AsmOp, __DeclType, __TmpType, __AsmType, \
512 __Volatile, __Clobber) \
513 inline __device__ __DeclType __FnName(const __DeclType *__ptr) { \
514 __DeclType __ret; \
515 __TmpType __tmp; \
516 __asm__ __Volatile(__AsmOp " {%0,%1,%2,%3}, [%4];" \
517 : __AsmType(__tmp.x), __AsmType(__tmp.y), \
518 __AsmType(__tmp.z), __AsmType(__tmp.w) \
519 : "l"(__ptr)__Clobber); \
520 using __ElementType = decltype(__ret.x); \
521 __ret.x = (__ElementType)__tmp.x; \
522 __ret.y = (__ElementType)__tmp.y; \
523 __ret.z = (__ElementType)__tmp.z; \
524 __ret.w = (__ElementType)__tmp.w; \
525 return __ret; \
526 }
527
528#pragma push_macro("__INTRINSIC_LOAD_LONG")
529#define __INTRINSIC_LOAD_LONG(__Mode) \
530 inline __device__ long __ld##__Mode(const long *__ptr) { \
531 if (__SIZEOF_LONG__ == __SIZEOF_LONG_LONG__) { \
532 return (long)__ld##__Mode((const long long *)__ptr); \
533 } else { \
534 return (long)__ld##__Mode((const int *)__ptr); \
535 } \
536 }
537
538#pragma push_macro("__INTRINSIC_LOAD_ULONG")
539#define __INTRINSIC_LOAD_ULONG(__Mode) \
540 inline __device__ unsigned long __ld##__Mode(const unsigned long *__ptr) { \
541 if (__SIZEOF_LONG__ == __SIZEOF_LONG_LONG__) { \
542 return (unsigned long)__ld##__Mode((const unsigned long long *)__ptr); \
543 } else { \
544 return (unsigned long)__ld##__Mode((const unsigned int *)__ptr); \
545 } \
546 }
547
548#define __INTRINSIC_LOAD_FAMILY(__Mode, __Volatile, __Clobber) \
549 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".s8", char, \
550 unsigned int, "=r", __Volatile, __Clobber) \
551 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".s8", signed char, \
552 unsigned int, "=r", __Volatile, __Clobber) \
553 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".s16", short, \
554 unsigned short, "=h", __Volatile, __Clobber) \
555 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".s32", int, \
556 unsigned int, "=r", __Volatile, __Clobber) \
557 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".s64", long long, \
558 unsigned long long, "=l", __Volatile, __Clobber) \
559 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.s8", char2, int2, \
560 "=r", __Volatile, __Clobber) \
561 __INTRINSIC_LOAD4(__ld##__Mode, "ld.global." #__Mode ".v4.s8", char4, int4, \
562 "=r", __Volatile, __Clobber) \
563 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.s16", short2, \
564 short2, "=h", __Volatile, __Clobber) \
565 __INTRINSIC_LOAD4(__ld##__Mode, "ld.global." #__Mode ".v4.s16", short4, \
566 short4, "=h", __Volatile, __Clobber) \
567 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.s32", int2, int2, \
568 "=r", __Volatile, __Clobber) \
569 __INTRINSIC_LOAD4(__ld##__Mode, "ld.global." #__Mode ".v4.s32", int4, int4, \
570 "=r", __Volatile, __Clobber) \
571 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.s64", longlong2, \
572 longlong2, "=l", __Volatile, __Clobber) \
573 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".u8", unsigned char, \
574 unsigned int, "=r", __Volatile, __Clobber) \
575 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".u16", unsigned short, \
576 unsigned short, "=h", __Volatile, __Clobber) \
577 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".u32", unsigned int, \
578 unsigned int, "=r", __Volatile, __Clobber) \
579 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".u64", \
580 unsigned long long, unsigned long long, "=l", __Volatile, \
581 __Clobber) \
582 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.u8", uchar2, \
583 uint2, "=r", __Volatile, __Clobber) \
584 __INTRINSIC_LOAD4(__ld##__Mode, "ld.global." #__Mode ".v4.u8", uchar4, \
585 uint4, "=r", __Volatile, __Clobber) \
586 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.u16", ushort2, \
587 ushort2, "=h", __Volatile, __Clobber) \
588 __INTRINSIC_LOAD4(__ld##__Mode, "ld.global." #__Mode ".v4.u16", ushort4, \
589 ushort4, "=h", __Volatile, __Clobber) \
590 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.u32", uint2, \
591 uint2, "=r", __Volatile, __Clobber) \
592 __INTRINSIC_LOAD4(__ld##__Mode, "ld.global." #__Mode ".v4.u32", uint4, \
593 uint4, "=r", __Volatile, __Clobber) \
594 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.u64", ulonglong2, \
595 ulonglong2, "=l", __Volatile, __Clobber) \
596 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".f32", float, float, \
597 "=f", __Volatile, __Clobber) \
598 __INTRINSIC_LOAD(__ld##__Mode, "ld.global." #__Mode ".f64", double, double, \
599 "=d", __Volatile, __Clobber) \
600 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.f32", float2, \
601 float2, "=f", __Volatile, __Clobber) \
602 __INTRINSIC_LOAD4(__ld##__Mode, "ld.global." #__Mode ".v4.f32", float4, \
603 float4, "=f", __Volatile, __Clobber) \
604 __INTRINSIC_LOAD2(__ld##__Mode, "ld.global." #__Mode ".v2.f64", double2, \
605 double2, "=d", __Volatile, __Clobber) \
606 __INTRINSIC_LOAD_LONG(__Mode) \
607 __INTRINSIC_LOAD_ULONG(__Mode)
608
609__INTRINSIC_LOAD_FAMILY(ca, __volatile__, /* no clobber */)
610__INTRINSIC_LOAD_FAMILY(cg, __volatile__, /* no clobber */)
611__INTRINSIC_LOAD_FAMILY(cs, __volatile__, /* no clobber */)
612__INTRINSIC_LOAD_FAMILY(cv, /* not volatile */, : "memory")
613__INTRINSIC_LOAD_FAMILY(lu, /* not volatile */, : "memory")
614
615#pragma pop_macro("__INTRINSIC_LOAD")
616#pragma pop_macro("__INTRINSIC_LOAD2")
617#pragma pop_macro("__INTRINSIC_LOAD4")
618#pragma pop_macro("__INTRINSIC_LOAD_LONG")
619#pragma pop_macro("__INTRINSIC_LOAD_ULONG")
620#pragma pop_macro("__INTRINSIC_LOAD_FAMILY")
621
622#pragma push_macro("__INTRINSIC_STORE")
623#define __INTRINSIC_STORE(__FnName, __AsmOp, __DeclType, __TmpType, __AsmType) \
624 inline __device__ void __FnName(__DeclType *__ptr, __DeclType __value) { \
625 __TmpType __tmp = (__TmpType)__value; \
626 __asm__(__AsmOp " [%0], %1;" ::"l"(__ptr), __AsmType(__tmp) : "memory"); \
627 }
628
629#pragma push_macro("__INTRINSIC_STORE2")
630#define __INTRINSIC_STORE2(__FnName, __AsmOp, __DeclType, __TmpType, \
631 __AsmType) \
632 inline __device__ void __FnName(__DeclType *__ptr, __DeclType __value) { \
633 __TmpType __tmp; \
634 using __ElementType = decltype(__tmp.x); \
635 __tmp.x = (__ElementType)(__value.x); \
636 __tmp.y = (__ElementType)(__value.y); \
637 __asm__(__AsmOp " [%0], {%1,%2};" ::"l"(__ptr), __AsmType(__tmp.x), \
638 __AsmType(__tmp.y) \
639 : "memory"); \
640 }
641
642#pragma push_macro("__INTRINSIC_STORE4")
643#define __INTRINSIC_STORE4(__FnName, __AsmOp, __DeclType, __TmpType, \
644 __AsmType) \
645 inline __device__ void __FnName(__DeclType *__ptr, __DeclType __value) { \
646 __TmpType __tmp; \
647 using __ElementType = decltype(__tmp.x); \
648 __tmp.x = (__ElementType)(__value.x); \
649 __tmp.y = (__ElementType)(__value.y); \
650 __tmp.z = (__ElementType)(__value.z); \
651 __tmp.w = (__ElementType)(__value.w); \
652 __asm__(__AsmOp " [%0], {%1,%2,%3,%4};" ::"l"(__ptr), __AsmType(__tmp.x), \
653 __AsmType(__tmp.y), __AsmType(__tmp.z), __AsmType(__tmp.w) \
654 : "memory"); \
655 }
656
657#pragma push_macro("__INTRINSIC_STORE_LONG")
658#define __INTRINSIC_STORE_LONG(__Mode) \
659 inline __device__ void __st##__Mode(long *__ptr, long __value) { \
660 if (__SIZEOF_LONG__ == __SIZEOF_LONG_LONG__) { \
661 __st##__Mode((long long *)__ptr, (long long)__value); \
662 } else { \
663 __st##__Mode((int *)__ptr, (int)__value); \
664 } \
665 }
666
667#pragma push_macro("__INTRINSIC_STORE_ULONG")
668#define __INTRINSIC_STORE_ULONG(__Mode) \
669 inline __device__ void __st##__Mode(unsigned long *__ptr, \
670 unsigned long __value) { \
671 if (__SIZEOF_LONG__ == __SIZEOF_LONG_LONG__) { \
672 __st##__Mode((unsigned long long *)__ptr, (unsigned long long)__value); \
673 } else { \
674 __st##__Mode((unsigned int *)__ptr, (unsigned int)__value); \
675 } \
676 }
677
678#pragma push_macro("__INTRINSIC_STORE_FAMILY")
679#define __INTRINSIC_STORE_FAMILY(__Mode) \
680 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".s8", char, int, "r") \
681 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".s8", signed char, \
682 int, "r") \
683 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".s16", short, short, \
684 "h") \
685 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".s32", int, int, "r") \
686 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".s64", long long, \
687 long long, "l") \
688 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.s8", char2, int2, \
689 "r") \
690 __INTRINSIC_STORE4(__st##__Mode, "st.global." #__Mode ".v4.s8", char4, int4, \
691 "r") \
692 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.s16", short2, \
693 short2, "h") \
694 __INTRINSIC_STORE4(__st##__Mode, "st.global." #__Mode ".v4.s16", short4, \
695 short4, "h") \
696 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.s32", int2, int2, \
697 "r") \
698 __INTRINSIC_STORE4(__st##__Mode, "st.global." #__Mode ".v4.s32", int4, int4, \
699 "r") \
700 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.s64", longlong2, \
701 longlong2, "l") \
702 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".u8", unsigned char, \
703 int, "r") \
704 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".u16", unsigned short, \
705 unsigned short, "h") \
706 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".u32", unsigned int, \
707 unsigned int, "r") \
708 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".u64", \
709 unsigned long long, unsigned long long, "l") \
710 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.u8", uchar2, \
711 uchar2, "r") \
712 __INTRINSIC_STORE4(__st##__Mode, "st.global." #__Mode ".v4.u8", uchar4, \
713 uint4, "r") \
714 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.u16", ushort2, \
715 ushort2, "h") \
716 __INTRINSIC_STORE4(__st##__Mode, "st.global." #__Mode ".v4.u16", ushort4, \
717 ushort4, "h") \
718 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.u32", uint2, \
719 uint2, "r") \
720 __INTRINSIC_STORE4(__st##__Mode, "st.global." #__Mode ".v4.u32", uint4, \
721 uint4, "r") \
722 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.u64", ulonglong2, \
723 ulonglong2, "l") \
724 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".f32", float, float, \
725 "f") \
726 __INTRINSIC_STORE(__st##__Mode, "st.global." #__Mode ".f64", double, double, \
727 "d") \
728 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.f32", float2, \
729 float2, "f") \
730 __INTRINSIC_STORE4(__st##__Mode, "st.global." #__Mode ".v4.f32", float4, \
731 float4, "f") \
732 __INTRINSIC_STORE2(__st##__Mode, "st.global." #__Mode ".v2.f64", double2, \
733 double2, "d") \
734 __INTRINSIC_STORE_LONG(__Mode) \
735 __INTRINSIC_STORE_ULONG(__Mode)
736
737__INTRINSIC_STORE_FAMILY(cg)
738__INTRINSIC_STORE_FAMILY(cs)
739__INTRINSIC_STORE_FAMILY(wb)
740__INTRINSIC_STORE_FAMILY(wt)
741
742#pragma pop_macro("__INTRINSIC_STORE")
743#pragma pop_macro("__INTRINSIC_STORE2")
744#pragma pop_macro("__INTRINSIC_STORE4")
745#pragma pop_macro("__INTRINSIC_STORE_LONG")
746#pragma pop_macro("__INTRINSIC_STORE_ULONG")
747#pragma pop_macro("__INTRINSIC_STORE_FAMILY")
748
749#endif // defined(__cplusplus) && (__cplusplus >= 201103L)
750#endif // !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 320
751
752#if CUDA_VERSION >= 11000
753extern "C" {
754__device__ inline size_t __nv_cvta_generic_to_global_impl(const void *__ptr) {
755 return (size_t)(void __attribute__((address_space(1))) *)__ptr;
756}
757__device__ inline size_t __nv_cvta_generic_to_shared_impl(const void *__ptr) {
758 return (size_t)(void __attribute__((address_space(3))) *)__ptr;
759}
760__device__ inline size_t __nv_cvta_generic_to_constant_impl(const void *__ptr) {
761 return (size_t)(void __attribute__((address_space(4))) *)__ptr;
762}
763__device__ inline size_t __nv_cvta_generic_to_local_impl(const void *__ptr) {
764 return (size_t)(void __attribute__((address_space(5))) *)__ptr;
765}
766__device__ inline void *__nv_cvta_global_to_generic_impl(size_t __ptr) {
767 return (void *)(void __attribute__((address_space(1))) *)__ptr;
768}
769__device__ inline void *__nv_cvta_shared_to_generic_impl(size_t __ptr) {
770 return (void *)(void __attribute__((address_space(3))) *)__ptr;
771}
772__device__ inline void *__nv_cvta_constant_to_generic_impl(size_t __ptr) {
773 return (void *)(void __attribute__((address_space(4))) *)__ptr;
774}
775__device__ inline void *__nv_cvta_local_to_generic_impl(size_t __ptr) {
776 return (void *)(void __attribute__((address_space(5))) *)__ptr;
777}
778__device__ inline cuuint32_t __nvvm_get_smem_pointer(void *__ptr) {
779 return __nv_cvta_generic_to_shared_impl(__ptr);
780}
781} // extern "C"
782
783#if !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 800
784__device__ inline unsigned __reduce_add_sync(unsigned __mask,
785 unsigned __value) {
786 return __nvvm_redux_sync_add(__value, __mask);
787}
788__device__ inline unsigned __reduce_min_sync(unsigned __mask,
789 unsigned __value) {
790 return __nvvm_redux_sync_umin(__value, __mask);
791}
792__device__ inline unsigned __reduce_max_sync(unsigned __mask,
793 unsigned __value) {
794 return __nvvm_redux_sync_umax(__value, __mask);
795}
796__device__ inline int __reduce_min_sync(unsigned __mask, int __value) {
797 return __nvvm_redux_sync_min(__value, __mask);
798}
799__device__ inline int __reduce_max_sync(unsigned __mask, int __value) {
800 return __nvvm_redux_sync_max(__value, __mask);
801}
802__device__ inline unsigned __reduce_or_sync(unsigned __mask, unsigned __value) {
803 return __nvvm_redux_sync_or(__value, __mask);
804}
805__device__ inline unsigned __reduce_and_sync(unsigned __mask,
806 unsigned __value) {
807 return __nvvm_redux_sync_and(__value, __mask);
808}
809__device__ inline unsigned __reduce_xor_sync(unsigned __mask,
810 unsigned __value) {
811 return __nvvm_redux_sync_xor(__value, __mask);
812}
813
814__device__ inline void __nv_memcpy_async_shared_global_4(void *__dst,
815 const void *__src,
816 unsigned __src_size) {
817 __nvvm_cp_async_ca_shared_global_4(
818 (void __attribute__((address_space(3))) *)__dst,
819 (const void __attribute__((address_space(1))) *)__src, __src_size);
820}
821__device__ inline void __nv_memcpy_async_shared_global_8(void *__dst,
822 const void *__src,
823 unsigned __src_size) {
824 __nvvm_cp_async_ca_shared_global_8(
825 (void __attribute__((address_space(3))) *)__dst,
826 (const void __attribute__((address_space(1))) *)__src, __src_size);
827}
828__device__ inline void __nv_memcpy_async_shared_global_16(void *__dst,
829 const void *__src,
830 unsigned __src_size) {
831 __nvvm_cp_async_ca_shared_global_16(
832 (void __attribute__((address_space(3))) *)__dst,
833 (const void __attribute__((address_space(1))) *)__src, __src_size);
834}
835
836__device__ inline void *
837__nv_associate_access_property(const void *__ptr, unsigned long long __prop) {
838 // TODO: it appears to provide compiler with some sort of a hint. We do not
839 // know what exactly it is supposed to do. However, CUDA headers suggest that
840 // just passing through __ptr should not affect correctness. They do so on
841 // pre-sm80 GPUs where this builtin is not available.
842 return (void*)__ptr;
843}
844#endif // !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 800
845
846#if !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 900
847__device__ inline unsigned __isCtaShared(const void *ptr) {
848 return __isShared(ptr);
849}
850
851__device__ inline unsigned __isClusterShared(const void *__ptr) {
852 return __nvvm_isspacep_shared_cluster(__ptr);
853}
854
855__device__ inline void *__cluster_map_shared_rank(const void *__ptr,
856 unsigned __rank) {
857 return __nvvm_mapa((void *)__ptr, __rank);
858}
859
860__device__ inline unsigned __cluster_query_shared_rank(const void *__ptr) {
861 return __nvvm_getctarank((void *)__ptr);
862}
863
864__device__ inline uint2
865__cluster_map_shared_multicast(const void *__ptr,
866 unsigned int __cluster_cta_mask) {
867 return make_uint2((unsigned)__cvta_generic_to_shared(__ptr),
868 __cluster_cta_mask);
869}
870
871__device__ inline unsigned __clusterDimIsSpecified() {
872 return __nvvm_is_explicit_cluster();
873}
874
875__device__ inline dim3 __clusterDim() {
876 return dim3(__nvvm_read_ptx_sreg_cluster_nctaid_x(),
877 __nvvm_read_ptx_sreg_cluster_nctaid_y(),
878 __nvvm_read_ptx_sreg_cluster_nctaid_z());
879}
880
881__device__ inline dim3 __clusterRelativeBlockIdx() {
882 return dim3(__nvvm_read_ptx_sreg_cluster_ctaid_x(),
883 __nvvm_read_ptx_sreg_cluster_ctaid_y(),
884 __nvvm_read_ptx_sreg_cluster_ctaid_z());
885}
886
887__device__ inline dim3 __clusterGridDimInClusters() {
888 return dim3(__nvvm_read_ptx_sreg_nclusterid_x(),
889 __nvvm_read_ptx_sreg_nclusterid_y(),
890 __nvvm_read_ptx_sreg_nclusterid_z());
891}
892
893__device__ inline dim3 __clusterIdx() {
894 return dim3(__nvvm_read_ptx_sreg_clusterid_x(),
895 __nvvm_read_ptx_sreg_clusterid_y(),
896 __nvvm_read_ptx_sreg_clusterid_z());
897}
898
899__device__ inline unsigned __clusterRelativeBlockRank() {
900 return __nvvm_read_ptx_sreg_cluster_ctarank();
901}
902
903__device__ inline unsigned __clusterSizeInBlocks() {
904 return __nvvm_read_ptx_sreg_cluster_nctarank();
905}
906
907__device__ inline void __cluster_barrier_arrive() {
908 __nvvm_barrier_cluster_arrive();
909}
910
911__device__ inline void __cluster_barrier_arrive_relaxed() {
912 __nvvm_barrier_cluster_arrive_relaxed();
913}
914
915__device__ inline void __cluster_barrier_wait() {
916 __nvvm_barrier_cluster_wait();
917}
918
919__device__ inline void __threadfence_cluster() { __nvvm_fence_sc_cluster(); }
920
921__device__ inline float2 atomicAdd(float2 *__ptr, float2 __val) {
922 float2 __ret;
923 __asm__("atom.add.v2.f32 {%0, %1}, [%2], {%3, %4};"
924 : "=f"(__ret.x), "=f"(__ret.y)
925 : "l"(__ptr), "f"(__val.x), "f"(__val.y));
926 return __ret;
927}
928
929__device__ inline float2 atomicAdd_block(float2 *__ptr, float2 __val) {
930 float2 __ret;
931 __asm__("atom.cta.add.v2.f32 {%0, %1}, [%2], {%3, %4};"
932 : "=f"(__ret.x), "=f"(__ret.y)
933 : "l"(__ptr), "f"(__val.x), "f"(__val.y));
934 return __ret;
935}
936
937__device__ inline float2 atomicAdd_system(float2 *__ptr, float2 __val) {
938 float2 __ret;
939 __asm__("atom.sys.add.v2.f32 {%0, %1}, [%2], {%3, %4};"
940 : "=f"(__ret.x), "=f"(__ret.y)
941 : "l"(__ptr), "f"(__val.x), "f"(__val.y));
942 return __ret;
943}
944
945__device__ inline float4 atomicAdd(float4 *__ptr, float4 __val) {
946 float4 __ret;
947 __asm__("atom.add.v4.f32 {%0, %1, %2, %3}, [%4], {%5, %6, %7, %8};"
948 : "=f"(__ret.x), "=f"(__ret.y), "=f"(__ret.z), "=f"(__ret.w)
949 : "l"(__ptr), "f"(__val.x), "f"(__val.y), "f"(__val.z), "f"(__val.w));
950 return __ret;
951}
952
953__device__ inline float4 atomicAdd_block(float4 *__ptr, float4 __val) {
954 float4 __ret;
955 __asm__(
956 "atom.cta.add.v4.f32 {%0, %1, %2, %3}, [%4], {%5, %6, %7, %8};"
957 : "=f"(__ret.x), "=f"(__ret.y), "=f"(__ret.z), "=f"(__ret.w)
958 : "l"(__ptr), "f"(__val.x), "f"(__val.y), "f"(__val.z), "f"(__val.w));
959 return __ret;
960}
961
962__device__ inline float4 atomicAdd_system(float4 *__ptr, float4 __val) {
963 float4 __ret;
964 __asm__(
965 "atom.sys.add.v4.f32 {%0, %1, %2, %3}, [%4], {%5, %6, %7, %8};"
966 : "=f"(__ret.x), "=f"(__ret.y), "=f"(__ret.z), "=f"(__ret.w)
967 : "l"(__ptr), "f"(__val.x), "f"(__val.y), "f"(__val.z), "f"(__val.w)
968 :);
969 return __ret;
970}
971
972#endif // !defined(__CUDA_ARCH__) || __CUDA_ARCH__ >= 900
973#endif // CUDA_VERSION >= 11000
974
975#endif // defined(__CLANG_CUDA_INTRINSICS_H__)
__device__ unsigned __funnelshift_lc(unsigned low32, unsigned high32, unsigned shiftWidth)
__device__ unsigned __funnelshift_rc(unsigned low32, unsigned high32, unsigned shiftWidth)
#define __MAKE_SHUFFLES(__FnName, __IntIntrinsic, __FloatIntrinsic, __Mask, __Type)
__device__ unsigned __funnelshift_r(unsigned low32, unsigned high32, unsigned shiftWidth)
__device__ char __ldg(const char *ptr)
__device__ unsigned __funnelshift_l(unsigned low32, unsigned high32, unsigned shiftWidth)
_Float16 __2f16 __attribute__((ext_vector_type(2)))
Zeroes the upper 128 bits (bits 255:128) of all YMM registers.
#define __device__
struct dim3 dim3
__asm__("swp %0, %1, [%2]" :"=r"(__v) :"r"(__x), "r"(__p) :"memory")
static __inline__ void const void * __src
static __inline__ void unsigned int __value
vector< uint, 2 > uint2
vector< float, 4 > float4
vector< float, 2 > float2