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.
17 lines
369 B
17 lines
369 B
// REQUIRES: amdgpu-registered-target
|
|
// RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -x hip -emit-llvm -fcuda-is-device -o - %s | FileCheck %s
|
|
|
|
#define __device__ __attribute__((device))
|
|
|
|
// CHECK-LABEL: @_Z2d0DF16_
|
|
// CHECK: fpext
|
|
__device__ float d0(_Float16 x) {
|
|
return x;
|
|
}
|
|
|
|
// CHECK-LABEL: @_Z2d1f
|
|
// CHECK: fptrunc
|
|
__device__ _Float16 d1(float x) {
|
|
return x;
|
|
}
|