Difference between revisions of "HeadCrab"
Rlanderson (talk | contribs) (Created page with '{{GPU621/DPS921 Index | 20161}} = Intel Math Kernel Library (MKL) = == Team Member == # [mailto:rlanderson@senecacollege.ca?subject=dps921 Rene Anderson] == Intro == Intel Mat…') |
Rlanderson (talk | contribs) |
||
Line 5: | Line 5: | ||
== Intro == | == Intro == | ||
− | Intel Math Kernel Library | + | '''Intel Math Kernel Library''' |
+ | |||
+ | MKL provides highly vectorized and threaded Linear Algebra, Fast Fourier Transforms, | ||
+ | Vector Math and Statistics functions. Intel MKL uses industry standard APIs. | ||
+ | This means that developers would have to make minor changes to their programs when | ||
+ | switching to MKL. | ||
+ | |||
+ | '''Intel MKL gives the developer control over the necessary trade-offs''' | ||
+ | |||
+ | #Result consistency vs performance | ||
+ | #Accuracy vs performance | ||
+ | |||
+ | Intel MKL is also compatible with your choice of compilers, languages, operating systems, linking and threading models. One library solution across multiple environments means only one library to learn and manage. | ||
+ | |||
+ | For this assignment I will be focusing on the Linear Algebra routines. | ||
+ | '''Linear Algebra''' | ||
+ | |||
+ | Intel MKL provides highly optimized BLAS routines | ||
+ | #BLAS Level 1 vector-vector | ||
+ | #BLAS Level 2 matrix-vector | ||
+ | #BLAS Level 3 matrix-matrix | ||
== Source code == | == Source code == | ||
+ | '''How to enable Intel MKL''' | ||
+ | Command line | ||
+ | #-mkl | ||
+ | #-mkl=parallel to link with standard threaded Intel MKL. | ||
+ | #-mkl=sequential to link with sequential version of Intel MKL. | ||
+ | #-mkl=cluster to link with Intel MKL cluster components (sequential) that use Intel MPI. | ||
== Useful Link == | == Useful Link == |
Revision as of 20:59, 4 April 2016
GPU621/DPS921 | Participants | Groups and Projects | Resources | Glossary
Contents
Intel Math Kernel Library (MKL)
Team Member
Intro
Intel Math Kernel Library
MKL provides highly vectorized and threaded Linear Algebra, Fast Fourier Transforms, Vector Math and Statistics functions. Intel MKL uses industry standard APIs. This means that developers would have to make minor changes to their programs when switching to MKL.
Intel MKL gives the developer control over the necessary trade-offs
- Result consistency vs performance
- Accuracy vs performance
Intel MKL is also compatible with your choice of compilers, languages, operating systems, linking and threading models. One library solution across multiple environments means only one library to learn and manage.
For this assignment I will be focusing on the Linear Algebra routines. Linear Algebra
Intel MKL provides highly optimized BLAS routines
- BLAS Level 1 vector-vector
- BLAS Level 2 matrix-vector
- BLAS Level 3 matrix-matrix
Source code
How to enable Intel MKL
Command line
- -mkl
- -mkl=parallel to link with standard threaded Intel MKL.
- -mkl=sequential to link with sequential version of Intel MKL.
- -mkl=cluster to link with Intel MKL cluster components (sequential) that use Intel MPI.