https://github.com/avilchess/docker-tbb
This repository generates a docker image with clang and Intel TBB
https://github.com/avilchess/docker-tbb
Last synced: 3 months ago
JSON representation
This repository generates a docker image with clang and Intel TBB
- Host: GitHub
- URL: https://github.com/avilchess/docker-tbb
- Owner: avilchess
- License: mit
- Created: 2018-03-17T10:32:17.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T14:43:58.000Z (about 7 years ago)
- Last Synced: 2025-01-09T07:13:10.333Z (4 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [docker-tbb](https://github.com/avilchess/docker-tbb)
This repository generates a Docker container with the [CLANG 6](https://clang.llvm.org/) and [Intel Thread Building Blocks](https://www.threadingbuildingblocks.org/ "TBB") development environment.
## Building from source:
```bash
docker build -t avilchess/tbb:1.0 .
```## Running the docker image:
```bash
docker run -i -t avilchess/tbb:1.0 /bin/bash
```## Testing TBB installation:
```bash
cd ${TBB_INSTALL_DIR}/tbb${TBB_VERSION}oss/examples/parallel_for/seismic
make
```The Dockerfile is available on [GitHub](https://github.com/avilchess/docker-tbb) and the pre-built container from [Docker Hub](https://hub.docker.com/r/avilchess/tbb/).
> Written with [StackEdit](https://stackedit.io/).