[OpenCL] Remove fast_ half geometric builtins

These are not mentioned in the OpenCL C Specification nor in the
OpenCL Extension Specification.

Differential Revision: https://reviews.llvm.org/D128436
This commit is contained in:
Sven van Haastregt 2022-07-05 10:22:34 +01:00
parent 271b470f3f
commit f8e658ec9f
1 changed files with 0 additions and 18 deletions

View File

@ -10467,12 +10467,6 @@ float __ovld __cnfn fast_distance(float, float);
float __ovld __cnfn fast_distance(float2, float2);
float __ovld __cnfn fast_distance(float3, float3);
float __ovld __cnfn fast_distance(float4, float4);
#ifdef cl_khr_fp16
half __ovld __cnfn fast_distance(half, half);
half __ovld __cnfn fast_distance(half2, half2);
half __ovld __cnfn fast_distance(half3, half3);
half __ovld __cnfn fast_distance(half4, half4);
#endif //cl_khr_fp16
/**
* Returns the length of vector p computed as:
@ -10482,12 +10476,6 @@ float __ovld __cnfn fast_length(float);
float __ovld __cnfn fast_length(float2);
float __ovld __cnfn fast_length(float3);
float __ovld __cnfn fast_length(float4);
#ifdef cl_khr_fp16
half __ovld __cnfn fast_length(half);
half __ovld __cnfn fast_length(half2);
half __ovld __cnfn fast_length(half3);
half __ovld __cnfn fast_length(half4);
#endif //cl_khr_fp16
/**
* Returns a vector in the same direction as p but with a
@ -10514,12 +10502,6 @@ float __ovld __cnfn fast_normalize(float);
float2 __ovld __cnfn fast_normalize(float2);
float3 __ovld __cnfn fast_normalize(float3);
float4 __ovld __cnfn fast_normalize(float4);
#ifdef cl_khr_fp16
half __ovld __cnfn fast_normalize(half);
half2 __ovld __cnfn fast_normalize(half2);
half3 __ovld __cnfn fast_normalize(half3);
half4 __ovld __cnfn fast_normalize(half4);
#endif //cl_khr_fp16
// OpenCL v1.1 s6.11.6, v1.2 s6.12.6, v2.0 s6.13.6 - Relational Functions