mirror of
https://github.com/superlinear-ai/python-gpu.git
synced 2025-03-26 03:37:17 +03:00
chore: replace Radix with Superlinear (#20)
This commit is contained in:
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@@ -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
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@@ -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 }}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[](https://hub.docker.com/r/radixai/python-gpu)
|
||||
[](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
|
||||
|
||||
...
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user