https://github.com/psctoolkit/psctoolkit
Main repository of the PSCToolkit package, it contains pointer to all the various part of the library.
https://github.com/psctoolkit/psctoolkit
multigrid numerical-linear-algebra preconditioning scientific-computing sparse-matrix
Last synced: about 1 month ago
JSON representation
Main repository of the PSCToolkit package, it contains pointer to all the various part of the library.
- Host: GitHub
- URL: https://github.com/psctoolkit/psctoolkit
- Owner: psctoolkit
- Created: 2020-06-30T08:12:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-30T09:36:51.000Z (5 months ago)
- Last Synced: 2025-02-07T09:15:02.763Z (3 months ago)
- Topics: multigrid, numerical-linear-algebra, preconditioning, scientific-computing, sparse-matrix
- Language: Dockerfile
- Homepage: https://psctoolkit.github.io
- Size: 40 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PSCToolkit
This repository contains the various libraries that make up the Parallel Sparse Computation Toolkit (PSCToolkit) as submodules.
- PSBLAS
- PSBLAS-EXT
- AMG4PSBLASAll the relevant information can be found at: [psctoolkit.github.io](https://psctoolkit.github.io/). Moreover, it contains a version of the SUNDIALS library interfacing the PSCToolkit routines for linear algebra (distributed matrices and vectors), linear solvers and preconditioners.
## How to get
To clone the **the repository in the maintenance versions** do
```bash
git clone --recurse-submodules https://github.com/psctoolkit/psctoolkit.git
```
or if you want to use ssh:
```bash
git clone --recurse-submodules [email protected]:psctoolkit/psctoolkit.git
```
To keep the development version updated with the changes in the individual repositories, use the command:
```bash
git submodule update --recursive --remote
```
or to execute ```git pull``` inside each of the folders to synchronize to the latest version.>[!warning]
> the various submodules point to mutually compatible versions of the library. Branch switching and pull operations could damage compatibility, especially moving into development branches. The easiest way is to download the latest **stable release**. This contains all versions of the packages that can be compiled together.### Docker
Each push to this repository starts building a docker image on [Dockerhub](https://hub.docker.com/r/psctoolkit/psctoolkit). You can download the latest compiled version from a machine running Docker with the command:
```
docker pull psctoolkit/psctoolkit
```
Once the image is obtained, you can launch an interactive shell on your machine with:
```
docker run -it psctoolkit:latest /bin/bash
```
If you want to build everything on your local machine, an alternative is - once the repository has been cloned - run
```
cd psctoolkit
docker build - < Dockerfile
```## How to install
The possible installation order are:
1) PSBLAS -> PSBLAS-EXT -> AMG4PSBLAS -> SUNDIALS
2) PSBLAS -> AMG4PSBLASEach of the libraries contains its own installation instructions. See information on [https://psctoolkit.github.io/libraries/](https://psctoolkit.github.io/libraries/).
## How to cite
If you use these libraries in the production of scientific articles visit the [publications page](https://psctoolkit.github.io/publication/) on the site to use the correct references. Also [let us know](mailto:[email protected]) what you used them for and we will be happy to add you to the list of field applications.