brintos

brintos / llvm-project-archived public Read only

0
0
Text · 369 B · d5dd43d Raw
17 lines · plain
1// REQUIRES: amdgpu-registered-target2// RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -x hip -emit-llvm -fcuda-is-device -o - %s | FileCheck %s3 4#define __device__ __attribute__((device))5 6// CHECK-LABEL: @_Z2d0DF16_7// CHECK: fpext8__device__ float d0(_Float16 x) {9  return x;10}11 12// CHECK-LABEL: @_Z2d1f13// CHECK: fptrunc14__device__ _Float16 d1(float x) {15  return x;16}17