-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
537 lines (519 loc) ยท 23.8 KB
/
index.html
File metadata and controls
537 lines (519 loc) ยท 23.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Force redeploy: 2025-11-09 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Computation Services - SolveForce High-Performance Computing</title>
<meta name="description" content="Enterprise computational resources including HPC, GPU clusters, scientific computing, and batch processing.">
<!-- Google Tag Manager (place inside <head>) -->
<script>
(function(w,i,g){w[g]=w[g]||[];if(typeof w[g].push=='function')w[g].push(i)})(window,'GTM-W8TDGJL8','google_tags_first_party');
(function(w,d,s,l){
w[l]=w[l]||[];
(function(){w[l].push(arguments);})('set', 'developer_id.dYzg1YT', true);
w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});
var f=d.getElementsByTagName(s)[0], j=d.createElement(s);
j.async=true;j.src='/u65j/';
f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer');
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #333;
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}
header {
background: rgba(255, 255, 255, 0.95);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
padding: 1.5rem 2rem;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.header-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: auto auto auto;
align-items: center;
gap: 2rem;
}
.header-content nav {
justify-self: end;
}
.logo {
font-size: 1.8rem;
font-weight: 700;
color: #667eea;
text-decoration: none;
}
.header-phone {
font-size: 1.3rem;
font-weight: 700;
color: #667eea;
text-decoration: none;
white-space: nowrap;
}
.header-phone:hover {
color: #764ba2;
}
nav a {
color: #333;
text-decoration: none;
margin-left: 2rem;
font-weight: 500;
transition: color 0.3s;
}
nav a:hover {
color: #667eea;
}
.hero {
text-align: center;
padding: 5rem 2rem 3rem;
color: white;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.hero p {
font-size: 1.3rem;
margin-bottom: 3rem;
opacity: 0.95;
}
.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s;
display: inline-block;
}
.btn-primary {
background: white;
color: #667eea;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background: white;
color: #667eea;
}
.content {
background: white;
padding: 4rem 2rem;
}
.container {
max-width: 1400px;
margin: 0 auto;
}
h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 4rem;
}
.service-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 15px;
padding: 2rem;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.service-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
.service-card p {
margin-bottom: 1.5rem;
opacity: 0.95;
}
.service-card ul {
list-style: none;
}
.service-card li {
padding: 0.5rem 0;
}
.service-card li:before {
content: "โก ";
}
.compute-specs {
background: rgba(102, 126, 234, 0.05);
padding: 3rem;
border-radius: 15px;
margin: 3rem 0;
}
.specs-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
text-align: center;
}
.spec-item {
padding: 1.5rem;
background: white;
border-radius: 10px;
border: 2px solid #667eea;
}
.spec-item h4 {
font-size: 2.5rem;
color: #667eea;
margin-bottom: 0.5rem;
}
.spec-item p {
color: #666;
font-size: 1.1rem;
}
.use-cases {
margin: 3rem 0;
}
.use-case-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.use-case-card {
background: rgba(102, 126, 234, 0.1);
padding: 2rem;
border-radius: 15px;
border-left: 5px solid #667eea;
}
.use-case-card h3 {
color: #667eea;
margin-bottom: 1rem;
}
.pricing-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 4rem 2rem;
margin: 3rem 0;
border-radius: 15px;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 2rem;
}
.pricing-card {
background: rgba(255, 255, 255, 0.1);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 15px;
padding: 2rem;
text-align: center;
}
.pricing-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
.price {
font-size: 2.5rem;
font-weight: bold;
margin: 1.5rem 0;
}
.pricing-card ul {
list-style: none;
text-align: left;
margin: 1.5rem 0;
}
.pricing-card li {
padding: 0.5rem 0;
}
.pricing-card li:before {
content: "โ ";
font-weight: bold;
}
footer {
background: rgba(255, 255, 255, 0.95);
padding: 2rem;
text-align: center;
margin-top: auto;
}
.contact-info a {
color: #667eea;
text-decoration: none;
margin: 0 1rem;
}
@media (max-width: 968px) {
.header-content {
grid-template-columns: auto;
justify-items: center;
gap: 1rem;
}
.header-content nav {
justify-self: center;
}
nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
nav a {
margin: 0.5rem 1rem;
}
.services-grid,
.use-case-grid,
.pricing-grid {
grid-template-columns: repeat(2, 1fr);
}
.specs-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.services-grid,
.use-case-grid,
.pricing-grid,
.specs-grid {
grid-template-columns: 1fr;
}
nav {
display: none;
}
}
/* Ensure all CSS blocks are properly closed */
</style>
</head>
<body>
<header>
<div class="header-content">
<a href="index.html" class="logo">๐ป Computation</a>
<a href="tel:+18887658301" class="header-phone">๐ (888) 765-8301</a>
<nav>
<a href="index.html">Home</a>
<a href="#hpc">HPC</a>
<a href="#gpu">GPU Computing</a>
<a href="#pricing">Pricing</a>
<a href="https://portal.solveforce.com">Portal</a>
</nav>
</div>
</header>
<section class="hero">
<h1>High-Performance Computing Solutions</h1>
<p>Enterprise-grade computational power for scientific research, AI/ML, and data-intensive workloads</p>
<div class="cta-buttons">
<a href="tel:+18887658301" class="btn btn-primary">๐ Get a Quote</a>
<a href="#pricing" class="btn btn-secondary">๐ฐ View Pricing</a>
<a href="https://portal.solveforce.com" class="btn btn-secondary">๐ Portal</a>
</div>
</section>
<section class="content">
<div class="container">
<h2>Computational Services</h2>
<div class="services-grid" id="hpc">
<div class="service-card">
<h3>๐ฅ๏ธ High-Performance Computing</h3>
<p>Massive parallel processing for scientific simulations and complex calculations</p>
<ul>
<li>Up to 10,000+ CPU cores</li>
<li>InfiniBand interconnect</li>
<li>MPI and OpenMP support</li>
<li>Job scheduling (SLURM)</li>
<li>Shared and private clusters</li>
</ul>
</div>
<div class="service-card" id="gpu">
<h3>๐ฎ GPU Computing</h3>
<p>Accelerated computing with NVIDIA A100, H100, and AMD MI series GPUs</p>
<ul>
<li>CUDA and ROCm support</li>
<li>TensorFlow and PyTorch</li>
<li>Deep learning frameworks</li>
<li>Multi-GPU configurations</li>
<li>NVLink interconnects</li>
</ul>
</div>
<div class="service-card">
<h3>โ๏ธ Cloud Computing</h3>
<p>Scalable compute instances with on-demand provisioning</p>
<ul>
<li>Auto-scaling clusters</li>
<li>Containerization (Docker/K8s)</li>
<li>Serverless functions</li>
<li>Spot instance pricing</li>
<li>API-driven provisioning</li>
</ul>
</div>
<div class="service-card">
<h3>๐งฌ Bioinformatics Computing</h3>
<p>Specialized infrastructure for genomics and proteomics research</p>
<ul>
<li>Pre-installed pipelines</li>
<li>Genome assembly tools</li>
<li>Variant calling software</li>
<li>High-memory instances</li>
<li>Secure data handling</li>
</ul>
</div>
<div class="service-card">
<h3>๐ฏ Batch Processing</h3>
<p>Large-scale data processing and ETL workflows</p>
<ul>
<li>Apache Spark clusters</li>
<li>Hadoop MapReduce</li>
<li>Custom job queues</li>
<li>Workflow orchestration</li>
<li>Massive parallelization</li>
</ul>
</div>
<div class="service-card">
<h3>๐ค AI/ML Training</h3>
<p>Optimized infrastructure for training large language models and neural networks</p>
<ul>
<li>Multi-node GPU clusters</li>
<li>Distributed training</li>
<li>Model optimization tools</li>
<li>Jupyter notebooks</li>
<li>MLOps pipelines</li>
</ul>
</div>
</div>
<div class="compute-specs">
<h2>Infrastructure Specifications</h2>
<div class="specs-grid">
<div class="spec-item">
<h4>10,000+</h4>
<p>CPU Cores Available</p>
</div>
<div class="spec-item">
<h4>500+</h4>
<p>GPU Accelerators</p>
</div>
<div class="spec-item">
<h4>100 Gbps</h4>
<p>Network Bandwidth</p>
</div>
<div class="spec-item">
<h4>10 PB</h4>
<p>Storage Capacity</p>
</div>
</div>
</div>
<div class="use-cases">
<h2>Use Cases</h2>
<div class="use-case-grid">
<div class="use-case-card">
<h3>๐ฌ Scientific Research</h3>
<p>Climate modeling, molecular dynamics, particle physics simulations, and computational chemistry requiring massive parallel processing capabilities.</p>
</div>
<div class="use-case-card">
<h3>๐ง Machine Learning</h3>
<p>Training large language models, computer vision systems, natural language processing, and reinforcement learning agents on GPU clusters.</p>
</div>
<div class="use-case-card">
<h3>๐ฐ Financial Modeling</h3>
<p>Risk analysis, algorithmic trading, Monte Carlo simulations, and portfolio optimization requiring high-frequency computations.</p>
</div>
<div class="use-case-card">
<h3>๐ฌ Media Rendering</h3>
<p>CGI rendering, video encoding, 3D animation, visual effects processing, and real-time ray tracing for film and gaming.</p>
</div>
<div class="use-case-card">
<h3>๐งฌ Genomics</h3>
<p>DNA sequencing analysis, genome assembly, variant calling, transcriptomics, and personalized medicine research.</p>
</div>
<div class="use-case-card">
<h3>๐ Big Data Analytics</h3>
<p>Large-scale data processing, real-time analytics, predictive modeling, and business intelligence on petabyte-scale datasets.</p>
</div>
</div>
</div>
<div class="pricing-section" id="pricing">
<h2>Pricing Plans</h2>
<div class="pricing-grid">
<div class="pricing-card">
<h3>Shared Cluster</h3>
<p class="price">$0.50/core-hour</p>
<ul>
<li>Up to 1,000 cores</li>
<li>Standard priority</li>
<li>24-hour max runtime</li>
<li>Community support</li>
<li>Shared storage</li>
</ul>
<a href="tel:+18887658301" class="btn btn-primary">Get Started</a>
</div>
<div class="pricing-card">
<h3>Dedicated Cluster</h3>
<p class="price">Custom</p>
<ul>
<li>Private node allocation</li>
<li>Highest priority</li>
<li>Unlimited runtime</li>
<li>24/7 support</li>
<li>Dedicated storage</li>
<li>Custom configurations</li>
</ul>
<a href="tel:+18887658301" class="btn btn-primary">Contact Sales</a>
</div>
<div class="pricing-card">
<h3>GPU Instances</h3>
<p class="price">$2-$8/hour</p>
<ul>
<li>A100, H100, MI250 GPUs</li>
<li>On-demand or reserved</li>
<li>Multi-GPU nodes</li>
<li>Fast NVMe storage</li>
<li>Pre-configured environments</li>
</ul>
<a href="tel:+18887658301" class="btn btn-primary">Get Quote</a>
</div>
</div>
</div>
</div>
</section>
<footer>
<p>© 2025 SolveForce Computation Services. All rights reserved.</p>
<div class="contact-info">
<a href="tel:+18887658301">๐ (888) 765-8301</a>
<a href="/cdn-cgi/l/email-protection#2c4f4342584d4f586c5f43405a494a435e4f49024f4341">๐ง <span class="__cf_email__" data-cfemail="f794989983969483b784989b81929198859492d994989a">[email protected]</span></a>
<a href="https://portal.solveforce.com">๐ Portal</a>
<a href="https://solveforceapp.github.io/SolveForce.com/">๐ Documentation</a>
</div>
</footer>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script defer src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon='{"version":"2024.11.0","token":"aa6a8d3a22df4f8596068374e22fd880","server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>