Skip to content

Optimizing Cholesky Factorization with Intel AVX Instructions

License

Notifications You must be signed in to change notification settings

olekscode/Cholesky-AVX

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Optimizing Cholesky Factorization with Intel AVX Instructions

This is the final project for the Distriduted Algorithms class at the Ukrainian Catholic University.

Software packages like R call native functions highly optimized native libraries like LAPACK, BLAS or Intel MKL. As of this time only MKL library makes use of AVX instructions of Intel processors, which gives it an amazing advantage over competitors.

In this work I demonstrate how AVX instructions can be used to speed up the execution of widely used numerical algorithms, using Cholesky factorization as an example. This algorithm was chosen because of its simplicity and wide range of applications.

Keywords: SIMD, AVX, parallel algorithms, numerical methods, Cholesky factorization

Project structure