aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.opencl/datatypes.cl
blob: ab982317618bff2fe78670908d556bf7742deb02 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* This testcase is part of GDB, the GNU debugger.

   Copyright 2010, 2011 Free Software Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.

   Contributed by Ken Werner <ken.werner@de.ibm.com>  */

int opencl_version = __OPENCL_VERSION__;

#ifdef HAVE_cl_khr_fp64
#pragma OPENCL EXTENSION cl_khr_fp64 : enable
int have_cl_khr_fp64 = 1;
#else
int have_cl_khr_fp64 = 0;
#endif

#ifdef HAVE_cl_khr_fp16
#pragma OPENCL EXTENSION cl_khr_fp16 : enable
int have_cl_khr_fp16 = 1;
#else
int have_cl_khr_fp16 = 0;
#endif

bool b = 0;

char   c   = 1;
char2  c2  = (char2) (1, 2);
#ifdef CL_VERSION_1_1
char3  c3  = (char3) (1, 2, 3);
#endif
char4  c4  = (char4) (1, 2, 3, 4);
char8  c8  = (char8) (1, 2, 3, 4, 5, 6, 7, 8);
char16 c16 = (char16)(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);

uchar   uc   = 1;
uchar2  uc2  = (uchar2) (1, 2);
#ifdef CL_VERSION_1_1
uchar3  uc3  = (uchar3) (1, 2, 3);
#endif
uchar4  uc4  = (uchar4) (1, 2, 3, 4);
uchar8  uc8  = (uchar8) (1, 2, 3, 4, 5, 6, 7, 8);
uchar16 uc16 = (uchar16)(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);

short   s   = -1;
short2  s2  = (short2) (-1, -2);
#ifdef CL_VERSION_1_1
short3  s3  = (short3) (-1, -2, -3);
#endif
short4  s4  = (short4) (-1, -2, -3, -4);
short8  s8  = (short8) (-1, -2, -3, -4, -5, -6, -7, -8);
short16 s16 = (short16)(-1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16);

ushort   us   = 1;
ushort2  us2  = (ushort2) (1, 2);
#ifdef CL_VERSION_1_1
ushort3  us3  = (ushort3) (1, 2, 3);
#endif
ushort4  us4  = (ushort4) (1, 2, 3, 4);
ushort8  us8  = (ushort8) (1, 2, 3, 4, 5, 6, 7, 8);
ushort16 us16 = (ushort16)(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);

int   i   = -1;
int2  i2  = (int2) (-1, -2);
#ifdef CL_VERSION_1_1
int3  i3  = (int3) (-1, -2, -3);
#endif
int4  i4  = (int4) (-1, -2, -3, -4);
int8  i8  = (int8) (-1, -2, -3, -4, -5, -6, -7, -8);
int16 i16 = (int16)(-1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16);

uint   ui   = 1;
uint2  ui2  = (uint2) (1, 2);
#ifdef CL_VERSION_1_1
uint3  ui3  = (uint3) (1, 2, 3);
#endif
uint4  ui4  = (uint4) (1, 2, 3, 4);
uint8  ui8  = (uint8) (1, 2, 3, 4, 5, 6, 7, 8);
uint16 ui16 = (uint16)(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);

long   l   = -1;
long2  l2  = (long2) (-1, -2);
#ifdef CL_VERSION_1_1
long3  l3  = (long3) (-1, -2, -3);
#endif
long4  l4  = (long4) (-1, -2, -3, -4);
long8  l8  = (long8) (-1, -2, -3, -4, -5, -6, -7, -8);
long16 l16 = (long16)(-1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16);

ulong   ul   = 1;
ulong2  ul2  = (ulong2) (1, 2);
#ifdef CL_VERSION_1_1
ulong3  ul3  = (ulong3) (1, 2, 3);
#endif
ulong4  ul4  = (ulong4) (1, 2, 3, 4);
ulong8  ul8  = (ulong8) (1, 2, 3, 4, 5, 6, 7, 8);
ulong16 ul16 = (ulong16)(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);

half *ph;
#ifdef cl_khr_fp16
half   h   = 1.0;
half2  h2  = (half2) (1.0, 2.0);
#ifdef CL_VERSION_1_1
half3  h3  = (half3) (1.0, 2.0, 3.0);
#endif
half4  h4  = (half4) (1.0, 2.0, 3.0, 4.0);
half8  h8  = (half8) (1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
half16 h16 = (half16)(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0);
#endif

float   f   = 1.0;
float2  f2  = (float2) (1.0, 2.0);
#ifdef CL_VERSION_1_1
float3  f3  = (float3) (1.0, 2.0, 3.0);
#endif
float4  f4  = (float4) (1.0, 2.0, 3.0, 4.0);
float8  f8  = (float8) (1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
float16 f16 = (float16)(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0);

#ifdef cl_khr_fp64
double   d   = 1.0;
double2  d2  = (double2) (1.0, 2.0);
#ifdef CL_VERSION_1_1
double3  d3  = (double3) (1.0, 2.0, 3.0);
#endif
double4  d4  = (double4) (1.0, 2.0, 3.0, 4.0);
double8  d8  = (double8) (1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0);
double16 d16 = (double16)(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0);
#endif

__kernel void testkernel (__global int *data)
{
  data[get_global_id(0)] = 1;
}