1 /**************************************************************************
3 * Copyright 2009 VMware, Inc.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
31 * Shared testing code.
33 * @author Jose Fonseca <jfonseca@vmware.com>
37 #include "util/u_cpu_detect.h"
39 #include "gallivm/lp_bld_const.h"
40 #include "gallivm/lp_bld_init.h"
49 return floor(x
+ 0.5);
60 fprintf(fp
, "%s%s%u%sx%u",
61 type
.sign
? (type
.floating
|| type
.fixed
? "" : "s") : "u",
62 type
.floating
? "f" : (type
.fixed
? "h" : "i"),
70 read_elem(struct lp_type type
, const void *src
, unsigned index
)
72 double scale
= lp_const_scale(type
);
74 assert(index
< type
.length
);
78 value
= *((const float *)src
+ index
);
81 value
= *((const double *)src
+ index
);
92 value
= *((const int8_t *)src
+ index
);
95 value
= *((const int16_t *)src
+ index
);
98 value
= *((const int32_t *)src
+ index
);
101 value
= *((const int64_t *)src
+ index
);
111 value
= *((const uint8_t *)src
+ index
);
114 value
= *((const uint16_t *)src
+ index
);
117 value
= *((const uint32_t *)src
+ index
);
120 value
= *((const uint64_t *)src
+ index
);
133 write_elem(struct lp_type type
, void *dst
, unsigned index
, double value
)
135 assert(index
< type
.length
);
136 if(!type
.sign
&& value
< 0.0)
138 if(type
.norm
&& value
< -1.0)
140 if(type
.norm
&& value
> 1.0)
145 *((float *)dst
+ index
) = (float)(value
);
148 *((double *)dst
+ index
) = value
;
155 double scale
= lp_const_scale(type
);
156 value
= round(value
*scale
);
158 long long lvalue
= (long long)value
;
159 lvalue
= MIN2(lvalue
, ((long long)1 << (type
.width
- 1)) - 1);
162 *((int8_t *)dst
+ index
) = (int8_t)lvalue
;
165 *((int16_t *)dst
+ index
) = (int16_t)lvalue
;
168 *((int32_t *)dst
+ index
) = (int32_t)lvalue
;
171 *((int64_t *)dst
+ index
) = (int64_t)lvalue
;
178 unsigned long long lvalue
= (long long)value
;
179 lvalue
= MIN2(lvalue
, ((unsigned long long)1 << type
.width
) - 1);
182 *((uint8_t *)dst
+ index
) = (uint8_t)lvalue
;
185 *((uint16_t *)dst
+ index
) = (uint16_t)lvalue
;
188 *((uint32_t *)dst
+ index
) = (uint32_t)lvalue
;
191 *((uint64_t *)dst
+ index
) = (uint64_t)lvalue
;
202 random_elem(struct lp_type type
, void *dst
, unsigned index
)
205 assert(index
< type
.length
);
206 value
= (double)rand()/(double)RAND_MAX
;
208 unsigned long long mask
;
210 mask
= ~(unsigned long long)0;
212 mask
= ((unsigned long long)1 << (type
.width
/ 2)) - 1;
214 mask
= ((unsigned long long)1 << (type
.width
- 1)) - 1;
216 mask
= ((unsigned long long)1 << type
.width
) - 1;
217 value
+= (double)(mask
& rand());
222 write_elem(type
, dst
, index
, value
);
227 read_vec(struct lp_type type
, const void *src
, double *dst
)
230 for (i
= 0; i
< type
.length
; ++i
)
231 dst
[i
] = read_elem(type
, src
, i
);
236 write_vec(struct lp_type type
, void *dst
, const double *src
)
239 for (i
= 0; i
< type
.length
; ++i
)
240 write_elem(type
, dst
, i
, src
[i
]);
247 return (float)((double)rand()/(double)RAND_MAX
);
252 random_vec(struct lp_type type
, void *dst
)
255 for (i
= 0; i
< type
.length
; ++i
)
256 random_elem(type
, dst
, i
);
261 compare_vec_with_eps(struct lp_type type
, const void *res
, const void *ref
, double eps
)
264 for (i
= 0; i
< type
.length
; ++i
) {
265 double res_elem
= read_elem(type
, res
, i
);
266 double ref_elem
= read_elem(type
, ref
, i
);
267 double delta
= fabs(res_elem
- ref_elem
);
277 compare_vec(struct lp_type type
, const void *res
, const void *ref
)
279 double eps
= lp_const_eps(type
);
280 return compare_vec_with_eps(type
, res
, ref
, eps
);
285 dump_vec(FILE *fp
, struct lp_type type
, const void *src
)
288 for (i
= 0; i
< type
.length
; ++i
) {
295 value
= *((const float *)src
+ i
);
298 value
= *((const double *)src
+ i
);
304 fprintf(fp
, "%f", value
);
307 if(type
.sign
&& !type
.norm
) {
312 value
= *((const int8_t *)src
+ i
);
316 value
= *((const int16_t *)src
+ i
);
320 value
= *((const int32_t *)src
+ i
);
324 value
= *((const int64_t *)src
+ i
);
332 fprintf(fp
, format
, value
);
335 unsigned long long value
;
339 value
= *((const uint8_t *)src
+ i
);
340 format
= type
.norm
? "%2x" : "%4llu";
343 value
= *((const uint16_t *)src
+ i
);
344 format
= type
.norm
? "%4x" : "%6llx";
347 value
= *((const uint32_t *)src
+ i
);
348 format
= type
.norm
? "%8x" : "%11llx";
351 value
= *((const uint64_t *)src
+ i
);
352 format
= type
.norm
? "%16x" : "%21llx";
359 fprintf(fp
, format
, value
);
366 int main(int argc
, char **argv
)
368 unsigned verbose
= 0;
370 unsigned long n
= 1000;
374 for(i
= 1; i
< argc
; ++i
) {
375 if(strcmp(argv
[i
], "-v") == 0)
377 else if(strcmp(argv
[i
], "-o") == 0)
378 fp
= fopen(argv
[++i
], "wt");
388 /* Warm up the caches */
389 test_some(0, NULL
, 100);
391 write_tsv_header(fp
);
395 success
= test_some(verbose
, fp
, n
);
397 success
= test_all(verbose
, fp
);
402 return success
? 0 : 1;