Skip to content

Commit

Permalink
Use idiomatic naming for Dockerfiles (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
lexmag committed Aug 6, 2023
1 parent 22378a8 commit c2b4a23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/builds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ The build can be run on any machine with Docker installed. First, you
need to build the image with CUDA/cuDNN and all other the dependencies

```shell
docker build -t xla-cuda111 -f Dockerfile.cuda --build-arg CUDA_VERSION=11.1.1 --build-arg XLA_TARGET=cuda111 .
docker build -t xla-cuda114 -f Dockerfile.cuda --build-arg CUDA_VERSION=11.4.3 --build-arg XLA_TARGET=cuda114 .
docker build -t xla-cuda118 -f Dockerfile.cuda --build-arg CUDA_VERSION=11.8.0 --build-arg XLA_TARGET=cuda118 .
docker build -t xla-cuda120 -f Dockerfile.cuda --build-arg CUDA_VERSION=12.0.0 --build-arg XLA_TARGET=cuda120 .
docker build -t xla-cuda111 -f cuda.Dockerfile --build-arg CUDA_VERSION=11.1.1 --build-arg XLA_TARGET=cuda111 .
docker build -t xla-cuda114 -f cuda.Dockerfile --build-arg CUDA_VERSION=11.4.3 --build-arg XLA_TARGET=cuda114 .
docker build -t xla-cuda118 -f cuda.Dockerfile --build-arg CUDA_VERSION=11.8.0 --build-arg XLA_TARGET=cuda118 .
docker build -t xla-cuda120 -f cuda.Dockerfile --build-arg CUDA_VERSION=12.0.0 --build-arg XLA_TARGET=cuda120 .
```

Then, start a container. It clones XLA from GitHub, compiles and packages
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit c2b4a23

Please sign in to comment.