Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jiegec/machine-tester

A small utility to test machines.
https://github.com/jiegec/machine-tester

Last synced: about 2 months ago
JSON representation

A small utility to test machines.

Awesome Lists containing this project

README

        

# Machine Tester

Build:

```shell
$ mkdir -p build
$ cd build
# Find BLAS automatically
$ cmake ..
# Use OpenBLAS
$ cmake .. -DBLA_VENDOR=OpenBLAS
# Use BLIS
$ cmake .. -DBLA_VENDOR=FLAME
```

Usage:

```shell
# Slurm
srun -N $NNODES ./machine_tester
# OpenMPI
mpirun --hostfile -n $NNODES -N 1 ./machine_tester
# Run w/o TCP BTL
mpirun -mca btl ^tcp ...
# Run w/ UCX PML
mpirun -mca pml ucx ...
```