Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olekscode/cholesky-avx
Optimizing Cholesky Factorization with Intel AVX Instructions
https://github.com/olekscode/cholesky-avx
avx cholesky-decomposition cholesky-factorization intrinsics numerical-methods parallel-computing simd
Last synced: 15 days ago
JSON representation
Optimizing Cholesky Factorization with Intel AVX Instructions
- Host: GitHub
- URL: https://github.com/olekscode/cholesky-avx
- Owner: olekscode
- License: mit
- Created: 2018-06-04T14:58:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-05T01:35:36.000Z (over 6 years ago)
- Last Synced: 2024-10-31T06:42:02.380Z (2 months ago)
- Topics: avx, cholesky-decomposition, cholesky-factorization, intrinsics, numerical-methods, parallel-computing, simd
- Language: C++
- Homepage:
- Size: 1.45 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Optimizing Cholesky Factorization with Intel AVX Instructions
This is the final project for the Distriduted Algorithms class at the [Ukrainian Catholic University](https://ucu.edu.ua).
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](https://software.intel.com/en-us/articles/performance-comparison-of-openblas-and-intel-math-kernel-library-in-r).
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
* [Project report](report/CholeskyAVX.pdf)
* [R script for generating data](datagen/GenerateMatrix.R)
* [Source code](src/)
* [Experimental results](data/experiment_results.csv)
* [Script for visualizing results](visualization/exrepiment.R)