@digital4better/data 1.2.1 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/cloud/accelerators.csv +33 -0
- package/data/cloud/accelerators.json +450 -0
- package/data/cloud/aws-vms.csv +884 -884
- package/data/cloud/aws-vms.json +1859 -890
- package/data/cloud/azure-vms.csv +976 -976
- package/data/cloud/azure-vms.json +2061 -1024
- package/data/cloud/cpus.csv +87 -0
- package/data/cloud/cpus.json +1292 -0
- package/data/cloud/gcp-vms.csv +322 -322
- package/data/cloud/gcp-vms.json +990 -644
- package/package.json +1 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
id,type,manufacturer,serie,model,platform,cores,memory,tdp,process,die,transistors
|
|
2
|
+
amd-alveo-ma35d,asic,amd,alveo,ma35d,asic,0,16,40,5,0,0
|
|
3
|
+
amd-alveo-u30,asic,amd,alveo,u30,ultrascale,0,8,25,16,0,0
|
|
4
|
+
amd-alveo-u250,fpga,amd,alveo,u250,ultrascale,0,64,225,16,0,0
|
|
5
|
+
amd-radeon-mi25,gpu,amd,radeon,mi25,instinct,4096,16,300,14,495,12500
|
|
6
|
+
amd-radeon-mi300x,gpu,amd,radeon,mi300x,instinct,19456,192,750,5,1017,153000
|
|
7
|
+
amd-radeon-v520,gpu,amd,radeon,v520,navi,2304,8,225,7,250,10300
|
|
8
|
+
amd-radeon-v620,gpu,amd,radeon,v620,navi,4608,32,300,7,520,26800
|
|
9
|
+
amd-radeon-v710,gpu,amd,radeon,v710,navi,3456,28,158,5,346,28100
|
|
10
|
+
amd-virtex-vu47p,fpga,amd,virtex,vu47p,ultrascale,0,16,100,16,0,0
|
|
11
|
+
aws-inferencia-1,asic,aws,inferencia,1,neuroncore-1,4,32,100,16,0,0
|
|
12
|
+
aws-inferencia-2,asic,aws,inferencia,2,neuroncore-2,2,32,250,7,0,0
|
|
13
|
+
aws-trainium-1,asic,aws,trainium,1,neuroncore-2,2,32,400,7,0,0
|
|
14
|
+
aws-trainium-2,asic,aws,trainium,2,neuroncore-3,8,96,500,7,0,0
|
|
15
|
+
intel-gaudi-1,asic,intel,gaudi,1,gaudi,8,32,350,16,0,0
|
|
16
|
+
nvidia-grid-k520,gpu,nvidia,grid,k520,kepler,3072,8,225,28,294,3540
|
|
17
|
+
nvidia-tesla-a10,gpu,nvidia,tesla,a10,ampere,9216,24,150,8,628,28300
|
|
18
|
+
nvidia-tesla-a10040,gpu,nvidia,tesla,a100,ampere,6912,40,250,7,826,54200
|
|
19
|
+
nvidia-tesla-a10080,gpu,nvidia,tesla,a100,ampere,6912,80,300,7,826,54200
|
|
20
|
+
nvidia-tesla-h10080,gpu,nvidia,tesla,h100,hopper,14592,80,350,5,814,80000
|
|
21
|
+
nvidia-tesla-h10094,gpu,nvidia,tesla,h100,hopper,14592,94,350,5,814,80000
|
|
22
|
+
nvidia-tesla-h200,gpu,nvidia,tesla,h200,hopper,16896,141,600,5,814,80000
|
|
23
|
+
nvidia-tesla-k80,gpu,nvidia,tesla,k80,kepler,2496,24,300,28,561,7100
|
|
24
|
+
nvidia-tesla-l4,gpu,nvidia,tesla,l4,ada,7424,24,72,5,294,35800
|
|
25
|
+
nvidia-tesla-l40s,gpu,nvidia,tesla,l40s,ada,18176,48,300,5,609,76300
|
|
26
|
+
nvidia-tesla-m60,gpu,nvidia,tesla,m60,maxwell,4096,16,300,28,398,5200
|
|
27
|
+
nvidia-tesla-p10012,gpu,nvidia,tesla,p100,pascal,3584,12,250,16,610,15300
|
|
28
|
+
nvidia-tesla-p10016,gpu,nvidia,tesla,p100,pascal,3584,16,250,16,610,15300
|
|
29
|
+
nvidia-tesla-p40,gpu,nvidia,tesla,p40,pascal,3840,24,250,16,471,11800
|
|
30
|
+
nvidia-tesla-t4,gpu,nvidia,tesla,t4,turing,2560,16,70,12,545,13600
|
|
31
|
+
nvidia-tesla-v10016,gpu,nvidia,tesla,v100,volta,5120,16,250,12,815,21100
|
|
32
|
+
nvidia-tesla-v10032,gpu,nvidia,tesla,v100,volta,5120,32,250,12,815,21100
|
|
33
|
+
qualcomm-ai100-standard,asic,qualcomm,ai100,standard,cloud ai,16,16,75,7,0,0
|
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "amd-alveo-ma35d",
|
|
4
|
+
"type": "asic",
|
|
5
|
+
"manufacturer": "amd",
|
|
6
|
+
"serie": "alveo",
|
|
7
|
+
"model": "ma35d",
|
|
8
|
+
"platform": "asic",
|
|
9
|
+
"cores": 0,
|
|
10
|
+
"memory": 16,
|
|
11
|
+
"tdp": 40,
|
|
12
|
+
"process": 5,
|
|
13
|
+
"die": 0,
|
|
14
|
+
"transistors": 0
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "amd-alveo-u30",
|
|
18
|
+
"type": "asic",
|
|
19
|
+
"manufacturer": "amd",
|
|
20
|
+
"serie": "alveo",
|
|
21
|
+
"model": "u30",
|
|
22
|
+
"platform": "ultrascale",
|
|
23
|
+
"cores": 0,
|
|
24
|
+
"memory": 8,
|
|
25
|
+
"tdp": 25,
|
|
26
|
+
"process": 16,
|
|
27
|
+
"die": 0,
|
|
28
|
+
"transistors": 0
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "amd-alveo-u250",
|
|
32
|
+
"type": "fpga",
|
|
33
|
+
"manufacturer": "amd",
|
|
34
|
+
"serie": "alveo",
|
|
35
|
+
"model": "u250",
|
|
36
|
+
"platform": "ultrascale",
|
|
37
|
+
"cores": 0,
|
|
38
|
+
"memory": 64,
|
|
39
|
+
"tdp": 225,
|
|
40
|
+
"process": 16,
|
|
41
|
+
"die": 0,
|
|
42
|
+
"transistors": 0
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "amd-radeon-mi25",
|
|
46
|
+
"type": "gpu",
|
|
47
|
+
"manufacturer": "amd",
|
|
48
|
+
"serie": "radeon",
|
|
49
|
+
"model": "mi25",
|
|
50
|
+
"platform": "instinct",
|
|
51
|
+
"cores": 4096,
|
|
52
|
+
"memory": 16,
|
|
53
|
+
"tdp": 300,
|
|
54
|
+
"process": 14,
|
|
55
|
+
"die": 495,
|
|
56
|
+
"transistors": 12500
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "amd-radeon-mi300x",
|
|
60
|
+
"type": "gpu",
|
|
61
|
+
"manufacturer": "amd",
|
|
62
|
+
"serie": "radeon",
|
|
63
|
+
"model": "mi300x",
|
|
64
|
+
"platform": "instinct",
|
|
65
|
+
"cores": 19456,
|
|
66
|
+
"memory": 192,
|
|
67
|
+
"tdp": 750,
|
|
68
|
+
"process": 5,
|
|
69
|
+
"die": 1017,
|
|
70
|
+
"transistors": 153000
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "amd-radeon-v520",
|
|
74
|
+
"type": "gpu",
|
|
75
|
+
"manufacturer": "amd",
|
|
76
|
+
"serie": "radeon",
|
|
77
|
+
"model": "v520",
|
|
78
|
+
"platform": "navi",
|
|
79
|
+
"cores": 2304,
|
|
80
|
+
"memory": 8,
|
|
81
|
+
"tdp": 225,
|
|
82
|
+
"process": 7,
|
|
83
|
+
"die": 250,
|
|
84
|
+
"transistors": 10300
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": "amd-radeon-v620",
|
|
88
|
+
"type": "gpu",
|
|
89
|
+
"manufacturer": "amd",
|
|
90
|
+
"serie": "radeon",
|
|
91
|
+
"model": "v620",
|
|
92
|
+
"platform": "navi",
|
|
93
|
+
"cores": 4608,
|
|
94
|
+
"memory": 32,
|
|
95
|
+
"tdp": 300,
|
|
96
|
+
"process": 7,
|
|
97
|
+
"die": 520,
|
|
98
|
+
"transistors": 26800
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "amd-radeon-v710",
|
|
102
|
+
"type": "gpu",
|
|
103
|
+
"manufacturer": "amd",
|
|
104
|
+
"serie": "radeon",
|
|
105
|
+
"model": "v710",
|
|
106
|
+
"platform": "navi",
|
|
107
|
+
"cores": 3456,
|
|
108
|
+
"memory": 28,
|
|
109
|
+
"tdp": 158,
|
|
110
|
+
"process": 5,
|
|
111
|
+
"die": 346,
|
|
112
|
+
"transistors": 28100
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": "amd-virtex-vu47p",
|
|
116
|
+
"type": "fpga",
|
|
117
|
+
"manufacturer": "amd",
|
|
118
|
+
"serie": "virtex",
|
|
119
|
+
"model": "vu47p",
|
|
120
|
+
"platform": "ultrascale",
|
|
121
|
+
"cores": 0,
|
|
122
|
+
"memory": 16,
|
|
123
|
+
"tdp": 100,
|
|
124
|
+
"process": 16,
|
|
125
|
+
"die": 0,
|
|
126
|
+
"transistors": 0
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "aws-inferencia-1",
|
|
130
|
+
"type": "asic",
|
|
131
|
+
"manufacturer": "aws",
|
|
132
|
+
"serie": "inferencia",
|
|
133
|
+
"model": 1,
|
|
134
|
+
"platform": "neuroncore-1",
|
|
135
|
+
"cores": 4,
|
|
136
|
+
"memory": 32,
|
|
137
|
+
"tdp": 100,
|
|
138
|
+
"process": 16,
|
|
139
|
+
"die": 0,
|
|
140
|
+
"transistors": 0
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "aws-inferencia-2",
|
|
144
|
+
"type": "asic",
|
|
145
|
+
"manufacturer": "aws",
|
|
146
|
+
"serie": "inferencia",
|
|
147
|
+
"model": 2,
|
|
148
|
+
"platform": "neuroncore-2",
|
|
149
|
+
"cores": 2,
|
|
150
|
+
"memory": 32,
|
|
151
|
+
"tdp": 250,
|
|
152
|
+
"process": 7,
|
|
153
|
+
"die": 0,
|
|
154
|
+
"transistors": 0
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": "aws-trainium-1",
|
|
158
|
+
"type": "asic",
|
|
159
|
+
"manufacturer": "aws",
|
|
160
|
+
"serie": "trainium",
|
|
161
|
+
"model": 1,
|
|
162
|
+
"platform": "neuroncore-2",
|
|
163
|
+
"cores": 2,
|
|
164
|
+
"memory": 32,
|
|
165
|
+
"tdp": 400,
|
|
166
|
+
"process": 7,
|
|
167
|
+
"die": 0,
|
|
168
|
+
"transistors": 0
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "aws-trainium-2",
|
|
172
|
+
"type": "asic",
|
|
173
|
+
"manufacturer": "aws",
|
|
174
|
+
"serie": "trainium",
|
|
175
|
+
"model": 2,
|
|
176
|
+
"platform": "neuroncore-3",
|
|
177
|
+
"cores": 8,
|
|
178
|
+
"memory": 96,
|
|
179
|
+
"tdp": 500,
|
|
180
|
+
"process": 7,
|
|
181
|
+
"die": 0,
|
|
182
|
+
"transistors": 0
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"id": "intel-gaudi-1",
|
|
186
|
+
"type": "asic",
|
|
187
|
+
"manufacturer": "intel",
|
|
188
|
+
"serie": "gaudi",
|
|
189
|
+
"model": 1,
|
|
190
|
+
"platform": "gaudi",
|
|
191
|
+
"cores": 8,
|
|
192
|
+
"memory": 32,
|
|
193
|
+
"tdp": 350,
|
|
194
|
+
"process": 16,
|
|
195
|
+
"die": 0,
|
|
196
|
+
"transistors": 0
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "nvidia-grid-k520",
|
|
200
|
+
"type": "gpu",
|
|
201
|
+
"manufacturer": "nvidia",
|
|
202
|
+
"serie": "grid",
|
|
203
|
+
"model": "k520",
|
|
204
|
+
"platform": "kepler",
|
|
205
|
+
"cores": 3072,
|
|
206
|
+
"memory": 8,
|
|
207
|
+
"tdp": 225,
|
|
208
|
+
"process": 28,
|
|
209
|
+
"die": 294,
|
|
210
|
+
"transistors": 3540
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"id": "nvidia-tesla-a10",
|
|
214
|
+
"type": "gpu",
|
|
215
|
+
"manufacturer": "nvidia",
|
|
216
|
+
"serie": "tesla",
|
|
217
|
+
"model": "a10",
|
|
218
|
+
"platform": "ampere",
|
|
219
|
+
"cores": 9216,
|
|
220
|
+
"memory": 24,
|
|
221
|
+
"tdp": 150,
|
|
222
|
+
"process": 8,
|
|
223
|
+
"die": 628,
|
|
224
|
+
"transistors": 28300
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"id": "nvidia-tesla-a10040",
|
|
228
|
+
"type": "gpu",
|
|
229
|
+
"manufacturer": "nvidia",
|
|
230
|
+
"serie": "tesla",
|
|
231
|
+
"model": "a100",
|
|
232
|
+
"platform": "ampere",
|
|
233
|
+
"cores": 6912,
|
|
234
|
+
"memory": 40,
|
|
235
|
+
"tdp": 250,
|
|
236
|
+
"process": 7,
|
|
237
|
+
"die": 826,
|
|
238
|
+
"transistors": 54200
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "nvidia-tesla-a10080",
|
|
242
|
+
"type": "gpu",
|
|
243
|
+
"manufacturer": "nvidia",
|
|
244
|
+
"serie": "tesla",
|
|
245
|
+
"model": "a100",
|
|
246
|
+
"platform": "ampere",
|
|
247
|
+
"cores": 6912,
|
|
248
|
+
"memory": 80,
|
|
249
|
+
"tdp": 300,
|
|
250
|
+
"process": 7,
|
|
251
|
+
"die": 826,
|
|
252
|
+
"transistors": 54200
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "nvidia-tesla-h10080",
|
|
256
|
+
"type": "gpu",
|
|
257
|
+
"manufacturer": "nvidia",
|
|
258
|
+
"serie": "tesla",
|
|
259
|
+
"model": "h100",
|
|
260
|
+
"platform": "hopper",
|
|
261
|
+
"cores": 14592,
|
|
262
|
+
"memory": 80,
|
|
263
|
+
"tdp": 350,
|
|
264
|
+
"process": 5,
|
|
265
|
+
"die": 814,
|
|
266
|
+
"transistors": 80000
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"id": "nvidia-tesla-h10094",
|
|
270
|
+
"type": "gpu",
|
|
271
|
+
"manufacturer": "nvidia",
|
|
272
|
+
"serie": "tesla",
|
|
273
|
+
"model": "h100",
|
|
274
|
+
"platform": "hopper",
|
|
275
|
+
"cores": 14592,
|
|
276
|
+
"memory": 94,
|
|
277
|
+
"tdp": 350,
|
|
278
|
+
"process": 5,
|
|
279
|
+
"die": 814,
|
|
280
|
+
"transistors": 80000
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"id": "nvidia-tesla-h200",
|
|
284
|
+
"type": "gpu",
|
|
285
|
+
"manufacturer": "nvidia",
|
|
286
|
+
"serie": "tesla",
|
|
287
|
+
"model": "h200",
|
|
288
|
+
"platform": "hopper",
|
|
289
|
+
"cores": 16896,
|
|
290
|
+
"memory": 141,
|
|
291
|
+
"tdp": 600,
|
|
292
|
+
"process": 5,
|
|
293
|
+
"die": 814,
|
|
294
|
+
"transistors": 80000
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"id": "nvidia-tesla-k80",
|
|
298
|
+
"type": "gpu",
|
|
299
|
+
"manufacturer": "nvidia",
|
|
300
|
+
"serie": "tesla",
|
|
301
|
+
"model": "k80",
|
|
302
|
+
"platform": "kepler",
|
|
303
|
+
"cores": 2496,
|
|
304
|
+
"memory": 24,
|
|
305
|
+
"tdp": 300,
|
|
306
|
+
"process": 28,
|
|
307
|
+
"die": 561,
|
|
308
|
+
"transistors": 7100
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "nvidia-tesla-l4",
|
|
312
|
+
"type": "gpu",
|
|
313
|
+
"manufacturer": "nvidia",
|
|
314
|
+
"serie": "tesla",
|
|
315
|
+
"model": "l4",
|
|
316
|
+
"platform": "ada",
|
|
317
|
+
"cores": 7424,
|
|
318
|
+
"memory": 24,
|
|
319
|
+
"tdp": 72,
|
|
320
|
+
"process": 5,
|
|
321
|
+
"die": 294,
|
|
322
|
+
"transistors": 35800
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"id": "nvidia-tesla-l40s",
|
|
326
|
+
"type": "gpu",
|
|
327
|
+
"manufacturer": "nvidia",
|
|
328
|
+
"serie": "tesla",
|
|
329
|
+
"model": "l40s",
|
|
330
|
+
"platform": "ada",
|
|
331
|
+
"cores": 18176,
|
|
332
|
+
"memory": 48,
|
|
333
|
+
"tdp": 300,
|
|
334
|
+
"process": 5,
|
|
335
|
+
"die": 609,
|
|
336
|
+
"transistors": 76300
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"id": "nvidia-tesla-m60",
|
|
340
|
+
"type": "gpu",
|
|
341
|
+
"manufacturer": "nvidia",
|
|
342
|
+
"serie": "tesla",
|
|
343
|
+
"model": "m60",
|
|
344
|
+
"platform": "maxwell",
|
|
345
|
+
"cores": 4096,
|
|
346
|
+
"memory": 16,
|
|
347
|
+
"tdp": 300,
|
|
348
|
+
"process": 28,
|
|
349
|
+
"die": 398,
|
|
350
|
+
"transistors": 5200
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"id": "nvidia-tesla-p10012",
|
|
354
|
+
"type": "gpu",
|
|
355
|
+
"manufacturer": "nvidia",
|
|
356
|
+
"serie": "tesla",
|
|
357
|
+
"model": "p100",
|
|
358
|
+
"platform": "pascal",
|
|
359
|
+
"cores": 3584,
|
|
360
|
+
"memory": 12,
|
|
361
|
+
"tdp": 250,
|
|
362
|
+
"process": 16,
|
|
363
|
+
"die": 610,
|
|
364
|
+
"transistors": 15300
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"id": "nvidia-tesla-p10016",
|
|
368
|
+
"type": "gpu",
|
|
369
|
+
"manufacturer": "nvidia",
|
|
370
|
+
"serie": "tesla",
|
|
371
|
+
"model": "p100",
|
|
372
|
+
"platform": "pascal",
|
|
373
|
+
"cores": 3584,
|
|
374
|
+
"memory": 16,
|
|
375
|
+
"tdp": 250,
|
|
376
|
+
"process": 16,
|
|
377
|
+
"die": 610,
|
|
378
|
+
"transistors": 15300
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"id": "nvidia-tesla-p40",
|
|
382
|
+
"type": "gpu",
|
|
383
|
+
"manufacturer": "nvidia",
|
|
384
|
+
"serie": "tesla",
|
|
385
|
+
"model": "p40",
|
|
386
|
+
"platform": "pascal",
|
|
387
|
+
"cores": 3840,
|
|
388
|
+
"memory": 24,
|
|
389
|
+
"tdp": 250,
|
|
390
|
+
"process": 16,
|
|
391
|
+
"die": 471,
|
|
392
|
+
"transistors": 11800
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"id": "nvidia-tesla-t4",
|
|
396
|
+
"type": "gpu",
|
|
397
|
+
"manufacturer": "nvidia",
|
|
398
|
+
"serie": "tesla",
|
|
399
|
+
"model": "t4",
|
|
400
|
+
"platform": "turing",
|
|
401
|
+
"cores": 2560,
|
|
402
|
+
"memory": 16,
|
|
403
|
+
"tdp": 70,
|
|
404
|
+
"process": 12,
|
|
405
|
+
"die": 545,
|
|
406
|
+
"transistors": 13600
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"id": "nvidia-tesla-v10016",
|
|
410
|
+
"type": "gpu",
|
|
411
|
+
"manufacturer": "nvidia",
|
|
412
|
+
"serie": "tesla",
|
|
413
|
+
"model": "v100",
|
|
414
|
+
"platform": "volta",
|
|
415
|
+
"cores": 5120,
|
|
416
|
+
"memory": 16,
|
|
417
|
+
"tdp": 250,
|
|
418
|
+
"process": 12,
|
|
419
|
+
"die": 815,
|
|
420
|
+
"transistors": 21100
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"id": "nvidia-tesla-v10032",
|
|
424
|
+
"type": "gpu",
|
|
425
|
+
"manufacturer": "nvidia",
|
|
426
|
+
"serie": "tesla",
|
|
427
|
+
"model": "v100",
|
|
428
|
+
"platform": "volta",
|
|
429
|
+
"cores": 5120,
|
|
430
|
+
"memory": 32,
|
|
431
|
+
"tdp": 250,
|
|
432
|
+
"process": 12,
|
|
433
|
+
"die": 815,
|
|
434
|
+
"transistors": 21100
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"id": "qualcomm-ai100-standard",
|
|
438
|
+
"type": "asic",
|
|
439
|
+
"manufacturer": "qualcomm",
|
|
440
|
+
"serie": "ai100",
|
|
441
|
+
"model": "standard",
|
|
442
|
+
"platform": "cloud ai",
|
|
443
|
+
"cores": 16,
|
|
444
|
+
"memory": 16,
|
|
445
|
+
"tdp": 75,
|
|
446
|
+
"process": 7,
|
|
447
|
+
"die": 0,
|
|
448
|
+
"transistors": 0
|
|
449
|
+
}
|
|
450
|
+
]
|