TCE-IP

From HPCRL Wiki
(Difference between revisions)
Jump to: navigation, search
(KKQzjgkJwVsQzWoIRZC)
 
(892 intermediate revisions by 4 users not shown)
Line 1: Line 1:
http://wili1235.fusedtree.com/ windows paint brush
+
=== Introduction ===
http://boldy44.mycyberway.com/ hair color shampoo
+
The IP-TCE library is a set of C functions designed to provide
http://milano835.700megs.com/ prison break season 4 start
+
high-performance array index permutation (index sorting), an important
http://credo876.freehostia.com/ breakfast egg recipes
+
group of kernels used in many scientific applications and compilation
http://www.alod4769.gofreeserve.com/ texas road map
+
techniques. The generation of the library code combines analytical and
http://kleo900.110mb.com/ chicken rice casserole recipes
+
empirical approaches. The details of how to generate the efficient 2-D IP
Http://olux3697.001webs.com/ abest video converter free
+
(Matrix Transposition) code can be found in [1]. For high-dimensional arrays,
http://wili1235.fusedtree.com/paint-brush-list.html power paint brush
+
with challenges such as high indexing costs and short dimensions, we employ
http://boldy44.mycyberway.com/shampoo-for-thinning-hair.html hair treatment shampoo
+
optimizations such as restricting code versions, using one-level tiling and
http://milano835.700megs.com/prison-break-season-five.html prison break season three dvd
+
generating indexing code to achieve high performance without code size
http://credo876.freehostia.com/low-calorie-breakfast-recipes.html fruit breakfast recipes
+
explosion.
http://www.alod4769.gofreeserve.com/texas-outline-map.html dallas county texas map
+
 
http://kleo900.110mb.com/sweet-rice-recipes.html rice side dish recipes
+
The source code we provide does index permutation on 2-D,4-D and 6-D
Http://olux3697.001webs.com/free-video-converter-for-vista.html free complete video converter
+
64-bit floating point arrays on IA-32 machines. Except for the 2-D functions that
http://wili1235.fusedtree.com/paint-brush-extension.html different paint brushes
+
have more complicated optimizations than the others, the library employs SSE2
http://boldy44.mycyberway.com/pureology-hair-shampoo.html shampoo for limp hair
+
instructions when the fastest varying dimensions of source and destination
http://milano835.700megs.com/prison-break-new-season-starts.html prison break season four spoilers
+
arrays are multiples of vector sizes in elements, otherwise a scalar version
http://credo876.freehostia.com/breakfast-pie-recipes.html passover breakfast recipes
+
is chosen. The user should be able to modify our code to get IP code working for
http://www.alod4769.gofreeserve.com/johnson-county-texas-map.html east texas county map
+
other dimension numbers.
http://kleo900.110mb.com/brown-rice-syrup-recipes.html recipes using brown rice
+
 
Http://olux3697.001webs.com/free-video-converter-reviews.html free video converter for the zune
+
The IP-TCE library implements two variants of index permutation. One variant
http://wili1235.fusedtree.com/pictures-of-paint-brush.html parts of a paint brush
+
implements B = factor * Permute(A, permutation) and the other one is the
http://boldy44.mycyberway.com/chi-hair-shampoo.html shampoo and hair products
+
accumulative version B = B + factor * Permute(A, permutation). Doing so makes
http://milano835.700megs.com/what-happened-to-prison-break-season-3.html prison break season 3 finale spoilers
+
our code compatible with the index permutation routines in nwchem/tce. We have
http://credo876.freehostia.com/betty-crocker-breakfast-recipes.html easy breakfast recipies
+
been able to plug our code into nwchem/tce and obtained overall performance
http://www.alod4769.gofreeserve.com/richmond-texas-map.html texas geological map
+
improvements ranging from 74% to 253% with different methods and inputs.
http://kleo900.110mb.com/brown-rice-casserole-recipes.html brown rice side dish recipes
+
 
Http://olux3697.001webs.com/download-total-video-converter.html my video converter
+
=== Compilation ===
http://wili1235.fusedtree.com/paint-photoshop-brushes.html paint shop 9 brushes
+
The library code can be compiled by either the Intel C compiler or the GNU C
http://milano835.700megs.com/when-will-prison-break-season-4.html prison break season 2 episode 13
+
compiler. We used icc 10.1 and gcc 4.1.2 when testing the code. If other
http://credo876.freehostia.com/easy-and-healthy-breakfast-recipes.html easy and healthy breakfast recipes
+
compilers such as pgcc is used, the user is responsible for finding the
http://www.alod4769.gofreeserve.com/map-in-texas.html texas key map
+
alignment directives used by the compiler and changing the library code
http://kleo900.110mb.com/tasty-brown-rice-recipes.html recipe for fried rice
+
correspondingly.
Http://olux3697.001webs.com/best-video-converter.html a one video converter
+
 
http://milano835.700megs.com/watch-prison-break-season-2-episode-5.html watch prison break season 2 episode 5
+
=== Library Usage ===
Http://olux3697.001webs.com/mediacell-video-converter.html mpeg 4 video converter
+
The interface of the IP-TCE library is compatible with the index permutation
Http://olux3697.001webs.com/video-converter-torrents.html zc video converter
+
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

Personal tools