N (disambiguation): Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Eventhorizon51
No edit summary
en>GB fan
→‎Entertainment: one blue link, no piping
 
Line 1: Line 1:
{{primary sources|date=November 2012}}
Friends call him Royal. Managing people is how she makes money and she will not change it anytime soon. To play handball is the thing she loves most of all. Kansas is our beginning place and my mothers and fathers live nearby.<br><br>My website :: [http://Www.Isoevent.fr/en/node/986034 Www.Isoevent.fr]
{{Infobox Software
| name                      = ATLAS
| genre                      = [[Software library]]
| license                    = [[BSD license]]
| website                    = http://math-atlas.sourceforge.net
}}
 
'''Automatically Tuned Linear Algebra Software''' ('''ATLAS''') is a [[Library (computer science)|software library]] for [[linear algebra]]. It provides a mature [[open source]] implementation of [[Basic Linear Algebra Subprograms|BLAS]] [[application programming interface|APIs]] for [[C programming language|C]] and [[Fortran|Fortran77]].
 
ATLAS is often recommended as a way to automatically generate an [[Optimization (computer science)|optimized]] BLAS library. While its performance often trails that of specialized libraries written for one specific [[platform (computing)|hardware platform]], it is often the first or even only optimized BLAS implementation available on new systems and is a large improvement over the generic BLAS available at [[Netlib]]. For this reason, ATLAS is sometimes used as a performance baseline for comparison with other products.
 
ATLAS runs on most [[Unix]]-like operating systems and on [[Microsoft Windows]] (using [[Cygwin]]). It is released under a [[BSD license|BSD-style license]] without advertising clause, and many well-known mathematics applications including  [[MATLAB]], [[Mathematica]], [[Scilab]], [[Sage (mathematics software)|Sage]], and some builds of [[GNU Octave]] may use it.
 
==Functionality==
ATLAS provides a full implementation of the BLAS APIs as well as some additional functions from [[LAPACK]], a higher-level library built on top of BLAS. In BLAS, functionality is divided into three groups called levels 1, 2 and 3.
 
* Level 1 contains ''vector operations'' of the form
 
:<math>\mathbf{y} \leftarrow \alpha \mathbf{x} + \mathbf{y} \!</math>
 
:as well as scalar [[dot product]]s and [[norm (mathematics)|vector norm]]s, among other things.
 
* Level 2 contains ''matrix-vector operations'' of the form
 
:<math>\mathbf{y} \leftarrow \alpha A \mathbf{x} + \beta \mathbf{y} \!</math>
 
:as well as solving <math>T \mathbf{x} = \mathbf{y}</math> for '''x''' with <math>T</math> being triangular, among other things.
 
* Level 3 contains ''matrix-matrix operations'' such as the widely used [[General Matrix Multiply]] (GEMM) operation
 
:<math>C \leftarrow \alpha A B + \beta C \!</math>
 
:as well as solving <math>B \leftarrow \alpha T^{-1} B</math> for triangular matrices <math>T</math>, among other things.
 
==Optimization approach==
The [[Optimization (computer science)|optimization]] approach is called Automated Empirical Optimization of Software (AEOS), which identifies four fundamental approaches to computer assisted optimization of which ATLAS employs three:<ref>{{cite journal
| author = R. Clint Whaley, Antoine Petitet, and Jack J. Dongarra
| title = Automated Empirical Optimization of Software and the ATLAS Project
| journal = Parallel Computing
| volume = 27
| pages = 3–35
| year = 2001
| doi = 10.1016/S0167-8191(00)00087-9
| url = http://www.netlib.org/lapack/lawnspdf/lawn147.pdf
| format = [[Portable Document Format|PDF]]
| accessdate = 2006-10-06
}}</ref>
 
# [[Parameter (computer science)|Parameter]]ization—searching over the parameter space of a function, used for blocking factor, cache edge, ...
# Multiple implementation—searching through various approaches to implementing the same function, e.g., for [[Streaming SIMD Extensions|SSE]] support before intrinsics made them available in C code
# [[Automatic programming|Code generation]]—programs that write programs incorporating what knowledge they can about what will produce the best performance for the system
 
* Optimization of the level 1 BLAS uses parameterization and multiple implementation
: Every ATLAS level 1 BLAS function has its own kernel. Since it would be difficult to maintain thousands of cases in ATLAS there is little architecture specific optimization for Level 1 BLAS. Instead multiple implementation is relied upon to allow for [[compiler optimization]] to produce high performance implementation for the system.
 
* Optimization of the level 2 BLAS uses parameterization and multiple implementation
: With <math>N^2</math> data and <math>N^2</math> operations to perform the function is usually limited by bandwidth to memory, and thus there is not much opportunity for optimization
: All routines in the ATLAS level 2 BLAS are built from two Level 2 BLAS kernels:
** GEMV—matrix by vector multiply update:
::<math>\mathbf{y} \leftarrow \alpha A \mathbf{x} + \beta \mathbf{y} \!</math>
** GER—general rank 1 update from an outer product:
::<math>A \leftarrow \alpha \mathbf{x} \mathbf{y}^T + A \! </math>
 
* Optimization of the level 3 BLAS uses code generation and the other two techniques
: Since we have <math>N^3</math> ops with only <math>N^2</math> data, many opportunities for optimization
 
==Level 3 BLAS==
Most of the Level 3 BLAS is derived from [[General Matrix Multiply|GEMM]], so that is the primary focus of the optimization.
 
:<math>O(n^3)</math> operations vs. <math>O(n^2)</math> data
 
The intuition that the <math>n^3</math> operations will dominate over the <math>n^2</math> data accesses only works for roughly square matrices. 
The real measure should be some kind of surface area to volume.
The difference becomes important for very non-square matrices.
 
===Can it afford to copy?===
Copying the inputs allows the data to be arranged in a way that provides optimal access for the kernel functions,
but this comes at the cost of allocating temporary space, and an extra read and write of the inputs.
 
So the first question GEMM faces is, can it afford to copy the inputs?
 
If so,
* Put into block major format with good alignment
* Take advantage of user contributed kernels and cleanup
* Handle the transpose cases with the copy: make everything into TN (transpose - no-transpose)
* Deal with &alpha; in the copy
 
If not,
* Use the nocopy version
* Make no assumptions on the stride of matrix ''A'' and ''B'' in memory
* Handle all transpose cases explicitly
* No guarantee about alignment of data
* Support &alpha; specific code
* Run the risk of [[Translation Lookaside Buffer|TLB]] issues, bad strides, ...
 
The actual decision is made through a simple [[Heuristic (computer science)|heuristic]] which checks for "skinny cases".
 
===Cache edge===
For 2nd Level Cache blocking a single cache edge parameter is used.
The high level choose an order to traverse the blocks: ''ijk, jik, ikj, jki, kij, kji''.
These need not be the same order as the product is done within a block.
 
Typically chosen orders are ''ijk'' or ''jik''.
For ''jik'' the ideal situation would be to copy ''A'' and the ''NB'' wide panel of ''B''.
For ''ijk'' swap the role of ''A'' and ''B''.
 
Choosing the bigger of ''M'' or ''N'' for the outer loop reduces the footprint of the copy.
But for large ''K'' ATLAS does not even allocate such a large amount of memory.
Instead it defines a parameter, ''Kp'', to give best use of the L2 cache.
Panels are limited to ''Kp'' in length.
It first tries to allocate (in the ''jik'' case) <math>M*Kp + NB*Kp + NB*NB</math>.
If that fails it tries <math>2*Kp*NB + NB*NB</math>.
(If that fails it uses the no-copy version of GEMM, but this case is unlikely for reasonable choices of cache edge.)
''Kp'' is a function of cache edge and ''NB''.
 
==LAPACK==
When integrating the ATLAS BLAS with [[LAPACK]] an important consideration is the choice of blocking factor for LAPACK. If the ATLAS blocking factor is small enough the blocking factor of LAPACK could be set to match that of ATLAS.
 
To take advantage of recursive factorization, ATLAS provides replacement routines for some LAPACK routines. These simply overwrite the corresponding LAPACK routines from [[Netlib]].
 
==Need for installation==
Installing ATLAS on a particular platform is a challenging process which is typically done by a system vendor or a local expert and made available to a wider audience.
 
For many systems, architectural default parameters are available; these are essentially saved searches plus the results of hand tuning.
If the arch defaults work they will likely get 10-15% better performance than the install search. On such systems the installation process is greatly simplified.
 
==References==
<references />
 
==External links==
*[http://math-atlas.sourceforge.net/ math-atlas.sourceforge.net] Project homepage
*[http://math-atlas.sourceforge.net/devel/atlas_contrib/ User contribution to ATLAS]
*[http://math-atlas.sourceforge.net/devel/atlas_devel/ A Collaborative guide to ATLAS Development]
*The [http://math-atlas.sourceforge.net/faq.html#doc FAQ] has links to the Quick reference guide to BLAS and Quick reference to ATLAS LAPACK API reference
*[http://www.terborg.net/research/kml/installation.html Microsoft Visual C++ Howto] for ATLAS
 
{{Numerical linear algebra}}
 
[[Category:C libraries]]
[[Category:Fortran libraries]]
[[Category:Numerical software]]
[[Category:Numerical linear algebra]]

Latest revision as of 10:49, 23 November 2014

Friends call him Royal. Managing people is how she makes money and she will not change it anytime soon. To play handball is the thing she loves most of all. Kansas is our beginning place and my mothers and fathers live nearby.

My website :: Www.Isoevent.fr