Skip to content

Commit

Permalink
Merge pull request #87 from akash-network/sdl-gpu-ram-add
Browse files Browse the repository at this point in the history
feat: adding gpu with ram example to sdl docs
  • Loading branch information
chainzero authored Mar 28, 2024
2 parents 08b56cb + 371f3e2 commit 1083962
Showing 1 changed file with 36 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,27 @@ The declaration of a GPU model is optional in the SDL. If your deployment does n
If your deployment is optimized to run on multiple GPU models, include the appropriate list of models as seen in the following example. In this usage, any Akash provider that has a model in the list will bid on the deployment.
```
gpu:
units: 1
attributes:
vendor:
nvidia:
- model: 4090
- model: t4
gpu:
units: 1
attributes:
vendor:
nvidia:
- model: 4090
- model: t4
```
#### GPU RAM Specification
Optionally the SDL may include a GPU RAM/VRAM requirement such as the example below.
```
gpu:
units: 1
attributes:
vendor:
nvidia:
- model: a100
ram: 80Gi
```
#### GPU Interface Specification
Expand All @@ -278,6 +292,21 @@ gpu:
interface: sxm
```
#### GPU with RAM and Interface Specification
Example of specifying both RAM and interface in the SDL GPU section.
```
gpu:
units: 1
attributes:
vendor:
nvidia:
- model: a100
interface: pcie
ram: 80Gi
```
## Stable Payment
Use of Stable Payments is supported in the Akash SDL and is declared in the placement section of the SDL as shown in the example below.
Expand Down

0 comments on commit 1083962

Please sign in to comment.