os/ossrv/genericopenlibs/liboil/tsrc/testsuite/test1/src/test1.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2  * LIBOIL - Library of Optimized Inner Loops
     3  * Copyright (c) 2004 David A. Schleef <ds@schleef.org>
     4  * All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions
     8  * are met:
     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.
    14  * 
    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.
    26  */
    27 
    28 
    29 #include <stdio.h>
    30 #include <liboil/liboil.h>
    31 #include <ctype.h>
    32 #include <stdlib.h>
    33 #include <string.h>
    34 #include <math.h>
    35 
    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__
    42 
    43 void create_xml(int result)
    44 {
    45     if(result)
    46         assert_failed = 1;
    47     
    48     testResultXml("testsuite_test1");
    49     close_log_file();
    50 }
    51 
    52 void hist(OilTest *Test);
    53 
    54 int main (int argc, char *argv[])
    55 {
    56   OilFunctionClass *klass;
    57   OilFunctionImpl *impl;
    58   OilTest *test;
    59   int i;
    60   int n;
    61   //int j;
    62   int ret;
    63   unsigned int cpu_flags;
    64   //xmlfile = "test1";
    65   std_log(LOG_FILENAME_LINE, "Test Started testsuite_test1");
    66   
    67   oil_init ();
    68 
    69   cpu_flags = oil_cpu_get_flags ();     //Returns a bitmask containing the available CPU features
    70   n = oil_class_get_n_classes ();       
    71   for (i=0;i<n; i++ ){
    72     klass = oil_class_get_by_index(i);
    73 
    74     printf("%s\n", klass->name);
    75     std_log(LOG_FILENAME_LINE, "class name = %s\n",klass->name);
    76 
    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
    78     if (test == NULL) {
    79       std_log(LOG_FILENAME_LINE, "bad prototype");
    80       printf("  bad prototype\n");
    81       continue;
    82     }
    83 
    84     for (impl = klass->first_impl; impl; impl = impl->next) 
    85     {
    86         printf("  %s\n", impl->name);
    87         if ((impl->flags & OIL_CPU_FLAG_MASK) & ~cpu_flags) 
    88         {
    89             std_log(LOG_FILENAME_LINE, "not supported");
    90             printf("not supported\n");
    91         } 
    92         else 
    93         {
    94             test->n = 1600;
    95             ret = oil_test_check_impl (test, impl);     //Runs the testing procedure described by test on the implementation impl
    96             if (ret) 
    97             {
    98                 #if 0
    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]);
   103                 }
   104                 #endif
   105                 printf("    ave=%g std=%g\n", impl->profile_ave, impl->profile_std);
   106                 //hist(test);
   107             } 
   108             else 
   109             {
   110                 printf("  not tested\n");
   111                 oil_test_free (test);
   112                 std_log(LOG_FILENAME_LINE, "Test Failed");
   113                 create_xml(1);
   114                 return 1;
   115             }
   116         }
   117     }//for loop
   118 
   119     oil_test_free (test);   //Frees memory associated with test(OilTest)
   120   }
   121   std_log(LOG_FILENAME_LINE, "Test Successful");
   122   create_xml(0);
   123   return 0;
   124 }
   125 
   126 
   127 void
   128 hist(OilTest *test)
   129 {
   130   double ave;
   131   double std;
   132   int max_i;
   133   double off;
   134   double s;
   135   double s2;
   136   int i;
   137   int n;
   138   double x;
   139 
   140   do {
   141     s = s2 = 0;
   142     n = 0;
   143     max_i = -1;
   144     for(i=0;i<10;i++){
   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]) {
   151           max_i = i;
   152         }
   153       }
   154     }
   155 
   156     ave = s / n;
   157     std = sqrt (s2 - s * s / n + n*n) / (n-1);
   158     off = (test->prof.hist_time[max_i] - ave)/std;
   159 
   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");
   162 
   163     if (off > 4.0) {
   164       test->prof.hist_count[max_i] = 0;
   165     }
   166   } while (off > 4.0);
   167   printf("    ave=%g std=%g\n", ave, std);
   168 }
   169 
   170