TCE-IP

From HPCRL Wiki
(Difference between revisions)
Jump to: navigation, search
(oARhXLssbisOu)
 
(963 intermediate revisions by 4 users not shown)
Line 1: Line 1:
http://pote1237.blackapplehost.com/ swat 4 serial number
+
=== Introduction ===
http://devu8413.700megs.com/ crysis editor
+
The IP-TCE library is a set of C functions designed to provide
http://toya1402.mycyberway.com/ 3dmark vantage trial
+
high-performance array index permutation (index sorting), an important
http://stoy6528.phreesite.com/ nfsu2 no cd crack
+
group of kernels used in many scientific applications and compilation
http://ther1500.t35.com/ assassins creed 2 the  
+
techniques. The generation of the library code combines analytical and
http://pred0512.freehostia.com/ south park character version
+
empirical approaches. The details of how to generate the efficient 2-D IP
http://teod4535.my3gb.com/ watch chappelle show online
+
(Matrix Transposition) code can be found in [1]. For high-dimensional arrays,
http://pote1237.blackapplehost.com/poweriso-serial-number.html serial number software
+
with challenges such as high indexing costs and short dimensions, we employ
http://devu8413.700megs.com/crysis-vs.html crysis vs
+
optimizations such as restricting code versions, using one-level tiling and
http://toya1402.mycyberway.com/3dmark-vantage-basic.html 3dmark vantage on  
+
generating indexing code to achieve high performance without code size
http://stoy6528.phreesite.com/stronghold-2-no-cd-crack.html battlefield 2 no cd crack
+
explosion.
http://ther1500.t35.com/does-assassins-creed-2-come.html about assassins creed 2  
+
 
http://pred0512.freehostia.com/south-park-character-and.html south park character pictures
+
The source code we provide does index permutation on 2-D,4-D and 6-D
http://teod4535.my3gb.com/watch-greek-tv-show-online.html watch muppet show online
+
64-bit floating point arrays on IA-32 machines. Except for the 2-D functions that
http://pote1237.blackapplehost.com/webcammax-serial-number.html serial number cracker
+
have more complicated optimizations than the others, the library employs SSE2
http://devu8413.700megs.com/crysis-iso.html crysis bonus
+
instructions when the fastest varying dimensions of source and destination
http://toya1402.mycyberway.com/3dmark-vantage-for-xp.html 3dmark vantage jane
+
arrays are multiples of vector sizes in elements, otherwise a scalar version
http://stoy6528.phreesite.com/crusader-no-cd-crack.html settlers 6 no cd crack
+
is chosen. The user should be able to modify our code to get IP code working for
http://ther1500.t35.com/assassins-creed-pc-specs.html assassins creed images
+
other dimension numbers.
http://pred0512.freehostia.com/south-park-character-version-3.html south park character genorator
+
 
http://teod4535.my3gb.com/watch-montel-williams-show-online.html watch reba tv show online
+
The IP-TCE library implements two variants of index permutation. One variant
http://pote1237.blackapplehost.com/fetch-53-serial-number.html mobile serial number
+
implements B = factor * Permute(A, permutation) and the other one is the
http://devu8413.700megs.com/crysis-game-video.html 3870x2 crysis
+
accumulative version B = B + factor * Permute(A, permutation). Doing so makes
http://toya1402.mycyberway.com/3dmark-vantage-navigation.html 8800gts 3dmark
+
our code compatible with the index permutation routines in nwchem/tce. We have
http://stoy6528.phreesite.com/arcanum-no-cd-crack.html grid no cd crack
+
been able to plug our code into nwchem/tce and obtained overall performance
http://ther1500.t35.com/assassins-creed-requirments.html assassins creed outfit
+
improvements ranging from 74% to 253% with different methods and inputs.
http://pred0512.freehostia.com/south-park-character-generate.html south park season 12 free
+
 
http://teod4535.my3gb.com/girls-tv-show-watch-online.html show series 1 watch online
+
=== Compilation ===
http://pote1237.blackapplehost.com/serial-number-warez.html serial number warez
+
The library code can be compiled by either the Intel C compiler or the GNU C
http://devu8413.700megs.com/crysis-pictures.html 8800gs crysis
+
compiler. We used icc 10.1 and gcc 4.1.2 when testing the code. If other
http://toya1402.mycyberway.com/3dmark-video.html 6800 3dmark
+
compilers such as pgcc is used, the user is responsible for finding the
http://stoy6528.phreesite.com/no-cd-crack-help.html no cd crack work
+
alignment directives used by the compiler and changing the library code
http://ther1500.t35.com/assassins-creed-xbox-achievements.html assassins creed xbox 360 hints
+
correspondingly.
http://pred0512.freehostia.com/season-12-of-south-park.html south park season 11 free
+
 
