Skip to content

Commit 4659785

Browse files
committed
Merge branch 'main' of github.com:Boavizta/boaviztapi
2 parents ac9402c + cab1fae commit 4659785

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+10437
-290
lines changed

.github/workflows/build_client.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v4
3131
- name: Install python dependencies
32-
uses: actions/setup-python@v2
32+
uses: actions/setup-python@v5
3333
with:
3434
python-version: '3.x'
3535
- name: Install requirements

.github/workflows/build_client_sdk_with_poetry.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828

2929
- name: Set up Python
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v5
3131
with:
3232
python-version: '3.9'
3333

.github/workflows/github_page_deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout main
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Deploy docs
1717
uses: mhausenblas/mkdocs-deploy-gh-pages@master

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Login to GitHub Container Registry
19-
uses: docker/login-action@v1
19+
uses: docker/login-action@v3
2020
with:
2121
registry: ghcr.io
2222
username: ${{ github.actor }}
2323
password: ${{ secrets.GITHUB_TOKEN }}
2424

2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: '3.9'
3030

.github/workflows/test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ on:
88
paths:
99
- 'boaviztapi/**'
1010
- 'tests/**'
11+
- 'poetry.lock'
12+
- 'pyproject.toml'
13+
- 'requirements.txt'
1114
pull_request:
1215
paths:
1316
- 'boaviztapi/**'
1417
- 'tests/**'
18+
- 'poetry.lock'
19+
- 'pyproject.toml'
20+
- 'requirements.txt'
1521
branches:
1622
- main
1723
- dev
@@ -23,9 +29,9 @@ jobs:
2329
version: ["3.9", "3.10", "3.11"]
2430
runs-on: ubuntu-latest
2531
steps:
26-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v4
2733
- name: Set up Python
28-
uses: actions/setup-python@v2
34+
uses: actions/setup-python@v5
2935
with:
3036
python-version: ${{ matrix.version }}
3137

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,5 @@ dmypy.json
139139
# Serverless
140140
.serverless
141141
node_modules
142+
143+
boaviztAPI

Pipfile

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
aiofile = "==3.8.7"
8+
anyio = "==3.7.0"
9+
caio = "==0.9.12"
10+
click = "==8.1.3"
11+
colorama = "==0.4.6"
12+
exceptiongroup = "==1.1.1"
13+
fastapi = "==0.95.2"
14+
h11 = "==0.14.0"
15+
idna = "==3.4"
16+
importlib-metadata = "==6.6.0"
17+
mangum = "==0.17.0"
18+
markdown = "==3.4.3"
19+
numpy = "==1.24.3"
20+
pandas = "==2.0.2"
21+
pydantic = "==1.10.9"
22+
python-dateutil = "==2.8.2"
23+
pytz = "==2023.3"
24+
pyyaml = "==6.0"
25+
rapidfuzz = "==3.1.1"
26+
scipy = "==1.9.3"
27+
six = "==1.16.0"
28+
sniffio = "==1.3.0"
29+
starlette = "==0.27.0"
30+
toml = "==0.10.2"
31+
typing-extensions = "==4.6.3"
32+
tzdata = "==2023.3"
33+
uvicorn = "==0.22.0"
34+
zipp = "==3.15.0"
35+
36+
[dev-packages]
37+
38+
[requires]
39+
python_version = "3.12"

boaviztapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
data_dir = os.path.join(os.path.dirname(__file__), 'data')
1111

1212
config_file = os.path.join(data_dir, 'config.yml')
13-
config = yaml.safe_load(Path(config_file).read_text())
13+
config = yaml.safe_load(Path(config_file).read_text())

boaviztapi/data/archetypes/cloud/azure.csv

+817
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
provider.name,provider.description
2-
aws,Amazon Web Services
2+
aws,Amazon Web Services
3+
azure,Microsoft Azure

boaviztapi/data/archetypes/server.csv

