File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -502,8 +502,8 @@ __DEVICE__ unsigned int __pm0(void) { return __nvvm_read_ptx_sreg_pm0(); }
502
502
__DEVICE__ unsigned int __pm1 (void ) { return __nvvm_read_ptx_sreg_pm1 (); }
503
503
__DEVICE__ unsigned int __pm2 (void ) { return __nvvm_read_ptx_sreg_pm2 (); }
504
504
__DEVICE__ unsigned int __pm3 (void ) { return __nvvm_read_ptx_sreg_pm3 (); }
505
- __DEVICE__ int __popc (int __a ) { return __nv_popc (__a ); }
506
- __DEVICE__ int __popcll (long long __a ) { return __nv_popcll (__a ); }
505
+ __DEVICE__ int __popc (unsigned int __a ) { return __nv_popc (__a ); }
506
+ __DEVICE__ int __popcll (unsigned long long __a ) { return __nv_popcll (__a ); }
507
507
__DEVICE__ float __powf (float __a , float __b ) {
508
508
return __nv_fast_powf (__a , __b );
509
509
}
Original file line number Diff line number Diff line change @@ -285,8 +285,8 @@ __DEVICE__ double __nv_normcdfinv(double __a);
285
285
__DEVICE__ float __nv_normcdfinvf (float __a );
286
286
__DEVICE__ float __nv_normf (int __a , const float * __b );
287
287
__DEVICE__ double __nv_norm (int __a , const double * __b );
288
- __DEVICE__ int __nv_popc (int __a );
289
- __DEVICE__ int __nv_popcll (long long __a );
288
+ __DEVICE__ int __nv_popc (unsigned int __a );
289
+ __DEVICE__ int __nv_popcll (unsigned long long __a );
290
290
__DEVICE__ double __nv_pow (double __a , double __b );
291
291
__DEVICE__ float __nv_powf (float __a , float __b );
292
292
__DEVICE__ double __nv_powi (double __a , int __b );
You can’t perform that action at this time.
0 commit comments