Skip to content

Commit 2a0a12a

Browse files
authored
ref: GPU components to improve structure and performance. Introdu…
ref: GPU components to improve structure and performance. Introdu…
2 parents 17a51b6 + 159a752 commit 2a0a12a

File tree

9 files changed

+1195
-1175
lines changed

9 files changed

+1195
-1175
lines changed

src/components/gpus-on-demand/GpuContactForm.tsx

Lines changed: 160 additions & 595 deletions
Large diffs are not rendered by default.

src/components/header/hamburger-menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const navigation = [
4444
{ name: "Community", subCategories: communityItems },
4545
{ name: "Blog", href: "/blog" },
4646
{ name: "Docs", href: "/docs" },
47-
{ name: "Pricing & Earnings", href: "/pricing/gpus" },
47+
{ name: "Pricing", href: "/pricing/gpus" },
4848
];
4949

5050
export default function HamburgerMenu({

src/components/pricing-page/gpus/desktop-table-gpu.tsx

Lines changed: 73 additions & 247 deletions
Large diffs are not rendered by default.
Lines changed: 388 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,388 @@
1+
import type { Gpus } from "./gpu-table";
2+
3+
export const DUMMY_GPU_DATA: Gpus = {
4+
availability: {
5+
total: 260,
6+
available: 169,
7+
},
8+
models: [
9+
{
10+
vendor: "nvidia",
11+
model: "a100",
12+
ram: "80Gi",
13+
interface: "SXM4",
14+
availability: {
15+
total: 16,
16+
available: 13,
17+
},
18+
providerAvailability: {
19+
total: 1,
20+
available: 1,
21+
},
22+
price: {
23+
min: 1.08,
24+
max: 1.08,
25+
avg: 1.08,
26+
weightedAverage: 1.08,
27+
med: 1.08,
28+
},
29+
},
30+
{
31+
vendor: "nvidia",
32+
model: "gt1030",
33+
ram: "2Gi",
34+
interface: "PCIe",
35+
availability: {
36+
total: 1,
37+
available: 1,
38+
},
39+
providerAvailability: {
40+
total: 1,
41+
available: 1,
42+
},
43+
price: {
44+
min: 0.12,
45+
max: 0.12,
46+
avg: 0.12,
47+
weightedAverage: 0.12,
48+
med: 0.12,
49+
},
50+
},
51+
{
52+
vendor: "nvidia",
53+
model: "gtx1070ti",
54+
ram: "8Gi",
55+
interface: "PCIe",
56+
availability: {
57+
total: 1,
58+
available: 1,
59+
},
60+
providerAvailability: {
61+
total: 1,
62+
available: 1,
63+
},
64+
price: {
65+
min: 0,
66+
max: 0,
67+
avg: 0,
68+
weightedAverage: 0,
69+
med: 0,
70+
},
71+
},
72+
{
73+
vendor: "nvidia",
74+
model: "gtx1080",
75+
ram: "8Gi",
76+
interface: "PCIe",
77+
availability: {
78+
total: 1,
79+
available: 1,
80+
},
81+
providerAvailability: {
82+
total: 1,
83+
available: 1,
84+
},
85+
price: {
86+
min: 0.6,
87+
max: 0.6,
88+
avg: 0.6,
89+
weightedAverage: 0.6,
90+
med: 0.6,
91+
},
92+
},
93+
{
94+
vendor: "nvidia",
95+
model: "gtx1080ti",
96+
ram: "11Gi",
97+
interface: "PCIe",
98+
availability: {
99+
total: 2,
100+
available: 2,
101+
},
102+
providerAvailability: {
103+
total: 1,
104+
available: 1,
105+
},
106+
price: {
107+
min: 0.11,
108+
max: 0.11,
109+
avg: 0.11,
110+
weightedAverage: 0.11,
111+
med: 0.11,
112+
},
113+
},
114+
{
115+
vendor: "nvidia",
116+
model: "h100",
117+
ram: "80Gi",
118+
interface: "SXM5",
119+
availability: {
120+
total: 104,
121+
available: 63,
122+
},
123+
providerAvailability: {
124+
total: 3,
125+
available: 3,
126+
},
127+
price: {
128+
min: 1.25,
129+
max: 1.25,
130+
avg: 1.25,
131+
weightedAverage: 1.25,
132+
med: 1.25,
133+
},
134+
},
135+
{
136+
vendor: "nvidia",
137+
model: "h200",
138+
ram: "141Gi",
139+
interface: "SXM5",
140+
availability: {
141+
total: 72,
142+
available: 42,
143+
},
144+
providerAvailability: {
145+
total: 4,
146+
available: 4,
147+
},
148+
price: {
149+
min: 2.9,
150+
max: 3.06,
151+
avg: 3.02,
152+
weightedAverage: 3.02,
153+
med: 3.06,
154+
},
155+
},
156+
{
157+
vendor: "nvidia",
158+
model: "p40",
159+
ram: "24Gi",
160+
interface: "PCIe",
161+
availability: {
162+
total: 2,
163+
available: 2,
164+
},
165+
providerAvailability: {
166+
total: 1,
167+
available: 1,
168+
},
169+
price: {
170+
min: 0.07,
171+
max: 0.07,
172+
avg: 0.07,
173+
weightedAverage: 0.07,
174+
med: 0.07,
175+
},
176+
},
177+
{
178+
vendor: "nvidia",
179+
model: "pro6000se",
180+
ram: "96Gi",
181+
interface: "PCIe",
182+
availability: {
183+
total: 24,
184+
available: 24,
185+
},
186+
providerAvailability: {
187+
total: 1,
188+
available: 1,
189+
},
190+
price: {
191+
min: 1.63,
192+
max: 1.63,
193+
avg: 1.63,
194+
weightedAverage: 1.63,
195+
med: 1.63,
196+
},
197+
},
198+
{
199+
vendor: "nvidia",
200+
model: "pro6000we",
201+
ram: "96Gi",
202+
interface: "PCIe",
203+
availability: {
204+
total: 1,
205+
available: 0,
206+
},
207+
providerAvailability: {
208+
total: 1,
209+
available: 0,
210+
},
211+
price: {
212+
min: 1.51,
213+
max: 1.51,
214+
avg: 1.51,
215+
weightedAverage: 1.51,
216+
med: 1.51,
217+
},
218+
},
219+
{
220+
vendor: "nvidia",
221+
model: "rtx3060",
222+
ram: "12Gi",
223+
interface: "PCIe",
224+
availability: {
225+
total: 1,
226+
available: 1,
227+
},
228+
providerAvailability: {
229+
total: 1,
230+
available: 1,
231+
},
232+
price: {
233+
min: 0.13,
234+
max: 0.13,
235+
avg: 0.13,
236+
weightedAverage: 0.13,
237+
med: 0.13,
238+
},
239+
},
240+
{
241+
vendor: "nvidia",
242+
model: "rtx3090",
243+
ram: "24Gi",
244+
interface: "PCIe",
245+
availability: {
246+
total: 5,
247+
available: 4,
248+
},
249+
providerAvailability: {
250+
total: 2,
251+
available: 2,
252+
},
253+
price: {
254+
min: 0.14,
255+
max: 0.4,
256+
avg: 0.27,
257+
weightedAverage: 0.19,
258+
med: 0.27,
259+
},
260+
},
261+
{
262+
vendor: "nvidia",
263+
model: "rtx3090ti",
264+
ram: "24Gi",
265+
interface: "PCIe",
266+
availability: {
267+
total: 1,
268+
available: 1,
269+
},
270+
providerAvailability: {
271+
total: 1,
272+
available: 1,
273+
},
274+
price: {
275+
min: 0.36,
276+
max: 0.36,
277+
avg: 0.36,
278+
weightedAverage: 0.36,
279+
med: 0.36,
280+
},
281+
},
282+
{
283+
vendor: "nvidia",
284+
model: "rtx4000ada",
285+
ram: "20Gi",
286+
interface: "PCIe",
287+
availability: {
288+
total: 1,
289+
available: 1,
290+
},
291+
providerAvailability: {
292+
total: 1,
293+
available: 1,
294+
},
295+
price: {
296+
min: 0.36,
297+
max: 0.36,
298+
avg: 0.36,
299+
weightedAverage: 0.36,
300+
med: 0.36,
301+
},
302+
},
303+
{
304+
vendor: "nvidia",
305+
model: "rtx4060ti",
306+
ram: "16Gi",
307+
interface: "PCIe",
308+
availability: {
309+
total: 1,
310+
available: 1,
311+
},
312+
providerAvailability: {
313+
total: 1,
314+
available: 1,
315+
},
316+
price: {
317+
min: 0.04,
318+
max: 0.04,
319+
avg: 0.04,
320+
weightedAverage: 0.04,
321+
med: 0.04,
322+
},
323+
},
324+
{
325+
vendor: "nvidia",
326+
model: "rtx4090",
327+
ram: "24Gi",
328+
interface: "PCIe",
329+
availability: {
330+
total: 13,
331+
available: 3,
332+
},
333+
providerAvailability: {
334+
total: 5,
335+
available: 3,
336+
},
337+
price: {
338+
min: 0.17,
339+
max: 0.48,
340+
avg: 0.34,
341+
weightedAverage: 0.4,
342+
med: 0.37,
343+
},
344+
},
345+
{
346+
vendor: "nvidia",
347+
model: "rtx5090",
348+
ram: "32Gi",
349+
interface: "PCIe",
350+
availability: {
351+
total: 9,
352+
available: 4,
353+
},
354+
providerAvailability: {
355+
total: 2,
356+
available: 2,
357+
},
358+
price: {
359+
min: 0.6,
360+
max: 1.26,
361+
avg: 0.93,
362+
weightedAverage: 0.67,
363+
med: 0.93,
364+
},
365+
},
366+
{
367+
vendor: "nvidia",
368+
model: "t4",
369+
ram: "16Gi",
370+
interface: "PCIe",
371+
availability: {
372+
total: 5,
373+
available: 5,
374+
},
375+
providerAvailability: {
376+
total: 2,
377+
available: 2,
378+
},
379+
price: {
380+
min: 0.12,
381+
max: 0.12,
382+
avg: 0.12,
383+
weightedAverage: 0.12,
384+
med: 0.12,
385+
},
386+
},
387+
],
388+
};

0 commit comments

Comments
 (0)