blob: 9715e595e436d0a22d6850f53dc1e480cc91ba4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
__attribute__((__overloadable__))
float length(float p)
{
return sqrt(dot(p, p));
}
__attribute__((__overloadable__))
float length(float2 p)
{
return sqrt(dot(p, p));
}
__attribute__((__overloadable__))
float length(float3 p)
{
return sqrt(dot(p, p));
}
__attribute__((__overloadable__))
float length(float4 p)
{
return sqrt(dot(p, p));
}
#ifdef cl_khr_fp64
__attribute__((__overloadable__))
double length(double p)
{
return sqrt(dot(p, p));
}
__attribute__((__overloadable__))
double length(double2 p)
{
return sqrt(dot(p, p));
}
__attribute__((__overloadable__))
double length(double3 p)
{
return sqrt(dot(p, p));
}
__attribute__((__overloadable__))
double length(double4 p)
{
return sqrt(dot(p, p));
}
#endif
|