+50-1
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,53 @@ platform_aws_t2-a,AWS,rack,2,,,Intel Xeon E5-2676 v3,,9,32,0,0,0,0,0,,0,2;2;2,2.
135135
platform_aws_t2-b,AWS,rack,2,,,Intel Xeon E5-2686 v4,,36,8,0,0,0,0,0,,0,2;2;2,2.99;1;5,50;0;100,1,35040,0.33;0.2;0.6,RAM configuration was not verified
136136
platform_aws_t3,AWS,rack,2,,,Intel Xeon Platinum 8175M,,12,32,0,0,0,0,0,,0,2;2;2,2.99;1;5,50;0;100,1,35040,0.33;0.2;0.6,RAM configuration was not verified
137137
platform_aws_t3a,AWS,rack,2,,,AMD EPYC 7571,,12,32,0,0,0,0,0,,0,2;2;2,2.99;1;5,50;0;100,1,35040,0.33;0.2;0.6,RAM configuration was not verified
138-
platform_aws_t4g,AWS,rack,1,,,Annapurna Labs Graviton2,,8,32,0,0,0,0,0,,0,2;2;2,2.99;1;5,50;0;100,1,35040,0.33;0.2;0.6,RAM configuration was not verified
138+
Dadsv5-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,3.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
139+
Dasv4-Type2,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
140+
Dasv4-Type1,Azure,rack,2.0,,,AMD EPYC 7452,96.0,42.0,16.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 672 GiB
141+
Dasv5-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
142+
DCsv2-Type1,Azure,rack,1.0,,,Intel Xeon E-2288G,8.0,8.0,8.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 64 GiB
143+
DCadsv5-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,3.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
144+
DCasv5-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
145+
DCdsv3-Type1,Azure,rack,1.0,,,Intel Xeon Platinum 8370C,48.0,48.0,8.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 384 GiB
146+
DCsv3-Type1,Azure,rack,1.0,,,Intel Xeon Platinum 8370C,48.0,48.0,8.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 384 GiB
147+
Ddsv4-Type2,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
148+
Ebdsv5-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
149+
Ebsv5-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
150+
ECadsv5-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
151+
ECasv5-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
152+
Ddsv4-Type1,Azure,rack,1.0,,,Intel Xeon Platinum 8272CL,80.0,63.0,8.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 504 GiB
153+
Ddsv5-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
154+
Dsv3-Type4,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
155+
Dsv3-Type3,Azure,rack,1.0,,,Intel Xeon Platinum 8272CL,80.0,63.0,8.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 504 GiB
156+
Dsv4-Type2,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
157+
Dsv4-Type1,Azure,rack,1.0,,,Intel Xeon Platinum 8272CL,80.0,63.0,8.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 504 GiB
158+
Dsv5-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
159+
Eadsv5-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
160+
Easv4-Type2,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
161+
Easv4-Type1,Azure,rack,2.0,,,AMD EPYC 7452,96.0,42.0,16.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 672 GiB
162+
Easv5-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
163+
Edsv4-Type2,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
164+
Edsv4-Type1,Azure,rack,1.0,,,Intel Xeon Platinum 8272CL,64.0,63.0,8.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 504 GiB
165+
Edsv5-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
166+
Esv3-Type4,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
167+
Esv3-Type3,Azure,rack,1.0,,,Intel Xeon Platinum 8272CL,80.0,63.0,8.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 504 GiB
168+
Esv4-Type2,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
169+
Esv4-Type1,Azure,rack,1.0,,,Intel Xeon Platinum 8272CL,80.0,63.0,8.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 504 GiB
170+
Esv5-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
171+
Fsv2-Type4,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,48.0,16.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 768 GiB
172+
Fsv2-Type3,Azure,rack,1.0,,,Intel Xeon Platinum 8272CL,86.0,63.0,8.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 504 GiB
173+
Fsv2-Type2,Azure,rack,2.0,,,Intel Xeon Platinum 8168,72.0,18.0,8.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 144 GiB
174+
FXmds-Type1,Azure,rack,2.0,,,Intel Xeon Gold 6246R,48.0,36.0,32.0,1.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 1,152 GiB"
175+
Lsv2-Type1,Azure,rack,1.0,,,AMD EPYC 7551P,80.0,40.0,16.0,10.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 640 GiB
176+
Lasv3-Type1,Azure,rack,1.0,,,AMD EPYC 7763,112.0,64.0,16.0,10.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 1,024 GiB"
177+
Lsv3-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8370C,119.0,64.0,16.0,10.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 1,024 GiB"
178+
Mdmsv2MedMem-Type1,Azure,rack,4.0,,,Intel Xeon Platinum 8280,192.0,64.0,64.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 4,096 GiB"
179+
Mdsv2MedMem-Type1,Azure,rack,4.0,,,Intel Xeon Platinum 8280,192.0,64.0,32.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 2,048 GiB"
180+
Mmsv2MedMem-Type1,Azure,rack,4.0,,,Intel Xeon Platinum 8280,192.0,64.0,64.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 4,096 GiB"
181+
Ms-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8280,128.0,64.0,32.0,2.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 2,048 GiB"
182+
Msm-Type1,Azure,rack,2.0,,,Intel Xeon Platinum 8280,128.0,60.8125,64.0,7.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 3,892 GiB"
183+
Msmv2-Type1,Azure,rack,8.0,,,Intel Xeon Platinum 8180M,416.0,178.125,64.0,4.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 11,400 GiB"
184+
Msv2-Type1,Azure,rack,8.0,,,Intel Xeon Platinum 8180M,416.0,89.0625,64.0,4.0,2048.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 5,700 GiB"
185+
Msv2MedMem-Type1,Azure,rack,4.0,,,Intel Xeon Platinum 8280,192.0,64.0,32.0,0.0,0.0,0.0,0.0,0.0,,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,"RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 2,048 GiB"
186+
NVasv4-Type1,Azure,rack,1.0,,,AMD EPYC 7V12,128.0,56.0,8.0,2.0,2048.0,0.0,0.0,0.0,AMD Radeon Instinct MI25 ,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 448 GiB
187+
NVsv3-Type1,Azure,rack,2.0,,,Intel Xeon E5-2690 V4,48.0,56.0,8.0,2.0,2048.0,0.0,0.0,0.0,NVIDIA Tesla M60 ,,2;2;2,2.99;1;5,50;0;100,1,52560.0,0.33;0.2;0.6,RAM units and per unit capacity not verified. RAM capacity from Azure docs was: 448 GiB

0 commit comments

Comments
 (0)