From 7dc896e9136eea306220f156b1c1bcc834a5f871 Mon Sep 17 00:00:00 2001 From: Laurent Sorber Date: Sat, 14 Sep 2024 20:06:12 +0200 Subject: [PATCH] chore: replace Radix with Superlinear (#20) --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 4 ++-- README.md | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d360f03..9c810ee 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c142e6d..91cb87b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }} diff --git a/README.md b/README.md index 1d81931..8631a31 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ... ```