First public contribution.
2 * LIBOIL - Library of Optimized Inner Loops
3 * Copyright (c) 2004 David A. Schleef <ds@schleef.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
30 #include <liboil/liboilprototype.h>
31 #include <liboil/liboiltest.h>
32 #include <liboil/liboilcpu.h>
33 #include <liboil/liboilrandom.h>
34 #include <liboil/liboil.h>
41 #define LOG_FILE "c:\\logs\\testsuite_stride_log1.txt"
42 #include "std_log_result.h"
43 #define LOG_FILENAME_LINE __FILE__, __LINE__
45 void create_xml(int result)
50 testResultXml("testsuite_stride");
54 void hist(OilTest *Test);
59 int main (int argc, char *argv[])
61 OilFunctionClass *klass;
62 OilFunctionImpl *impl;
68 unsigned int cpu_flags;
70 std_log(LOG_FILENAME_LINE, "Test Started testsuite_stride");
72 if (argc > 1 && strcmp(argv[1],"-v") == 0) {
77 cpu_flags = oil_cpu_get_flags ();
78 n = oil_class_get_n_classes ();
82 klass = oil_class_get_by_index(i);
83 std_log(LOG_FILENAME_LINE,"Class Name %s %d\n",klass->name, i);
85 test = oil_test_new (klass);
89 std_log(LOG_FILENAME_LINE,"class \"%s\" has bad prototype\n", klass->name);
90 assert_failed = fail = 1;
93 oil_test_set_iterations (test, 1);
94 test->n = 1 + oil_rand_u8();
95 test->m = 1 + oil_rand_u8();
97 std_log(LOG_FILENAME_LINE, "ref impl %s",klass->reference_impl->name);
98 oil_test_check_impl (test, klass->reference_impl); //Testing whether an appropriate implementation is suitable or not
99 //Runs the testing procedure described by test on the implementation impl
101 for(j=0;j<OIL_ARG_LAST;j++)
103 if (test->params[j].is_stride)
105 test->params[j].value += oil_type_sizeof(test->params[j].type) *
111 for (impl = klass->first_impl; impl; impl = impl->next)
113 std_log(LOG_FILENAME_LINE," %s\n", impl->name);
114 if ((impl->flags & OIL_CPU_FLAG_MASK) & ~cpu_flags){
115 std_log(LOG_FILENAME_LINE, "Not supported");
119 ret = oil_test_check_impl (test, impl);
122 assert_failed = fail = 1;
123 oil_test_free (test);
124 std_log(LOG_FILENAME_LINE, "Test Failed");
133 oil_test_free (test);
137 std_log(LOG_FILENAME_LINE,"Test Fail");
139 std_log(LOG_FILENAME_LINE,"Test Successful");
162 x = test->prof.hist_time[i];
163 s2 += x * x * test->prof.hist_count[i];
164 s += x * test->prof.hist_count[i];
165 n += test->prof.hist_count[i];
166 if (test->prof.hist_count[i] > 0) {
167 if (max_i == -1 || test->prof.hist_time[i] > test->prof.hist_time[max_i]) {
174 std = sqrt (s2 - s * s / n + n*n) / (n-1);
175 off = (test->prof.hist_time[max_i] - ave)/std;
177 printf(" ave=%g std=%g max=%ld off=%g %s\n",
178 ave, std, test->prof.hist_time[max_i], off, (off>4.0)?"yes":"no");
181 test->prof.hist_count[max_i] = 0;
184 printf(" ave=%g std=%g\n", ave, std);