Skip to content

Commit 7dc896e

Browse files
authored
chore: replace Radix with Superlinear (#20)
1 parent 11ac5d3 commit 7dc896e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ jobs:
4242
context: .
4343
platforms: linux/amd64,linux/arm64
4444
push: true
45-
tags: radixai/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
45+
tags: superlinear/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
"CUDA_VERSION=${{ matrix.cuda-version }}"
4040
context: .
4141
platforms: ${{ matrix.platform }}
42-
tags: radixai/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
42+
tags: superlinear/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
4343

4444
- name: Test Docker image
45-
run: docker run --rm radixai/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}
45+
run: docker run --rm superlinear/python-gpu:${{ matrix.python-version }}-cuda${{ matrix.cuda-version }}

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![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)
1+
[![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)
22

33
# Python GPU
44

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

1515
## ✨ Using
1616

17-
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.
17+
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.
1818

1919
### Running the image
2020

2121
```sh
22-
docker run -it --rm radixai/python-gpu:3.11-cuda11.8 /bin/bash
22+
docker run -it --rm superlinear/python-gpu:3.11-cuda11.8 /bin/bash
2323
```
2424

2525
### Extending the image
2626

2727
```Dockerfile
28-
FROM radixai/python-gpu:3.11-cuda11.8
28+
FROM superlinear/python-gpu:3.11-cuda11.8
2929

3030
...
3131
```

0 commit comments

Comments
 (0)