Skip to content

Commit

Permalink
chore: replace Radix with Superlinear
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber authored Sep 14, 2024
1 parent 11ac5d3 commit 55133ea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: radixai/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
tags: superlinear/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
"CUDA_VERSION=${{ matrix.cuda-version }}"
context: .
platforms: ${{ matrix.platform }}
tags: radixai/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
tags: superlinear/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}

- name: Test Docker image
run: docker run --rm radixai/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
run: docker run --rm superlinear/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Open in Docker Hub](https://img.shields.io/static/v1?label=Docker%20Hub&message=Open&color=blue&logo=dockerhub)](https://hub.docker.com/r/radixai/python-gpu)
[![Open in Docker Hub](https://img.shields.io/static/v1?label=Docker%20Hub&message=Open&color=blue&logo=dockerhub)](https://hub.docker.com/r/superlinear/python-gpu)

# Python GPU

Expand All @@ -14,18 +14,18 @@ A minimal CUDA and cuDNN install on top of the official `python:3.x-slim` base i

## ✨ Using

A matrix of tags are available that follow the format `radixai/python-gpu:$PYTHON_VERSION-cuda$CUDA_VERSION`, see the [Docker Hub repository](https://hub.docker.com/r/radixai/python-gpu/tags) for a full list.
A matrix of tags are available that follow the format `superlinear/python-gpu:$PYTHON_VERSION-cuda$CUDA_VERSION`, see the [Docker Hub repository](https://hub.docker.com/r/superlinear/python-gpu/tags) for a full list.

### Running the image

```sh
docker run -it --rm radixai/python-gpu:3.11-cuda11.8 /bin/bash
docker run -it --rm superlinear/python-gpu:3.11-cuda11.8 /bin/bash
```

### Extending the image

```Dockerfile
FROM radixai/python-gpu:3.11-cuda11.8
FROM superlinear/python-gpu:3.11-cuda11.8

...
```

0 comments on commit 55133ea

Please sign in to comment.