Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jiegec/machine-tester
- Owner: jiegec
- License: mit
- Created: 2020-11-12T04:17:19.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-03T08:06:26.000Z (over 2 years ago)
- Last Synced: 2024-10-26T22:49:10.939Z (3 months ago)
- Language: C++
- Homepage:
- Size: 50.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 ...
```