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

WIP add docs about support version #1280

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
52 changes: 52 additions & 0 deletions docs/support.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Support

The following features are supported by envd team.

> envd v0.2.5

## OS support

- ubuntu 20.04
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are able to support any Debian-based image now (with # syntax=v1)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

marked and I will have a try next week.


## CUDA

Within the following support cuda version, you could use:

```python
base(os="ubuntu20.04", language="python3")
install.cuda(version="11.2.2", cudnn="8")
```

| OS|CUDA|CUDNN|
|---|---|---|
| ubuntu 20.04 | 11.0.3 | 8 |
| | 11.1.1 | 8 |
| | 11.2.0 | 8 |
| | 11.2.1 | 8 |
| | 11.2.2 | 8 |
| | 11.3.0 | 8 |
| | 11.3.1 | 8 |
| | 11.4.0 | 8 |
| | 11.4.1 | 8 |
| | 11.4.2 | 8 |
| | 11.4.3 | 8 |
| | 11.5.0 | 8 |
| | 11.5.1 | 8 |
| | 11.5.2 | 8 |
| | 11.6.0 | 8 |
| | 11.6.1 | 8 |
| | 11.6.2 | 8 |
| | 11.7.0 | 8 |
| | 11.7.1 | 8 |
| | 11.8.0 | 8 |
| | | |

# Machine Learning Framework

## Pytorch(CUDA)

- 1.13.0
- 1.12.1


## Tensorflow
7 changes: 7 additions & 0 deletions hack/updatessupport.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
function get_cuda_image_name {
output=`curl -s https://hub.docker.com/v2/repositories/nvidia/cuda/tags/\?page_size\=100\&page\=1\&name\=cudnn8-devel-ubuntu20.04 | jq ".results | .[] | .name"`
echo $output
}

get_cuda_image_name