[flang-commits] [flang] 0659044 - [flang][cuda] Add bind names for __double2ull_rX interfaces (#153678)
via flang-commits
flang-commits at lists.llvm.org
Thu Aug 14 14:10:24 PDT 2025
Author: Valentin Clement (バレンタイン クレメン)
Date: 2025-08-14T21:10:20Z
New Revision: 06590444f53ee855a6b321895594382f79d6b1d8
URL: https://github.com/llvm/llvm-project/commit/06590444f53ee855a6b321895594382f79d6b1d8
DIFF: https://github.com/llvm/llvm-project/commit/06590444f53ee855a6b321895594382f79d6b1d8.diff
LOG: [flang][cuda] Add bind names for __double2ull_rX interfaces (#153678)
Added:
Modified:
flang/module/cudadevice.f90
flang/test/Lower/CUDA/cuda-libdevice.cuf
Removed:
################################################################################
diff --git a/flang/module/cudadevice.f90 b/flang/module/cudadevice.f90
index 1e403b1ffdb91..259812d0eed1d 100644
--- a/flang/module/cudadevice.f90
+++ b/flang/module/cudadevice.f90
@@ -653,29 +653,29 @@ attributes(device) real(8) function sinpi(x) bind(c,name='__nv_sinpi')
end function
end interface
- interface __double2ull_rn
- attributes(device) integer(8) function __double2ull_rn(r) bind(c)
+ interface __double2ull_rd
+ attributes(device) integer(8) function __double2ull_rd(r) bind(c, name='__nv_double2ull_rd')
!dir$ ignore_tkr (d) r
double precision, value :: r
end function
end interface
- interface __double2ull_rz
- attributes(device) integer(8) function __double2ull_rz(r) bind(c)
+ interface __double2ull_rn
+ attributes(device) integer(8) function __double2ull_rn(r) bind(c, name='__nv_double2ull_rn')
!dir$ ignore_tkr (d) r
double precision, value :: r
end function
end interface
interface __double2ull_ru
- attributes(device) integer(8) function __double2ull_ru(r) bind(c)
+ attributes(device) integer(8) function __double2ull_ru(r) bind(c, name='__nv_double2ull_ru')
!dir$ ignore_tkr (d) r
double precision, value :: r
end function
end interface
- interface __double2ull_rd
- attributes(device) integer(8) function __double2ull_rd(r) bind(c)
+ interface __double2ull_rz
+ attributes(device) integer(8) function __double2ull_rz(r) bind(c, name='__nv_double2ull_rz')
!dir$ ignore_tkr (d) r
double precision, value :: r
end function
diff --git a/flang/test/Lower/CUDA/cuda-libdevice.cuf b/flang/test/Lower/CUDA/cuda-libdevice.cuf
index 844bdb954924a..52cf9c391c8de 100644
--- a/flang/test/Lower/CUDA/cuda-libdevice.cuf
+++ b/flang/test/Lower/CUDA/cuda-libdevice.cuf
@@ -115,3 +115,18 @@ end subroutine
! CHECK: %{{.*}} = fir.call @__nv_double2ll_rn(%{{.*}}) proc_attrs<bind_c> fastmath<contract> : (f64) -> i64
! CHECK: %{{.*}} = fir.call @__nv_double2ll_ru(%{{.*}}) proc_attrs<bind_c> fastmath<contract> : (f64) -> i64
! CHECK: %{{.*}} = fir.call @__nv_double2ll_rz(%{{.*}}) proc_attrs<bind_c> fastmath<contract> : (f64) -> i64
+
+attributes(global) subroutine test_double2ull_rX()
+ integer(8) :: res
+ double precision :: r
+ res = __double2ull_rd(r)
+ res = __double2ull_rn(r)
+ res = __double2ull_ru(r)
+ res = __double2ull_rz(r)
+end subroutine
+
+! CHECK-LABEL: _QPtest_double2ull_rx
+! CHECK: %{{.*}} = fir.call @__nv_double2ull_rd(%{{.*}}) proc_attrs<bind_c> fastmath<contract> : (f64) -> i64
+! CHECK: %{{.*}} = fir.call @__nv_double2ull_rn(%{{.*}}) proc_attrs<bind_c> fastmath<contract> : (f64) -> i64
+! CHECK: %{{.*}} = fir.call @__nv_double2ull_ru(%{{.*}}) proc_attrs<bind_c> fastmath<contract> : (f64) -> i64
+! CHECK: %{{.*}} = fir.call @__nv_double2ull_rz(%{{.*}}) proc_attrs<bind_c> fastmath<contract> : (f64) -> i64
More information about the flang-commits
mailing list