Template:Chapter Page: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
<div> | <div> | ||
<div class="title"><h1>Open Encyclopedia of Parallel Algorithmic Features</h1></div> | |||
<div class="ch-navber" style="display: flex; justify-content: space-between;"> | <div class="ch-navber" style="display: flex; justify-content: space-between;"> | ||
<div class="center-side" style="max-width: | <div class="center-side" style="max-width: 60%;"> | ||
<div style="margin-top: 30px;"> | <div style="margin-top: 30px;"> | ||
<h3 style="background: #d0e5f5;padding: 15px;font-weight: 600;color: #000;font-size: 22px;margin:unset;text-align:center;">Welcome! Join us!</h3> | <h3 style="background: #d0e5f5;padding: 15px;font-weight: 600;color: #000;font-size: 22px;margin:unset;text-align:center;">Welcome! Join us!</h3> | ||
| Line 55: | Line 55: | ||
</div> | </div> | ||
<div class="right-side" style="max-width: | <div class="right-side" style="max-width: 25%;"> | ||
<div style="margin-top: 30px;"> | <div style="margin-top: 30px;"> | ||
<h3 style="background: #d0e5f5;padding: 15px;font-weight: 600;color: #000;font-size: 22px;margin:unset;text-align:center;">Today’s featured picture</h3> | <h3 style="background: #d0e5f5;padding: 15px;font-weight: 600;color: #000;font-size: 22px;margin:unset;text-align:center;">Today’s featured picture</h3> | ||
Revision as of 12:41, 20 May 2022
Open Encyclopedia of Parallel Algorithmic Features
Welcome! Join us!
AlgoWiki is an open encyclopedia of algorithms’ properties and features of their implementations on different hardware and software platforms from mobile to extreme scale, which allows for collaboration with the worldwide computing community on algorithm descriptions.
AlgoWiki provides an exhaustive description of an algorithm. In addition to classical algorithm properties such as serial complexity, AlgoWiki also presents additional information, which together provides a complete description of the algorithm: its parallel complexity, parallel structure, determinacy, data locality, performance and scalability estimates, communication profiles for specific implementations, and many others.
Read More
Project structure
Algorithm classification — the main section of AlgoWiki which contains descriptions of all algorithms. Algorithms are added to the appropriate category of the classification, and classification is expanded with new sections if necessary.
Featured article
Cholesky decomposition
1 Properties and structure of the algorithm
1.1 General description
The Cholesky decomposition algorithm was first proposed by Andre-Louis Cholesky (October 15, 1875 - August 31, 1918) at the end of the First World War shortly before he was killed in battle. He was a French military officer and mathematician. The idea of this algorithm was published in 1924 by his fellow officer and, later, was used by Banachiewicz in 1938 [7]. In the Russian mathematical literature, the Cholesky decomposition is also known as the square-root method [1-3] due to the square root operations used in this decomposition and not used in Gaussian elimination.
Originally, the Cholesky decomposition was used only for dense real symmetric positive definite matrices. At present, the application of this decomposition is much wider. For example, it can also be employed for the case of Hermitian matrices. In order to increase the computing performance, its block versions are often applied.
In the case of sparse matrices, the Cholesky decomposition is also widely used as the main stage of a direct method for solving linear systems. In order to reduce the memory requirements and the profile of the matrix, special reordering strategies are applied to minimize the number of arithmetic operations. A number of reordering strategies are used to identify the independent matrix blocks for parallel computing systems.
1.2 Mathematical description
Input data: a symmetric positive definite matrix A whose elements are denoted by aij).
Output data: the lower triangular matrix L whose elements are denoted by lij).