https://github.com/ivotron/docker-blis
blis in a container
https://github.com/ivotron/docker-blis
Last synced: about 2 months ago
JSON representation
blis in a container
- Host: GitHub
- URL: https://github.com/ivotron/docker-blis
- Owner: ivotron
- Created: 2016-10-10T21:56:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-10T22:51:40.000Z (over 9 years ago)
- Last Synced: 2025-10-10T21:32:40.421Z (8 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-blis
[blis](https://github.com/flame/blis) in a container. The resulting
image is used as [a use
case](https://github.com/systemslab/popper/wiki/Popper-Math-Science)
in reproducibility as part of [Popper](http://falsify.us).
The `entrypoint.sh` of the container runs the BLAS implementation
comparison tests. BLAS alternate implementations are installed from
Debian's package repositories
([`atlas`](https://packages.debian.org/search?suite=all§ion=all&arch=any&searchon=names&keywords=libatlas-base-dev)
and
[`openblas`](https://packages.debian.org/search?suite=all§ion=all&arch=any&searchon=names&keywords=libopenblas-dev)).
`blis` is installed from source and is compiled using the `reference`
configuration.
To preserver output files from the tests, bind-mound the
`/blis/test/output` folder. For example:
```
docker run --rm -v `pwd`/tests_output:/blis/test/output ivotron/blis
```