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/liboil.h>
36 #include <liboil/liboilprototype.h>
37 #include <liboil/liboiltest.h>
38 #include <liboil/liboilcpu.h>
39 #define LOG_FILE "c:\\logs\\testsuite_test1_log1.txt"
40 #include "std_log_result.h"
41 #define LOG_FILENAME_LINE __FILE__, __LINE__
43 void create_xml(int result)
48 testResultXml("testsuite_test1");
52 void hist(OilTest *Test);
54 int main (int argc, char *argv[])
56 OilFunctionClass *klass;
57 OilFunctionImpl *impl;
63 unsigned int cpu_flags;
65 std_log(LOG_FILENAME_LINE, "Test Started testsuite_test1");
69 cpu_flags = oil_cpu_get_flags (); //Returns a bitmask containing the available CPU features
70 n = oil_class_get_n_classes ();
72 klass = oil_class_get_by_index(i);
74 printf("%s\n", klass->name);
75 std_log(LOG_FILENAME_LINE, "class name = %s\n",klass->name);
77 test = oil_test_new (klass); //Creates a new OilTest(structure describing how to test an OilFunctionImpl for an OilFunctionClass) for the OilFunctionClass represented by klass
79 std_log(LOG_FILENAME_LINE, "bad prototype");
80 printf(" bad prototype\n");
84 for (impl = klass->first_impl; impl; impl = impl->next)
86 printf(" %s\n", impl->name);
87 if ((impl->flags & OIL_CPU_FLAG_MASK) & ~cpu_flags)
89 std_log(LOG_FILENAME_LINE, "not supported");
90 printf("not supported\n");
95 ret = oil_test_check_impl (test, impl); //Runs the testing procedure described by test on the implementation impl
99 printf(" %lu %g\n",test->prof.min,
100 (double)test->prof.total/test->prof.n);
101 for(j=0;j<test->prof.hist_n;j++){
102 printf(" %lu %d\n",test->prof.hist_time[j],test->prof.hist_count[j]);
105 printf(" ave=%g std=%g\n", impl->profile_ave, impl->profile_std);
110 printf(" not tested\n");
111 oil_test_free (test);
112 std_log(LOG_FILENAME_LINE, "Test Failed");
119 oil_test_free (test); //Frees memory associated with test(OilTest)
121 std_log(LOG_FILENAME_LINE, "Test Successful");
145 x = test->prof.hist_time[i];
146 s2 += x * x * test->prof.hist_count[i];
147 s += x * test->prof.hist_count[i];
148 n += test->prof.hist_count[i];
149 if (test->prof.hist_count[i] > 0) {
150 if (max_i == -1 || test->prof.hist_time[i] > test->prof.hist_time[max_i]) {
157 std = sqrt (s2 - s * s / n + n*n) / (n-1);
158 off = (test->prof.hist_time[max_i] - ave)/std;
160 printf(" ave=%g std=%g max=%ld off=%g %s\n",
161 ave, std, test->prof.hist_time[max_i], off, (off>4.0)?"yes":"no");
164 test->prof.hist_count[max_i] = 0;
167 printf(" ave=%g std=%g\n", ave, std);