genericopenlibs/liboil/tsrc/testsuite/stride/src/stride.c
branchRCL_3
changeset 56 acd3cd4aaceb
equal deleted inserted replaced
54:4332f0f7be53 56:acd3cd4aaceb
       
     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/liboilprototype.h>
       
    31 #include <liboil/liboiltest.h>
       
    32 #include <liboil/liboilcpu.h>
       
    33 #include <liboil/liboilrandom.h>
       
    34 #include <liboil/liboil.h>
       
    35 #include <ctype.h>
       
    36 #include <stdlib.h>
       
    37 #include <string.h>
       
    38 #include <math.h>
       
    39 
       
    40 
       
    41 #define LOG_FILE "c:\\logs\\testsuite_stride_log1.txt"
       
    42 #include "std_log_result.h"
       
    43 #define LOG_FILENAME_LINE __FILE__, __LINE__
       
    44 
       
    45 void create_xml(int result)
       
    46 {
       
    47     if(result)
       
    48         assert_failed = 1;
       
    49     
       
    50     testResultXml("testsuite_stride");
       
    51     close_log_file();
       
    52 }
       
    53 
       
    54 void hist(OilTest *Test);
       
    55 
       
    56 int verbose = 0;
       
    57 int fail = 0;
       
    58 
       
    59 int main (int argc, char *argv[])
       
    60 {
       
    61   OilFunctionClass *klass;
       
    62   OilFunctionImpl *impl;
       
    63   OilTest *test;
       
    64   int i;
       
    65   int n;
       
    66   int j;
       
    67   int ret;
       
    68   unsigned int cpu_flags;
       
    69   //xmlfile = "stride";
       
    70   std_log(LOG_FILENAME_LINE, "Test Started testsuite_stride");
       
    71 
       
    72   if (argc > 1 && strcmp(argv[1],"-v") == 0) {
       
    73     verbose = 1;
       
    74   }
       
    75   oil_init ();
       
    76 
       
    77   cpu_flags = oil_cpu_get_flags ();
       
    78   n = oil_class_get_n_classes ();
       
    79   
       
    80   for (i=0;i<n; i++ )
       
    81   {
       
    82       klass = oil_class_get_by_index(i);
       
    83       std_log(LOG_FILENAME_LINE,"Class Name %s %d\n",klass->name, i);
       
    84 
       
    85       test = oil_test_new (klass);
       
    86 
       
    87       if (test == NULL) 
       
    88       {
       
    89           std_log(LOG_FILENAME_LINE,"class \"%s\" has  bad prototype\n", klass->name);
       
    90           assert_failed = fail = 1; 
       
    91           continue;
       
    92       }
       
    93       oil_test_set_iterations (test, 1);
       
    94       test->n = 1 + oil_rand_u8();
       
    95       test->m = 1 + oil_rand_u8();
       
    96 
       
    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
       
   100       
       
   101       for(j=0;j<OIL_ARG_LAST;j++)
       
   102       {
       
   103           if (test->params[j].is_stride) 
       
   104           {
       
   105               test->params[j].value += oil_type_sizeof(test->params[j].type) *
       
   106               (oil_rand_u8()&0xf);
       
   107           }
       
   108       }
       
   109       test->inited = 0;
       
   110 
       
   111       for (impl = klass->first_impl; impl; impl = impl->next) 
       
   112       {
       
   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");
       
   116           } 
       
   117           else 
       
   118           {
       
   119               ret = oil_test_check_impl (test, impl);
       
   120               if (!ret) 
       
   121               {
       
   122                   assert_failed = fail = 1;
       
   123                   oil_test_free (test);
       
   124                   std_log(LOG_FILENAME_LINE, "Test Failed");
       
   125                   create_xml(1);
       
   126                   return fail;
       
   127               }
       
   128               
       
   129           }
       
   130           
       
   131       }
       
   132 
       
   133       oil_test_free (test);
       
   134   }
       
   135   
       
   136   if(assert_failed)
       
   137       std_log(LOG_FILENAME_LINE,"Test Fail");
       
   138   else
       
   139       std_log(LOG_FILENAME_LINE,"Test Successful");
       
   140   create_xml(0);
       
   141   return fail;
       
   142 }
       
   143 
       
   144 void
       
   145 hist(OilTest *test)
       
   146 {
       
   147   double ave;
       
   148   double std;
       
   149   int max_i;
       
   150   double off;
       
   151   double s;
       
   152   double s2;
       
   153   int i;
       
   154   int n;
       
   155   double x;
       
   156 
       
   157   do {
       
   158     s = s2 = 0;
       
   159     n = 0;
       
   160     max_i = -1;
       
   161     for(i=0;i<10;i++){
       
   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]) {
       
   168           max_i = i;
       
   169         }
       
   170       }
       
   171     }
       
   172 
       
   173     ave = s / n;
       
   174     std = sqrt (s2 - s * s / n + n*n) / (n-1);
       
   175     off = (test->prof.hist_time[max_i] - ave)/std;
       
   176 
       
   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");
       
   179 
       
   180     if (off > 4.0) {
       
   181       test->prof.hist_count[max_i] = 0;
       
   182     }
       
   183   } while (off > 4.0);
       
   184   printf("    ave=%g std=%g\n", ave, std);
       
   185 }
       
   186 
       
   187