You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; Simple bit of IR to mimic CUDA's libdevice.
|
|
|
|
target triple = "nvptx-unknown-cuda"
|
|
|
|
define double @__nv_sin(double %a) {
|
|
ret double 1.0
|
|
}
|
|
|
|
define double @__nv_exp(double %a) {
|
|
ret double 3.0
|
|
}
|
|
|
|
define double @__unused(double %a) {
|
|
ret double 2.0
|
|
}
|
|
|