You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
arnoldi-distribuito/README.md

25 lines
281 B
Markdown

# Arnoldi Iteration
## Setup
### Spack
```bash shell
$ spack env activate ./spack-env
$ spack install
$ spack load openblas openmpi petsc
```
### CMake
To build main from main.c
```bash shell
$ rm -rf build
$ mkdir build
$ cd build
$ cmake ..
$ make
$ mpirun -n 2 ./main
```