-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnova.html
More file actions
1327 lines (1289 loc) · 67.4 KB
/
nova.html
File metadata and controls
1327 lines (1289 loc) · 67.4 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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title>CompecTA | Deep Learning with CompecTA Nova™ Series</title>
<meta name="description" content="We develop secure, scalable, high available, high performance computing and virtual productive system and network solutions for any kind of bussiness and research needs.">
<meta name="keywords" content="hpc, high performance computing, cloud computing, high speed computing, high technology computing, virtualization, network solutions, infiniband, nvidia grid, IT solutions,">
<meta name="author" content="compecta.com">
<!-- Mobil Tarayıcı Rengi -->
<meta name="theme-color" content="#1b75bc">
<meta name="msapplication-navbutton-color" content="#1b75bc">
<meta name="apple-mobile-web-app-status-bar-style" content="#1b75bc">
<!-- Website Dil Alternatifi -->
<link rel="alternate" hreflang="tr" href="//www.compecta.com.tr/nova.html">
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/apple-touch-icon-144x144.png">
<!-- Web Fonts -->
<link href='//fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500,500italic,700,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Raleway:700,400,300' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=PT+Serif&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="fonts/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- Fontello CSS -->
<link href="fonts/fontello/css/fontello.min.css" rel="stylesheet">
<!-- Plugins -->
<link href="plugins/magnific-popup/magnific-popup.css" rel="stylesheet">
<link href="plugins/rs-plugin/css/settings.min.css" rel="stylesheet">
<link href="css/animations.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="plugins/owl-carousel/owl.transitions.css" rel="stylesheet">
<link href="plugins/hover/hover-min.css" rel="stylesheet">
<link href="plugins/morphext/morphext.css" rel="stylesheet">
<!-- CompecTA CSS file -->
<link href="css/style.css" rel="stylesheet" >
<link href="css/compecta.css" rel="stylesheet" >
<link href="css/custom.css" rel="stylesheet">
</head>
<body class="no-trans front-page ">
<!-- scrollToTop -->
<!-- ================ -->
<div class="scrollToTop"><i class="icon-up-open-big"></i></div>
<!-- page wrapper start -->
<!-- ================ -->
<div class="page-wrapper">
<!-- header-container start -->
<div class="header-container">
<!-- header-top start -->
<!-- ================ -->
<div class="header-top dark ">
<div class="container">
<div class="row">
<div class="col-xs-4 col-sm-5">
<!-- header-top-first start -->
<!-- ================ -->
<div class="header-top-first clearfix">
<div class="social-links hidden-xs small">
<div class="btn-group dropdown">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown"><i class="fa fa-globe"></i>Language </button>
<ul class="dropdown-menu dropdown-animation">
<li class=""><a href="//www.compecta.com.tr/nova.html"><img alt="Türkçe" src="images/tr.jpg" class="bayrak"> TÜRKÇE</a></li>
<li class=""><a href="#" class="btn disabled" role="button"><img alt="English" src="images/en.jpg" class="bayrak"> ENGLISH <i class="fa fa-check"></i></a></li>
<li class=""><a href="//www.compecta.de/nova.html"><img alt="Deutsch" src="images/de.jpg" class="bayrak"> DEUTSCH</a></li>
</ul>
</div>
</div>
<div class="social-links hidden-lg hidden-md hidden-sm small">
<div class="btn-group dropdown">
<button type="button" class="btn dropdown-toggle" data-toggle="dropdown"><i class="fa fa-globe"></i>Language </button>
<ul class="dropdown-menu dropdown-animation">
<li class=""><a href="//www.compecta.com.tr/nova.html"><img alt="Türkçe" src="images/tr.jpg" class="bayrak"> TÜRKÇE</a></li>
<li class=""><a href="#" class="btn disabled" role="button"><img alt="English" src="images/en.jpg" class="bayrak"> ENGLISH <i class="fa fa-check"></i></a></li>
<li class=""><a href="//www.compecta.de/nova.html"><img alt="Deutsch" src="images/de.jpg" class="bayrak"> DEUTSCH</a></li>
</ul>
</div>
</div>
</div>
<!-- header-top-first end -->
</div>
<div class="col-xs-8 col-sm-7">
<!-- header-top-second start -->
<!-- ================ -->
<div id="header-top-second" class="clearfix text-right">
<ul class="list-inline">
<li><i class="fa fa-phone pr-5 pl-10"></i>+90 216 455-1865</li>
<li><i class="fa fa-envelope pr-5 pl-10"></i><a href="mailto:info@compecta.com">info@compecta.com</a></li>
</ul>
</div>
<!-- header-top-second end -->
</div>
</div>
</div>
</div>
<!-- header-top end -->
<!-- header start -->
<!-- ================ -->
<header class="header fixed clearfix">
<div class="container">
<div class="row">
<div class="col-xs-9 col-sm-12 col-md-2">
<!-- header-left start -->
<!-- ================ -->
<div class="header-left clearfix">
<!-- logo -->
<div id="logo" class="logo">
<a href="index.html"><img id="logo_img" src="images/compecta-logo.png" alt="CompecTA"></a>
</div>
</div>
<!-- header-left end -->
</div>
<div class=" col-sm-12 col-md-10">
<!-- header-right start -->
<!-- ================ -->
<div class="header-right clearfix">
<!-- main-navigation start -->
<!-- ================ -->
<div class="main-navigation animated">
<!-- navbar start -->
<!-- ================ -->
<nav role="navigation" class="navbar navbar-default">
<div class="container-fluid">
<!-- Toggle get grouped for better mobile display -->
<div class="navbar-header">
<button data-target="#navbar-collapse-1" data-toggle="collapse" class="navbar-toggle" type="button">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div id="navbar-collapse-1" class="collapse navbar-collapse">
<!-- main-menu -->
<ul class="nav navbar-nav anamenu">
<li class="visible-xs">
<a href="index.html">Home</a>
</li>
<li class="hidden-xs">
<a href="index.html"><i class="fa fa-home"></i></a>
</li>
<!-- products mega-menu start -->
<li class="dropdown mega-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Products</a>
<ul class="dropdown-menu">
<li>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-6">
<h4 class="title text-default">CompecTA Deep Learning & AI Systems</h4>
<div class="divider"></div>
<ul class="menu">
<li><a href="novamini.html"><i class="icon-right-open pr-10"></i>CompecTA Nova Engine Mini™ <sup class="badge badge-default">NEW</sup><br><small>Mini DL & AI Developer Box with 2 NVIDIA<sup>®</sup> GPUs</small></a></li>
<li><a href="nova.html"><i class="icon-right-open pr-10"></i>CompecTA Nova Engine™ <sup class="badge badge-orange">POPULAR</sup><br><small>DL & AI Developer Box with 4 NVIDIA<sup>®</sup> GPUs</small></a></li>
<li><a href="supernova.html"><i class="icon-right-open pr-10"></i>CompecTA SuperNova Engine™<br><small>Scalable Deep Learning Server Systems for AI Development</small></a></li>
<li><a href="supernovax.html"><i class="icon-right-open pr-10"></i>CompecTA SuperNova Engine X™ <sup class="badge badge-default">NEW</sup><br><small>Super-fast & Scalabe Server Systems with 10 GPUs</small></a></li>
</ul>
<h4 class="title text-default space-top">NVIDIA DGX Systems</h4>
<div class="divider"></div>
<ul class="menu">
<li><a href="dgx-h100.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX H100 <sup class="badge badge-default">NEW</sup><br><small>The Most Complete AI Platform</small></a></li>
<li><a href="dgx-a100.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX A100 <sup class="badge badge-orange">EXCLUSIVE</sup><br><small>The Universal System for AI Infrastructure</small></a></li>
<li><a href="dgxstation-a100.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX Station A100 <sup class="badge badge-orange">EXCLUSIVE</sup><br><small>Workgroup Appliance for the Age of AI</small></a></li>
<!-- <li><a href="dgx-1.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX-1 <br><small>The Fastest Path to Deep Learning!</small></a></li>
<li><a href="dgxstation.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX Station <br><small>Personal AI Supercomputer</small></a></li> -->
</ul>
</div>
<div class="col-md-6">
<span class="visible-xs"> </span>
<h4 class="title text-default">HPC Systems</h4>
<div class="divider"></div>
<ul class="menu">
<li><a href="feynmangrid.html"><i class="icon-right-open pr-10"></i>FeynmanGrid™<br><small>CompecTA's approach to HPC on Demand</small></a></li>
<li><a href="feynmanstorz.html"><i class="icon-right-open pr-10"></i>FeynmanStor Z™<br><small>Simple and agile filesystem for small HPC deployments!</small></a></li>
<li><a href="starterpack.html"><i class="icon-right-open pr-10"></i>HPC Starter Pack<br><small>Entry-level HPC modules for small/medium clusters.</small></a></li>
</ul>
<!-- <h4 class="title text-default space-top">CompecTA Exclusives</h4>
<div class="divider"></div>
<ul class="menu">
<li><a href="nebula.html"><i class="icon-right-open pr-10"></i>CompecTA Nebula™ Molecular Dynamics <sup class="badge badge-default">NEW</sup><br><small>Optimised MD Solutions for GROMACS, AMBER, NAMD and LAMMPS</small></a></li>
<li><a href="jupiter-drive-agx.html"><i class="icon-right-open pr-10"></i>CompecTA Jupiter™ Drive AGX Storage<br><small>Scalable Storage Solution for NVIDIA Drive Systems</small></a></li>
<li><a href="liquidcooling.html"><i class="icon-right-open pr-10"></i>CompecTA Liquid Cooling Systems <sup class="badge badge-default">NEW</sup><br><small>High Performance with Low Temperatures and Low Noise Levels</small></a></li>
<li><a href="immersedcooling.html"><i class="icon-right-open pr-10"></i>CompecTA Immersed Cooling Solutions <sup class="badge badge-red">SOON</sup><br><small>Greater Power and Cooling Efficiency with Zero Noise</small></a></li>
</ul> -->
</div>
</div>
</div>
</div>
</li>
</ul>
</li>
<!-- products mega-menu end -->
<li class="dropdown ">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">Solutions</a>
<ul class="dropdown-menu">
<li><a href="hpc.html"><i class="icon-right-open pr-10"></i>High Performance Computing Solutions<br><small>HPC systems polished by our 20 years of experience</small></a></li>
<li><a href="deeplearning.html"><i class="icon-right-open pr-10"></i>Deep Learning & AI Solutions<br><small>Ready-to-use solutions and tailor-made services</small></a></li>
<li><a href="beegfs.html"><i class="icon-right-open pr-10"></i>BeeGFS Filesystem Solutions <sup class="badge badge-default">NEW</sup><br><small>The Leading Parallel Cluster File System</small></a></li>
<li><a href="renting.html"><i class="icon-right-open pr-10"></i>CompecTA On-Demand Services <sup class="badge badge-default">NEW</sup><br><small>Minimize your Investment & Maximize your Efficiency</small></a></li>
<li><a href="cloud.html"><i class="icon-right-open pr-10"></i>Cloud Computing<br><small>Professional Cloud services from HPC Experts.</small></a></li>
<li><a href="virtualization.html"><i class="icon-right-open pr-10"></i>Virtualization & vGPU<br><small>New possibilities in Virtualization</small></a></li>
</ul>
</li>
<li>
<a href="partners.html">Partners</a>
</li>
<li>
<a href="references.html">References</a>
</li>
<li>
<a href="about.html">About Us</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- navbar end -->
</div>
<!-- main-navigation end -->
</div>
<!-- header-right end -->
</div>
</div>
</div>
</header>
<!-- header end -->
</div>
<!-- header-container end -->
<!-- breadcrumb start -->
<!-- ================ -->
<div class="breadcrumb-container">
<div class="container">
<ol class="breadcrumb">
<li><i class="fa fa-home pr-10"></i><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">Products</a>
<ul class="dropdown-menu">
<li><a href="novamini.html"><i class="icon-right-open pr-10"></i>CompecTA Nova Engine Mini</a></li>
<li><a href="nova.html"><i class="icon-right-open pr-10"></i>CompecTA Nova Engine</a></li>
<li><a href="supernova.html"><i class="icon-right-open pr-10"></i>CompecTA SuperNova Engine</a></li>
<li><a href="supernovax.html"><i class="icon-right-open pr-10"></i>CompecTA SuperNova Engine X</a></li>
<li><a href="dgx-h100.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX H100</a></li>
<li><a href="dgx-a100.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX A100</a></li>
<li><a href="dgxstation-a100.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX Station A100</a></li>
<!-- <li><a href="nebula.html"><i class="icon-right-open pr-10"></i>CompecTA Nebula™ MD</a></li> -->
<li><a href="dgx-1.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX-1</a></li>
<li><a href="dgxstation.html"><i class="icon-right-open pr-10"></i>NVIDIA<sup>®</sup> DGX Station</a></li>
<li><a href="feynmangrid.html"><i class="icon-right-open pr-10"></i>FeynmanGrid</a></li>
<li><a href="feynmanstorz.html"><i class="icon-right-open pr-10"></i>FeynmanStor Z</a></li>
<li><a href="starterpack.html"><i class="icon-right-open pr-10"></i>HPC Starter Pack</a></li>
</ul>
</li>
<li class="active">CompecTA Nova™ Series</li>
</ol>
</div>
</div>
<!-- breadcrumb end -->
<!-- slider start -->
<!-- ============ -->
<!-- banner start -->
<!-- ================ -->
<div class="banner dark-translucent-bg" style="background-image:url('images/banners/nova.jpg'); background-position: 50% 65%;">
<div class="container">
<div class="row">
<div class="col-md-10 text-center col-md-offset-1 pv-20">
<h3 class="title object-non-visible" data-animation-effect="fadeIn" data-effect-delay="100">Deep Learning & AI with CompecTA Nova™ Series</h3>
<div class="separator object-non-visible mt-10" data-animation-effect="fadeIn" data-effect-delay="100"></div>
<p class="text-center object-non-visible large" data-animation-effect="fadeIn" data-effect-delay="100">Deep Learning & AI Developer Box with 4 GPUs & NVIDIA DIGITS™</p>
<p class="text-center object-non-visible" data-animation-effect="fadeIn" data-effect-delay="100">Deep Learning made easier and faster! Deep learning is the fastest-growing field in machine learning. It uses many-layered Deep Neural Networks (DNNs) to learn levels of representation and abstraction that make sense of data such as images, sound, and text.</p>
</div>
</div>
</div>
</div>
<!-- banner end -->
<!-- slider end -->
<!-- main-container start -->
<!-- ==================== -->
<!-- section start -->
<!-- ================ -->
<section class="full-width-section pv-20 border-clear">
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>All-In-One & Ready to Use</h3>
<div class="separator-2"></div>
<p>CompecTA Nova Engine™ is an <strong>all-in-one, powerful, energy-efficient, cool and quiet</strong> deskside solution equipped with <strong>4 GPUs</strong> for Deep Learning and AI needs. It's an alternative to NVIDIA® DIGITS™ DevBox.</p>
<p>Built with the <strong>world’s best hardware, software, and systems engineering</strong> for deep learning in a powerful solution that can fit under your desk.</p>
<p>It comes with Deep Learning Neural Network library, Deep Learning Frameworks, Operating System and Drivers <strong>pre-installed and ready to use.</strong></p>
</div>
<div class="col-md-4">
<h3>Enterprise Level Support</h3>
<div class="separator-2"></div>
<p>CompecTA Nova Engine™ comes with an <strong>Enterprise Level Support</strong> package from HPC experts with over 20 years of experience in the field.</p>
<p>We will assist you with any problem you may encounter with your system.</p>
<br>
<img class="nv-preferred hidden-xs" src="images/NVIDIA_ElitePartner.png" alt="NVIDIA Preferred Solution Provider">
</div>
<div class="col-md-4">
<h3>Free CPU Time</h3>
<div class="separator-2"></div>
<p>CompecTA Nova Engine™ comes with <strong>100 thousands hours of CPU Time</strong> on CompecTA's in-house HPC Cluster service called <strong>FeynmanGrid™</strong>. </p>
<p>Use this opportunity to gain experience on using HPC Clusters or performance test any application or to test some new code/application.</p>
<img class="nv-preferred visible-xs" src="images/NVIDIA_ElitePartner.png" alt="NVIDIA Preferred Solution Provider">
<div class="space-top visible-xs"></div>
<img class="frameworks" src="images/frameworks.jpg" alt="DL Framewroks">
</div>
</div>
</div>
</section>
<section class="light-gray-bg full-width-section pv-20 border-clear">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h3>CompecTA Nova™ Series</h3>
<p class="small"><em>Deep Learning & AI Developer Box with NVIDIA DIGITS™</em></p>
<div class="separator-2"></div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>R49</strong></span> <sup class="badge badge-green">NEW</sup></h3>
<p class="performance"><strong>2.64 petaFLOPS Tensor Performance</strong><br>330.32 TFLOPS of FP16 Performance<br>330.32 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
<span class="text-default">
Machine Learning Development<br>
Deep Learning & AI Development<br>
Super-fast Neural Network Training<br>
Super-fast Inferencing
</span>
</p>
<p class="price"><br><strong>REQUEST A QUOTE</strong><br>
<small>CNVDDB3-R49V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="R49" src="images/nova-r49.jpg">
</div>
<ul class="ph-20">
<li>27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>INTEL / AMD up to 64-Core CPU</li>
<li>256 GB DDR4 3000MHz Memory <em>(up to 2048GB)</em></li>
<li><strong>2 x NVIDIA RTX 4090 24GB GDDR6X (Ada Lovelace)</strong></li>
<li><strong>32,768 total CUDA® Cores</strong></li>
<li><strong>1,024 total 4th Gen Tensor Cores</strong></li>
<li>2 x 8TB SATA 6G 3.5” Enterprise Hard Drives for DATA</li>
<li>1TB PCIe M.2 NVMe SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>2000W Power Supply</li>
<li>Ubuntu Linux 20.04 / 22.04 LTS</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach, Tensorflow</li>
<li>Anaconda Data Science Platform</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>1-Year CompecTA® Enterprise Support and HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual INTEL / AMD CPUs (128-Cores)</li>
<li>Up to 4TB 3200MHz DDR4 ECC memory</li>
<li>Up to 8 x HDD / SSD / NVMe Drives</li>
<li>Up to 27" - 43" 4K/8K UHD IPS Monitors</li>
<li><strong>Up to 4 x RTX 4090 with Liquid Cooling</strong></li>
</ul>
<div class="ph-20">
<a href="contact.html" class="btn btn-default btn-block btn-hvr hvr-shutter-out-horizontal margin-clear">ORDER NOW</a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>R39</strong></span> <sup class="badge badge-orange">POPULAR</sup></h3>
<p class="performance"><strong>1140 TFLOPS Tensor Performance</strong><br>142.2 TFLOPS of FP16 Performance<br>142.2 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
<span class="text-default">
Machine Learning Development<br>
Deep Learning & AI Development<br>
Neural Network Training<br>
Super-fast Inferencing
</span>
</p>
<p class="price"><small>prices starting from</small><br><strong>$13,995</strong> <small>(Excluding Taxes)</small><br>
<small>CNVDDB3-R39V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="R39" src="images/nova-r39.jpg">
</div>
<ul class="ph-20">
<li>27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>INTEL / AMD up to 64-Core CPU</li>
<li>256 GB DDR4 3000MHz Memory <em>(up to 2048GB)</em></li>
<li><strong>4 x NVIDIA RTX 3090 24GB GDDR6X (Ampere)</strong></li>
<li><strong>41,984 total CUDA® Cores</strong></li>
<li><strong>1,312 total 3rd Gen Tensor Cores</strong></li>
<li>2 x 8TB SATA 6G 3.5” Enterprise Hard Drives for DATA</li>
<li>1TB PCIe M.2 NVMe SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>2000W Power Supply</li>
<li>Ubuntu Linux 20.04 / 22.04 LTS</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach, Tensorflow</li>
<li>Anaconda Data Science Platform</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>1-Year CompecTA® Enterprise Support and HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual INTEL / AMD CPUs (128-Cores)</li>
<li>Up to 4TB 3200MHz DDR4 ECC memory</li>
<li>Up to 8 x HDD / SSD / NVMe Drives</li>
<li>Up to 27" - 43" 4K/8K UHD IPS Monitors</li>
<li>Up to 2 x NVIDIA NVLink</li>
</ul>
<div class="ph-20">
<a href="contact.html" class="btn btn-default btn-block btn-hvr hvr-shutter-out-horizontal margin-clear">ORDER NOW</a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>RTX6 Ada</strong></span> <sup class="badge badge-green">NEW</sup></h3>
<p class="performance"><strong>2.91 petaFLOPS Tensor Performance</strong><br>364.24 TFLOPS of FP16 Performance<br>364.24 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
<span class="text-default">
Machine Learning Development<br>
Deep Learning & AI Development<br>
Super-fast Neural Network Training<br>
Super-fast Inferencing
</span>
</p>
<p class="price"><br><strong>REQUEST A QUOTE</strong><br>
<small>CNVDDB4-RTX6AV2</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="RTX6" src="images/nova-rtx6-2.jpg">
</div>
<ul class="ph-20">
<li>27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>Dual INTEL / AMD up to 64-Core CPUs</li>
<li>256 GB DDR4 3000MHz Memory <em>(up to 4096GB)</em></li>
<li><strong>4 x NVIDIA RTX 6000 48GB GDDR6 with ECC memory (Ada Lovelace)</strong></li>
<li><strong>72,704 total CUDA® Cores</strong></li>
<li><strong>2,272 total 4th Gen Tensor Cores</strong></li>
<li>2 x 8TB SATA 6G 3.5” Enterprise Hard Drives for DATA</li>
<li>1TB PCIe M.2 NVMe SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>2200W Redundant Power Supply</li>
<li>Ubuntu Linux 20.04 / 22.04 LTS</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach, Tensorflow</li>
<li>Anaconda Data Science Platform</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>1-Year CompecTA® Enterprise Support and HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual INTEL / AMD CPUs (128-Cores)</li>
<li>Up to 4TB 3200MHz DDR4 ECC memory</li>
<li>Up to 8 x HDD / SSD / NVMe Drives</li>
<li>Up to 27" - 43" 4K/8K UHD IPS Monitors</li>
<li>Up to 2 x NVIDIA NVLink</li>
</ul>
<div class="ph-20">
<a href="contact.html" class="btn btn-default btn-block btn-hvr hvr-shutter-out-horizontal margin-clear">ORDER NOW</a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>RA6</strong></span></h3>
<p class="performance"><strong>1238.8 TFLOPS Tensor Performance</strong><br>154.8 TFLOPS of FP16 Performance<br>154.8 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
<span class="text-default">
Machine Learning Development<br>
Deep Learning & AI Development<br>
Neural Network Training<br>
Super-fast Inferencing
</span>
</p>
<p class="price"><small>prices starting from</small><br><strong>$32,395</strong> <small>(Excluding Taxes)</small><br>
<small>CNVDDB3-RA6V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="RA6" src="images/nova-ra6.jpg">
</div>
<ul class="ph-20">
<li>27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>INTEL / AMD up to 64-Core CPU</li>
<li>256 GB DDR4 3000MHz Memory <em>(up to 2048GB)</em></li>
<li><strong>4 x NVIDIA RTX A6000 48GB GDDR6 with ECC memory (Ampere)</strong></li>
<li><strong>43,008 total CUDA® Cores</strong></li>
<li><strong>1,344 total 3rd Gen Tensor Cores</strong></li>
<li>2 x 8TB SATA 6G 3.5” Enterprise Hard Drives for DATA</li>
<li>1TB PCIe M.2 NVMe SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>2000W Power Supply</li>
<li>Ubuntu Linux 20.04 / 22.04 LTS</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach, Tensorflow</li>
<li>Anaconda Data Science Platform</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>1-Year CompecTA® Enterprise Support and HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual INTEL / AMD CPUs (128-Cores)</li>
<li>Up to 4TB 3200MHz DDR4 ECC memory</li>
<li>Up to 8 x HDD / SSD / NVMe Drives</li>
<li>Up to 27" - 43" 4K/8K UHD IPS Monitors</li>
<li>Up to 2 x NVIDIA NVLink</li>
</ul>
<div class="ph-20">
<a href="contact.html" class="btn btn-default btn-block btn-hvr hvr-shutter-out-horizontal margin-clear">ORDER NOW</a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>RA4</strong></span></h3>
<p class="performance"><strong>613.6 TFLOPS Tensor Performance</strong><br>76.8 TFLOPS of FP16 Performance<br>76.8 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
<span class="text-default">
Machine Learning Development<br>
Deep Learning & AI Development<br>
Neural Network Training<br>
Super-fast Inferencing
</span>
</p>
<p class="price"><small>prices starting from</small><br><strong>$11,745</strong> <small>(Excluding Taxes)</small><br>
<small>CNVDDB3-RA4V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="RA4" src="images/nova-ra4.jpg">
</div>
<ul class="ph-20">
<li>27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>INTEL / AMD up to 64-Core CPU</li>
<li>256 GB DDR4 3000MHz Memory <em>(up to 2048GB)</em></li>
<li><strong>4 x NVIDIA RTX A4000 16GB GDDR6 with ECC memory (Ampere)</strong></li>
<li><strong>24,576 total CUDA® Cores</strong></li>
<li><strong>768 total 3rd Gen Tensor Cores</strong></li>
<li>2 x 8TB SATA 6G 3.5” Enterprise Hard Drives for DATA</li>
<li>1TB PCIe M.2 NVMe SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>2000W Power Supply</li>
<li>Ubuntu Linux 20.04 / 22.04 LTS</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach, Tensorflow</li>
<li>Anaconda Data Science Platform</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>1-Year CompecTA® Enterprise Support and HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual INTEL / AMD CPUs (128-Cores)</li>
<li>Up to 4TB 3200MHz DDR4 ECC memory</li>
<li>Up to 8 x HDD / SSD / NVMe Drives</li>
<li>Up to 27" - 43" 4K/8K UHD IPS Monitors</li>
<li><strong>Up to 7 x RTX A4000 GPUs</strong></li>
</ul>
<div class="ph-20">
<a href="contact.html" class="btn btn-default btn-block btn-hvr hvr-shutter-out-horizontal margin-clear">ORDER NOW</a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>RA45</strong></span> <sup class="badge badge-green">NEW</sup></h3>
<p class="performance"><strong>728.8 TFLOPS Tensor Performance</strong><br>94.8 TFLOPS of FP16 Performance<br>94.8 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
<span class="text-default">
Machine Learning Development<br>
Deep Learning & AI Development<br>
Neural Network Training<br>
Super-fast Inferencing
</span>
</p>
<p class="price"><br><strong>REQUEST A QUOTE</strong><br>
<small>CNVDDB3-RA45V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="RA45" src="images/nova-ra5.jpg">
</div>
<ul class="ph-20">
<li>27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>INTEL / AMD up to 64-Core CPU</li>
<li>256 GB DDR4 3000MHz Memory <em>(up to 2048GB)</em></li>
<li><strong>4 x NVIDIA RTX A4500 20GB GDDR6 with ECC memory (Ampere)</strong></li>
<li><strong>28,672 total CUDA® Cores</strong></li>
<li><strong>896 total 3rd Gen Tensor Cores</strong></li>
<li>2 x 8TB SATA 6G 3.5” Enterprise Hard Drives for DATA</li>
<li>1TB PCIe M.2 NVMe SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>2000W Power Supply</li>
<li>Ubuntu Linux 20.04 / 22.04 LTS</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach, Tensorflow</li>
<li>Anaconda Data Science Platform</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>1-Year CompecTA® Enterprise Support and HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual INTEL / AMD CPUs (128-Cores)</li>
<li>Up to 4TB 3200MHz DDR4 ECC memory</li>
<li>Up to 8 x HDD / SSD / NVMe Drives</li>
<li>Up to 27" - 43" 4K/8K UHD IPS Monitors</li>
<li>Up to 2 x NVIDIA NVLink</li>
</ul>
<div class="ph-20">
<a href="contact.html" class="btn btn-default btn-block btn-hvr hvr-shutter-out-horizontal margin-clear">CONTACT US</a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>RA5</strong></span></h3>
<p class="performance"><strong>888.8 TFLOPS Tensor Performance</strong><br>111.2 TFLOPS of FP16 Performance<br>111.2 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
<span class="text-default">
Machine Learning Development<br>
Deep Learning & AI Development<br>
Neural Network Training<br>
Super-fast Inferencing
</span>
</p>
<p class="price"><br><strong>REQUEST A QUOTE</strong><br>
<small>CNVDDB3-RA5V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="RA5" src="images/nova-ra5.jpg">
</div>
<ul class="ph-20">
<li>27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>INTEL / AMD up to 64-Core CPU</li>
<li>256 GB DDR4 3000MHz Memory <em>(up to 2048GB)</em></li>
<li><strong>4 x NVIDIA RTX A5000 24GB GDDR6 with ECC memory (Ampere)</strong></li>
<li><strong>32,768 total CUDA® Cores</strong></li>
<li><strong>1,024 total 3rd Gen Tensor Cores</strong></li>
<li>2 x 8TB SATA 6G 3.5” Enterprise Hard Drives for DATA</li>
<li>1TB PCIe M.2 NVMe SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>2000W Power Supply</li>
<li>Ubuntu Linux 20.04 / 22.04 LTS</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach, Tensorflow</li>
<li>Anaconda Data Science Platform</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>1-Year CompecTA® Enterprise Support and HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual INTEL / AMD CPUs (128-Cores)</li>
<li>Up to 4TB 3200MHz DDR4 ECC memory</li>
<li>Up to 8 x HDD / SSD / NVMe Drives</li>
<li>Up to 27" - 43" 4K/8K UHD IPS Monitors</li>
<li>Up to 2 x NVIDIA NVLink</li>
</ul>
<div class="ph-20">
<a href="contact.html" class="btn btn-default btn-block btn-hvr hvr-shutter-out-horizontal margin-clear">CONTACT US</a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>RA55</strong></span> <sup class="badge badge-green">NEW</sup></h3>
<p class="performance"><strong>1091.2 TFLOPS Tensor Performance</strong><br>136.4 TFLOPS of FP16 Performance<br>136.4 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
<span class="text-default">
Machine Learning Development<br>
Deep Learning & AI Development<br>
Neural Network Training<br>
Super-fast Inferencing
</span>
</p>
<p class="price"><br><strong>REQUEST A QUOTE</strong><br>
<small>CNVDDB3-RA55V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="RA55" src="images/nova-ra5.jpg">
</div>
<ul class="ph-20">
<li>27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>INTEL / AMD up to 64-Core CPU</li>
<li>256 GB DDR4 3000MHz Memory <em>(up to 2048GB)</em></li>
<li><strong>4 x NVIDIA RTX A5500 24GB GDDR6 with ECC memory (Ampere)</strong></li>
<li><strong>40,960 total CUDA® Cores</strong></li>
<li><strong>1,280 total 3rd Gen Tensor Cores</strong></li>
<li>2 x 8TB SATA 6G 3.5” Enterprise Hard Drives for DATA</li>
<li>1TB PCIe M.2 NVMe SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>2000W Power Supply</li>
<li>Ubuntu Linux 20.04 / 22.04 LTS</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach, Tensorflow</li>
<li>Anaconda Data Science Platform</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>1-Year CompecTA® Enterprise Support and HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual INTEL / AMD CPUs (128-Cores)</li>
<li>Up to 4TB 3200MHz DDR4 ECC memory</li>
<li>Up to 8 x HDD / SSD / NVMe Drives</li>
<li>Up to 27" - 43" 4K/8K UHD IPS Monitors</li>
<li>Up to 2 x NVIDIA NVLink</li>
</ul>
<div class="ph-20">
<a href="contact.html" class="btn btn-default btn-block btn-hvr hvr-shutter-out-horizontal margin-clear">CONTACT US</a>
</div>
</div>
</div>
</div>
<div class="col-sm-12">
<a class="btn btn-gray-transparent btn-block btn-lg collapsed btn-animated" data-toggle="collapse" href="#collapseContent" aria-expanded="false" aria-controls="collapseContent">See Archived Products <i class="fa fa-plus"></i></a>
</div>
<div class="collapse" id="collapseContent"><!-- collapse start -->
<div class="col-sm-12">
<h3>CompecTA Nova™ Series Archived Products</h3>
<p class="small"><em>Following products are no longer available to order.</em></p>
<div class="separator-2"></div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>R80Ti</strong></span> <sup class="badge badge-orange">POPULAR</sup></h3>
<p class="performance"><strong>430.4 TFLOPS DL Performance</strong><br>107.6 TFLOPS of FP16 Performance<br>53.8 TFLOPS of FP32 Performance<br> </p>
<p class="bestfor">
<small>Best suited for:</small><br>
Deep Learning Development<br>
Good Neural Network Training<br>
<span class="text-default">Super-fast Inferencing</span><br>
</p>
<p class="price"><strong>NOT AVAILABLE</strong><br>
<small>CNVDDB2-R80TIV1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="R80Ti" src="images/nova-r80ti.jpg">
</div>
<ul class="ph-20">
<li>Dell 27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>Intel Core i9-10900X, 3.70 GHz, 10-Core CPU <em>(up to 18-Core)</em></li>
<li>128 GB DDR4 2933MHz Memory <em>(up to 256GB)</em></li>
<li><strong>4 x NVIDIA GeForce RTX 2080Ti 384-bit 11GB GDDR6 Memory</strong></li>
<li><strong>17,408 Total CUDA® Cores</strong></li>
<li><strong>2,176 Total Tensor Cores</strong></li>
<li>3 x 4TB SATA 6Gb 3.5” Enterprise Hard Drive in RAID5 for DATA</li>
<li>512GB M.2 PCIe NVMe SSD for RAID Cache</li>
<li>250GB SATA 6Gb Internal SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>1600W Power Supply</li>
<li>Ubuntu 16.04 / 18.04</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>Enterprise Level Support from CompecTA® HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual Intel Xeon 28-Core CPUs</li>
<li>Up to 1.5TB 2933MHz DDR4 ECC memory</li>
<li>Up to 8 x 3.5" Enterprise Hard Drives</li>
<li>Up to 43" Dell 4K UHD IPS Monitor</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>QRTX8</strong></span></h3>
<p class="performance"><strong>522 TFLOPS DL Performance</strong><br>824.4 TOPS of INT8 Performance<br>130.4 TFLOPS of FP16 Performance<br>65.2 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
Machine Learning Development<br>
Deep Learning Development<br>
<span class="text-default">Super-fast Neural Network Training</span><br>
<span class="text-default">Super-fast Inferencing</span>
</p>
<p class="price"><strong>NOT AVAILABLE</strong><br>
<small>CNVDDB2-QRTX8V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="QRTX8" src="images/nova-qr8.jpg">
</div>
<ul class="ph-20">
<li>Dell 27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>Intel Core i9-10900X, 3.70 GHz, 10-Core CPU <em>(up to 18-Core)</em></li>
<li>128 GB DDR4 2933MHz Memory <em>(up to 256GB)</em></li>
<li><strong>4 x NVIDIA Quadro RTX 8000 384-bit 48GB GDDR6 with ECC Memory</strong></li>
<li><strong>18,432 Total CUDA® Cores</strong></li>
<li><strong>2,304 Total Tensor Cores</strong></li>
<li>3 x 4TB SATA 6Gb 3.5” Enterprise Hard Drive in RAID5 for DATA</li>
<li>512GB M.2 PCIe NVMe SSD for RAID Cache</li>
<li>250GB SATA 6Gb Internal SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>1600W Power Supply</li>
<li>Ubuntu 16.04 / 18.04</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>Enterprise Level Support from CompecTA® HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual Intel Xeon 28-Core CPUs</li>
<li>Up to 1.5TB 2933MHz DDR4 ECC memory</li>
<li>Up to 8 x 3.5" Enterprise Hard Drives</li>
<li>Up to 43" Dell 4K UHD IPS Monitor</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>GV100</strong></span></h3>
<p class="performance"><strong>474 TFLOPS DL Performance</strong><br>118.4 TFLOPS of FP16 Performance<br>59.2 TFLOPS of FP32 Performance<br>29.6 TFLOPS of FP64 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
Machine Learning Development<br>
Deep Learning Development<br>
<span class="text-default">Super-fast Neural Network Training</span><br>
<span class="text-default">Super-fast Inferencing</span>
</p>
<p class="price"><strong>NOT AVAILABLE</strong><br>
<small>CNVDDB2-GV100V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="GV100" src="images/nova-gv100.jpg">
</div>
<ul class="ph-20">
<li>Dell 27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>Intel Core i9-10900X, 3.70 GHz, 10-Core CPU <em>(up to 18-Core)</em></li>
<li>128 GB DDR4 2933MHz Memory <em>(up to 256GB)</em></li>
<li><strong>4 x NVIDIA Quadro GV100 4096-bit 32GB HBM2 Memory</strong></li>
<li><strong>20,480 Total CUDA® Cores</strong></li>
<li><strong>2,560 Total Tensor Cores</strong></li>
<li>3 x 4TB SATA 6Gb 3.5” Enterprise Hard Drive in RAID5 for DATA</li>
<li>512GB M.2 PCIe NVMe SSD for RAID Cache</li>
<li>250GB SATA 6Gb Internal SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>1600W Power Supply</li>
<li>Ubuntu 16.04 / 18.04</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>
<li>NVIDIA® CUDA® Toolkit</li>
<li>NVIDIA® cuDNN™</li>
<li>Caffe, Theano, Torch, BIDMach</li>
<li><strong>100k CPU Time on FeynmanGrid™</strong></li>
<li><strong>Enterprise Level Support from CompecTA® HPC Professional Services</strong></li>
</ul>
<span class="text-default">Optional:</span>
<ul class="ph-20">
<li>Up to Dual Intel Xeon 28-Core CPUs</li>
<li>Up to 1.5TB 2933MHz DDR4 ECC memory</li>
<li>Up to 8 x 3.5" Enterprise Hard Drives</li>
<li>Up to 43" Dell 4K UHD IPS Monitor</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="image-box style-2 mb-20 bordered shadow">
<div class="body">
<h3>Nova Engine™ <span class="text-default"><strong>QRTX6</strong></span></h3>
<p class="performance"><strong>522 TFLOPS DL Performance</strong><br>824.4 TOPS of INT8 Performance<br>130.4 TFLOPS of FP16 Performance<br>65.2 TFLOPS of FP32 Performance</p>
<p class="bestfor">
<small>Best suited for:</small><br>
Machine Learning Development<br>
Deep Learning Development<br>
<span class="text-default">Super-fast Neural Network Training</span><br>
<span class="text-default">Super-fast Inferencing</span>
</p>
<p class="price"><strong>NOT AVAILABLE</strong><br>
<small>CNVDDB2-QRTX6V1</small></p>
<div class="separator"></div>
<div class="overlay-container pv-10">
<img alt="QRTX6" src="images/nova-qr6.jpg">
</div>
<ul class="ph-20">
<li>Dell 27" Full HD IPS Monitor</li>
<li>Workstation Class Motherboard</li>
<li>Intel Core i9-10900X, 3.70 GHz, 10-Core CPU <em>(up to 18-Core)</em></li>
<li>128 GB DDR4 2933MHz Memory <em>(up to 256GB)</em></li>
<li><strong>4 x NVIDIA Quadro RTX 6000 384-bit 24GB GDDR6 with ECC Memory</strong></li>
<li><strong>18,432 Total CUDA® Cores</strong></li>
<li><strong>2,304 Total Tensor Cores</strong></li>
<li>3 x 4TB SATA 6Gb 3.5” Enterprise Hard Drive in RAID5 for DATA</li>
<li>512GB M.2 PCIe NVMe SSD for RAID Cache</li>
<li>250GB SATA 6Gb Internal SSD for OS</li>
<li>Logitech Keyboard and Mouse</li>
<li>1600W Power Supply</li>
<li>Ubuntu 16.04 / 18.04</li>
<li>NVIDIA-qualified driver</li>
<li>NVIDIA® DIGITS™</li>