Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: replace Radix with Superlinear #20

Merged
merged 1 commit into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

...
```