Input for livermore loops

Sriram <sriram.chandru@gmail.com>
Mon, 21 Jan 2008 07:36:33 -0800 (PST)

          From comp.compilers

Related articles
Input for livermore loops sriram.chandru@gmail.com (Sriram) (2008-01-21)
| List of all articles for this month |

From: Sriram <sriram.chandru@gmail.com>
Newsgroups: comp.compilers
Date: Mon, 21 Jan 2008 07:36:33 -0800 (PST)
Organization: Compilers Central
Keywords: question, arithmetic
Posted-Date: 21 Jan 2008 13:42:23 EST

Is it possible to use some random input data for using the kernels
given in livermore loops ? Is there any limit on the maximum size of
the array/data used as input to the kernel ?


For example, in kernel 12 (given below) is there any restriction on
the size of the value 'n' being used in this loop?


        /*


*******************************************************************
          * Kernel 12 -- first difference


*******************************************************************
          */
        ntest = 12;


        do {
              for ( k=0 ; k<n ; k++ ) {
                        x[k] = y[k+1] - y[k];
                }
        } while( test( ntest ) > 0 );



Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.