http://teod4535.my3gb.com/watch-george-lopez-show-online-for-free.html watch greek show online
+
=== Library Usage ===
http://pred0512.freehostia.com/south-park-season-10-mp4.html south park season 12 over
+
The interface of the IP-TCE library is compatible with the index permutation
 +
routines in nwchem/tce and is mainly for Fortran used. For example,
 +
the prototype of the 4-D non-accumulative permutation routine is:
 +
 
 +
                  tce_sort_4_(double* unsorted,double* sorted,
 +
                              int* a_in, int* b_in, int* c_in, int* d_in,
 +
                              int* i_in, int* j_in, int* k_in, int* l_in,
 +
                              double* factor_in)
 +
 
 +
Where all the arguments are pointers and function names are in the lowercase
 +
and end with "_". If needed,  the user can write a wrapper or directly modify
 +
the function (which is actually a wrapper to the SIMD and scalar IP functions)
 +
to obtain a desired interface.
 +
 
 +
=== Contact Info ===
 +
Please contact Qingda Lu(luq@cse.ohio-state.edu) for questions.
 +
 
 +
=== Reference ===
 +
[1] Qingda Lu, Sriram Krishnamoorthy, P. Sadayappan: Combining analytical and
 +
empirical approaches in tuning matrix transposition. 15th International
 +
Conference on Parallel Architecture and Compilation Techniques(PACT 2006):233-242

Latest revision as of 23:34, 20 February 2009

Contents

Introduction

The IP-TCE library is a set of C functions designed to provide high-performance array index permutation (index sorting), an important group of kernels used in many scientific applications and compilation techniques. The generation of the library code combines analytical and empirical approaches. The details of how to generate the efficient 2-D IP (Matrix Transposition) code can be found in [1]. For high-dimensional arrays, with challenges such as high indexing costs and short dimensions, we employ optimizations such as restricting code versions, using one-level tiling and generating indexing code to achieve high performance without code size explosion.

The source code we provide does index permutation on 2-D,4-D and 6-D 64-bit floating point arrays on IA-32 machines. Except for the 2-D functions that have more complicated optimizations than the others, the library employs SSE2 instructions when the fastest varying dimensions of source and destination arrays are multiples of vector sizes in elements, otherwise a scalar version is chosen. The user should be able to modify our code to get IP code working for other dimension numbers.

The IP-TCE library implements two variants of index permutation. One variant implements B = factor * Permute(A, permutation) and the other one is the accumulative version B = B + factor * Permute(A, permutation). Doing so makes our code compatible with the index permutation routines in nwchem/tce. We have been able to plug our code into nwchem/tce and obtained overall performance improvements ranging from 74% to 253% with different methods and inputs.

Compilation

The library code can be compiled by either the Intel C compiler or the GNU C compiler. We used icc 10.1 and gcc 4.1.2 when testing the code. If other compilers such as pgcc is used, the user is responsible for finding the alignment directives used by the compiler and changing the library code correspondingly.

Library Usage

The interface of the IP-TCE library is compatible with the index permutation routines in nwchem/tce and is mainly for Fortran used. For example, the prototype of the 4-D non-accumulative permutation routine is:

                  tce_sort_4_(double* unsorted,double* sorted,
                              int* a_in, int* b_in, int* c_in, int* d_in,
                              int* i_in, int* j_in, int* k_in, int* l_in,
                              double* factor_in)

Where all the arguments are pointers and function names are in the lowercase and end with "_". If needed, the user can write a wrapper or directly modify the function (which is actually a wrapper to the SIMD and scalar IP functions) to obtain a desired interface.

Contact Info

Please contact Qingda Lu(luq@cse.ohio-state.edu) for questions.

Reference

[1] Qingda Lu, Sriram Krishnamoorthy, P. Sadayappan: Combining analytical and empirical approaches in tuning matrix transposition. 15th International Conference on Parallel Architecture and Compilation Techniques(PACT 2006):233-242