-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1278 lines (1273 loc) · 93.7 KB
/
index.html
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
<html lang="en">
<head>
<title>UXL Foundation: Unified Acceleration</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<link rel="stylesheet" id="oneapitheme-fonts-css" href="https://fonts.googleapis.com/css?family=Lato%3A300%2C300italic%2C400%2C400italic%2C500%2C700%2C700italic%2C900&subset=latin%2Clatin-ext&ver=6.0.2" type="text/css" media="all">
<link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="/css/flexboxgrid.min.css" type="text/css">
<link rel="stylesheet" href="/css/slick.css" type="text/css">
<link rel="stylesheet" href="/css/slick-theme.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script src="/js/vendor/slick.min.js"></script>
<script src="/js/app.js"></script>
</head>
<body>
<div class="jdfbanner">
<div class="container">
<a href="https://jointdevelopment.org/" rel="noopener noreferrer" target="_blank">
<img alt="Joint Development foundation Project" src="/images/jdfp-banner.svg" class="inline">
</a>
</div>
</div>
<main>
<div class="entry-content">
<section class="max-w-full bg-gradient-to-b from-[#888C9B28] to-white relative">
<div class="absolute inset-0 w-full h-full bg-cover bg-no-repeat" style="background-image: url('/images/oneapi-bg-texture.svg');"></div>
<div class="tw-container py-9 relative">
<div class="lg:max-w-[850px] mt-16 lg:text-left text-center">
<div class="lg:flex items-center justify-start lg:mb-0 mb-6">
<img src="/images/uxl-logo-med.png" alt="UXL" height="100" width="348" class="grow flex-auto h-auto w-full max-w-[348px] max-h-[100px] lg:mr-5 lg:mx-0 lg:mb-0 mb-6 block mx-auto">
<h1 class="text-[51px] font-light leading-tight ligatures-none">Unified Acceleration Foundation</h1>
</div>
<h2 class="text-2xl font-bold mb-4">Join us to drive an open standard accelerator software ecosystem!</h2>
<div class="text-lg max-w-[650px]">
<ul>
<li>Build a multi-architecture multi-vendor software ecosystem for all accelerators.</li>
<li>Unify the heterogeneous compute ecosystem around open standards.</li>
<li>Build on and expand open-source projects for accelerated computing.</li>
</ul>
</div>
<div class="flex items-center lg:justify-start justify-center gap-x-4 gap-y-2 mt-8">
<a href="https://uxlfoundation.org/membership" target="_blank" class="text-[12px] font-bold uppercase tracking-widest bg-vibrant-orange hover:bg-white text-white visited:text-white focused:text-white hover:text-vibrant-orange rounded-full h-10 inline-flex items-center justify-start px-4 shadow shadow-[#00000029] no-underline">
Join
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
<a href="https://github.com/uxlfoundation/foundation" target="_blank" class="text-[12px] font-bold uppercase tracking-widest border border-vibrant-orange hover:bg-vibrant-orange hover:vibrant-orange text-vibrant-orange hover:text-white rounded-full h-10 inline-flex items-center justify-start px-4 shadow shadow-[#00000029] no-underline">
Participate
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
<a href="#newsletter" class="text-[12px] font-bold uppercase tracking-widest border border-vibrant-orange hover:bg-vibrant-orange hover:vibrant-orange text-vibrant-orange hover:text-white rounded-full h-10 inline-flex items-center justify-start px-4 shadow shadow-[#00000029] no-underline">
Newsletter
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
<img src="/images/wp-sync/uxl-header-uncrop.png" alt="" class="lg:absolute xl:max-h-[408px] xl:w-auto h-full xl:mt-8 xl:right-[-24%] lg:max-h-[300px] lg:top-1/2 lg:right-[-17%] lg:-translate-y-1/2 lg:origin-bottom lg:mt-20 lg:block hidden">
</div>
</div>
<div class="tw-container relative">
<div class="w-100 px-0 border border-[#d8d8d8] rounded-lg flex justify-between items-stretch gap-x-11 gap-y-2 min-h-[250px] overflow-hidden lg:flex-nowrap flex-wrap z-10 relative bg-white shadow">
<div class="min-h-[250px] lg:flex-shrink-0 lg:max-h-none lg:w-[376px] max-h-[250px] self-stretch">
<img src="/images/wp-sync/UXL-Foundation-Thankyou-500x752-1.png" alt="" class="h-full w-full object-center object-cover">
</div>
<div class="lg:px-0 p-7 flex-auto xl:mr-24 lg:mr-7 self-center">
<h2 class="text-2xl font-bold mb-4">oneAPI DevSummit Hosted by UXL Foundation</h2>
<div class="text-lg">
<p><span data-sheets-root="1">Join us for an in-depth showcase of oneAPI specification along with open-source projects that implement oneAPI specification. oneAPI is designed to enable developers to use a single code base across multiple accelerators and architectures, supporting artificial intelligence, high performance computing, edge computing, automotive, and more.</span></p>
<p> </p>
<p>Hosted by the UXL Foundation, this community-led conference brings together developers to explore, share, and showcase the capabilities of oneAPI through hands-on tutorials, demos, technical talks, and panel discussions.</p>
<p> </p>
<p>We welcome you for two days across global time zones to discover how oneAPI is being used today and explore its future. Join our ever-growing community.</p>
</div>
<div class="flex flex-wrap md:flex-nowrap items-center lg:justify-start justify-center gap-x-4 gap-y-2 mt-4">
<a href="https://oneapi.io/events/oneapi-devsummit-hosted-by-uxl-foundation/" target="_blank" class="text-[12px] font-bold uppercase tracking-widest bg-vibrant-orange hover:bg-white text-white visited:text-white focused:text-white hover:text-vibrant-orange rounded-full h-10 inline-flex items-center justify-start px-4 shadow shadow-[#00000029] no-underline">
Watch Now
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="max-w-full bg-white">
<div class="tw-container py-12">
<div class="w-full flex flex-wrap md:flex-nowrap justify-between mb-10 gap-x-1 gap-y-4 items-center">
<h2 class="lg:text-[44px] font-bold text-3xl text-left text-neutral-800">UXL News</h2>
<div>
<a href="https://www.oneapi.io/blog/" target="_blank" class="text-[12px] font-bold uppercase tracking-widest border border-vibrant-orange hover:bg-vibrant-orange hover:vibrant-orange text-vibrant-orange hover:text-white rounded-full h-10 inline-flex items-center justify-start px-4 shadow shadow-[#00000029] no-underline">
See All Posts<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
<div class="w-100 px-0 border border-[#d8d8d8] flex justify-between items-stretch gap-x-12 gap-y-2 min-h-[250px] overflow-hidden lg:flex-nowrap flex-wrap z-10 relative bg-[#FCFCFC]">
<div class="min-h-[250px] lg:flex-shrink-0 lg:max-h-none lg:w-[376px] max-h-[250px] self-stretch">
<img src="/images/wp-sync/UXL-Foundation-SC24.jpg" alt="" class="h-full w-full object-center object-cover">
</div>
<div class="lg:px-0 lg:py-12 p-7 flex-auto xl:mr-24 lg:mr-7 self-center">
<h2 class="text-2xl font-bold mb-4">The UXL Foundation: Join to Drive Open Standards for all Accelerators</h2>
<div class="text-lg">
<p><strong>Location:</strong> Westin Peachtree Plaza, Atlanta, Chastain Room 1-2</p>
<p><strong>Date:</strong> Monday, November 18th, 9:00-11:00 am</p>
<ul>
<li>Members of the UXL Foundation or SIGs</li>
<li>Prospective Members</li>
<li>Developers interested in Open Accelerated Compute in HPC/AI</li>
</ul>
</div>
<div class="md:flex items-center lg:justify-start justify-center gap-x-4 gap-y-2 mt-8">
<a href="https://linuxfoundation.regfox.com/uxl-foundation-at-sc-24?" target="_blank" class="text-[12px] font-bold uppercase tracking-widest bg-vibrant-orange hover:bg-white text-white visited:text-white focused:text-white hover:text-vibrant-orange rounded-full h-10 inline-flex items-center justify-start px-4 shadow shadow-[#00000029] no-underline">
Register Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<style>
.uxl-news-slider .slick-list, .uxl-news-slider .slick-track{
height: 100%;
}
.uxl-news-slider .slick-list{
/* add padding to show drop shadows */
padding-top: 20px;
padding-bottom: 20px;
}
.uxl-news-slider .slick-track
{
display: flex !important;
gap: 1rem;
justify-content: space-between;
}
.uxl-news-slider .slick-slide
{
height: inherit !important;
}
.uxl-news-slider .slick-next:before
{
content: '';
width: 10px;
height: 10px;
border-top: 1px solid white;
display: block;
border-right: 1px solid white;
transform: rotate(45deg);
position: relative;
left: 7px;
}
.uxl-news-slider .slick-prev:before
{
content: '';
width: 10px;
height: 10px;
border-top: 1px solid white;
display: block;
border-left: 1px solid white;
transform: rotate(-45deg);
position: relative;
left: 11px;
}
.uxl-news-slider .slick-dots li button::before{
color: #888c9b;
}
</style>
<div class="mt-4">
<div class="uxl-news-slider h-80">
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">Intel oneCCL 2021.14 Brings New Performance & Scalability Optimizations</h4>
</div>
<div>
<a href="https://www.phoronix.com/news/Intel-oneCCL-2021.14" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">Happy Birthday Unified Acceleration Foundation (UXL)</h4>
</div>
<div>
<a href="https://www.oneapi.io/blog/happy-birthday-unified-acceleration-foundation-uxl/" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">The Autoware Foundation and The UXL Foundation Collaborate on Achieving Software Portability for Open Source Autonomous Driving Stack</h4>
</div>
<div>
<a href="https://autoware.org/the-autoware-foundation-and-the-uxl-foundation-collaborate-on-achieving-software-portability-for-open-source-autonomous-driving-stack/" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">How open source is shaping AI developments</h4>
</div>
<div>
<a href="https://www.computerweekly.com/news/366606012/How-open-source-is-shaping-AI-developments" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">In pursuit of energy efficiency: How Fujitsu and Arm are shaping AI’s tomorrow</h4>
</div>
<div>
<a href="https://www.fujitsu.com/global/about/research/article/202407-fujitsu-arm.html" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M543.9 96c-6.2 0-12.5 1.8-18.2 5.7L416 170.1v-58.3c0-26.4-23.2-47.8-51.8-47.8H51.8C23.2 64 0 85.4 0 111.8v288.4C0 426.6 23.2 448 51.8 448h312.4c28.6 0 51.8-21.4 51.8-47.8v-58.3l109.7 68.3c5.7 4 12.1 5.7 18.2 5.7 16.6 0 32.1-13 32.1-31.5V127.5C576 109 560.5 96 543.9 96zM368 200v198.9c-.6 .4-1.8 1.1-3.8 1.1H51.8c-2 0-3.2-.6-3.8-1.1V113.1c.6-.4 1.8-1.1 3.8-1.1h312.4c2 0 3.2 .6 3.8 1.1V200zm160 155.2l-112-69.8v-58.7l112-69.8v198.3z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Video</span>
</div>
<h4 class="text-xl font-bold mb-4">Bring your code to RISC-V accelerators with SYCL - Charles Macfarlane, Codeplay</h4>
</div>
<div>
<a href="https://youtu.be/Jw_nEtYi2-k?si=QE5Hnew64MrpPI8M" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Watch Video <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">Pursuing Energy Efficiency: Fujitsu and Arm's AI Future</h4>
</div>
<div>
<a href="https://www.fujitsu.com/jp/about/research/article/202407-fujitsu-arm.html" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M543.9 96c-6.2 0-12.5 1.8-18.2 5.7L416 170.1v-58.3c0-26.4-23.2-47.8-51.8-47.8H51.8C23.2 64 0 85.4 0 111.8v288.4C0 426.6 23.2 448 51.8 448h312.4c28.6 0 51.8-21.4 51.8-47.8v-58.3l109.7 68.3c5.7 4 12.1 5.7 18.2 5.7 16.6 0 32.1-13 32.1-31.5V127.5C576 109 560.5 96 543.9 96zM368 200v198.9c-.6 .4-1.8 1.1-3.8 1.1H51.8c-2 0-3.2-.6-3.8-1.1V113.1c.6-.4 1.8-1.1 3.8-1.1h312.4c2 0 3.2 .6 3.8 1.1V200zm160 155.2l-112-69.8v-58.7l112-69.8v198.3z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Video</span>
</div>
<h4 class="text-xl font-bold mb-4">Accelerate Together: How to Drive Acceleration with Industry Alliances - UXL Foundation at OSSNA (Open Source Summit North America)</h4>
</div>
<div>
<a href="https://www.youtube.com/watch?v=MvuEuthCHhM" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Watch Video <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M543.9 96c-6.2 0-12.5 1.8-18.2 5.7L416 170.1v-58.3c0-26.4-23.2-47.8-51.8-47.8H51.8C23.2 64 0 85.4 0 111.8v288.4C0 426.6 23.2 448 51.8 448h312.4c28.6 0 51.8-21.4 51.8-47.8v-58.3l109.7 68.3c5.7 4 12.1 5.7 18.2 5.7 16.6 0 32.1-13 32.1-31.5V127.5C576 109 560.5 96 543.9 96zM368 200v198.9c-.6 .4-1.8 1.1-3.8 1.1H51.8c-2 0-3.2-.6-3.8-1.1V113.1c.6-.4 1.8-1.1 3.8-1.1h312.4c2 0 3.2 .6 3.8 1.1V200zm160 155.2l-112-69.8v-58.7l112-69.8v198.3z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Video</span>
</div>
<h4 class="text-xl font-bold mb-4">Intel ISC 2024 Keynote</h4>
</div>
<div>
<a href="https://www.youtube.com/watch?v=MlvJmiCkXgc" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Watch Video <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">AI in Context: UXL to Be an Open-Source Alternative to NVIDIA’s CUDA?</h4>
</div>
<div>
<a href="https://futurumgroup.com/insights/ai-in-context-uxl-to-be-an-open-source-alternative-to-nvidias-cuda/" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">UXL Foundation readying alternative to Nvidia's CUDA for this year</h4>
</div>
<div>
<a href="https://www.theregister.com/2024/03/26/uxl_foundation_cuda_alternative/" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="uxl-news-slide group rounded-[10px] bg-white shadow-card px-6 pt-4 pb-6 min-h-64">
<div class="flex flex-col justify-between h-full">
<div>
<div class="w-full text-[#888C9B] flex items-center mb-8">
<span class="mr-2 inline-block"><svg class="h-[18px] w-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="currentcolor" d="M552 64H112c-20.9 0-38.6 13.4-45.2 32H24c-13.3 0-24 10.7-24 24v272c0 30.9 25.1 56 56 56h496c13.3 0 24-10.7 24-24V88c0-13.3-10.7-24-24-24zM48 392V144h16v248c0 4.4-3.6 8-8 8s-8-3.6-8-8zm480 8H111.4c.4-2.6 .6-5.3 .6-8V112h416v288zM172 280h136c6.6 0 12-5.4 12-12v-96c0-6.6-5.4-12-12-12H172c-6.6 0-12 5.4-12 12v96c0 6.6 5.4 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H172c-6.6 0-12-5.4-12-12zm192 0v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0-144v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12zm0 72v-24c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v24c0 6.6-5.4 12-12 12H364c-6.6 0-12-5.4-12-12z"/></svg></span><span class="text-[12px] uppercase tracking-wider font-bold inline-block">Article</span>
</div>
<h4 class="text-xl font-bold mb-4">Vmware Collaborates With Intel To Unlock Private AI Everywhere</h4>
</div>
<div>
<a href="https://menafn.com/1107389413/Vmware-Collaborates-With-Intel-To-Unlock-Private-AI-Everywhere" target="_blank" class="text-[12px] font-bold uppercase tracking-widest text-vibrant-orange inline-flex items-center justify-start no-underline">
Read Now <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="ml-2 size-4"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path fill="currentcolor" d="M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z"/>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script>
jQuery(function(){
jQuery('.uxl-news-slider').slick({
infinite: true,
slidesToShow: 3,
slidesToScroll: 1,
arrows: true,
dots: false,
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 2,
slidesToScroll: 1,
infinite: true,
arrows: false,
dots: false
}
},
{
breakpoint: 640,
settings: {
slidesToShow: 1,
slidesToScroll: 1,
arrows: false,
dots: true
}
}
]
})
})
</script>
<section class="max-w-full bg-white">
<div class="transform rotate-180 -mb-[1px] w-[101vw] overflow-hidden">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 40.699">
<path id="wavesNegative" d="M257.208,32.966C352,25.805,451.464,11.711,547.392,5.933,646.1-.028,749.064.319,847.932,6.067c69.408,4.032,136.8,10.681,206.4,14.39,129.332,6.815,262.709,3.357,385.668-10v31.85H0V33.987C81.372,41.935,173.148,39.319,257.208,32.966Z" transform="translate(1440 42.306) rotate(180)" fill="#220473"></path>
</svg>
</div>
<div class="max-w-full bg-gradient-to-b from-[#220473] to-[#4308E5]">
<div class="tw-container pt-12 pb-12">
<h2 class="lg:text-[44px] font-bold text-3xl text-center mt-12 mb-10 text-white">Steering Members</h2>
<div class="flex gap-4 flex-wrap justify-center">
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<img src="https://oneapi.io/wp-content/uploads/2023/09/Arm_logo_blue_150MD.png" alt="" class="max-w-full max-h-[80px] w-auto">
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<img src="https://oneapi.io/wp-content/uploads/2023/09/fujitsu.png" alt="" class="max-w-full max-h-[80px] w-auto">
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.gehealthcare.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/09/GE_HealthCare_logo.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<img src="https://oneapi.io/wp-content/uploads/2023/09/google-cloud.png" alt="" class="max-w-full max-h-[80px] w-auto">
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<img src="https://oneapi.io/wp-content/uploads/2024/04/Imagination_Logo_hori_Blk.png" alt="Imagination Tech" class="max-w-full max-h-[80px] w-auto">
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<img src="https://oneapi.io/wp-content/uploads/2023/09/intel.png" alt="" class="max-w-full max-h-[80px] w-auto">
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<img src="https://oneapi.io/wp-content/uploads/2023/09/qualcomm.png" alt="" class="max-w-full max-h-[80px] w-auto">
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<img src="https://oneapi.io/wp-content/uploads/2023/09/samsung.png" alt="" class="max-w-full max-h-[80px] w-auto">
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<img src="https://oneapi.io/wp-content/uploads/2024/10/Broadcom_Logo_Black_no-tag.png" alt="" class="max-w-full max-h-[80px] w-auto">
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl group">
<a href="https://uxlfoundation.org/membership" target="_blank" class="rounded-xl w-full p-4 border-2 self-stretch flex items-center justify-center border-[#707070] border-dashed bg-[#F4F4F4] uppercase lg:text-lg tracking-wider font-bold leading-relaxed !text-[#888C9B] hover:!text-vibrant-orange relative z-10 no-underline">
Add your organization
<div class="bg-vibrant-orange absolute rounded-full size-12 right-0 transform translate-x-3/4 z-20 shadow-lg flex items-center justify-center group-hover:bg-white">
<div class="w-[20px] h-[4px] bg-white absolute group-hover:bg-vibrant-orange"></div>
<div class="h-[20px] w-[4px] bg-white absolute group-hover:bg-vibrant-orange"></div>
</div>
</a>
</article>
</div>
</div>
<div class="tw-container pb-12">
<h2 class="lg:text-[44px] font-bold text-3xl text-center mt-12 mb-10 text-white">General Members</h2>
<div class="flex gap-4 flex-wrap justify-center">
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.micron.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/09/micron.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.skhynix.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/09/SKHynix_logo.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
</div>
</div>
<div class="tw-container pb-12">
<h2 class="lg:text-[44px] font-bold text-3xl text-center mt-12 mb-10 text-white">Contributing Members</h2>
<div class="flex gap-4 flex-wrap justify-center">
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://akhetonics.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/akhetonics-1.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://axelera.ai/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/axelera_ai-1.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.canspirit.ai/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/canspirit_artificial_intelligence-1.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.cloudsai.co.nz/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/CloudsAI.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://codasip.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/06/codasip_sro.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://codereckons.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/Code-Reckons-logo-screenshot.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.denso.com/global/en/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/08/Denso_logo_-_squared.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.embecosm.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/embecosm.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://fixstars.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/06/fixstars-logo.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://flapmax.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/flapmax-logo-white-rwd.png.rendition.intel_.web_.256.192.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://inspiresemi.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/Inspire-Semiconductor.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://gi4all.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/06/gmac_intelligence.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://market-potential.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/market_Potential.jpg" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://mbrdna.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/Mercedes-orig_img_90008mb_rdna_2c_all_black.jpg" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://onefact.org/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/06/one_fact_foundation.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.thundersoft.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/ThunderSoftware.jpg" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://untether.ai/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/06/untether_ai.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.wipro.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/Wipro.jpg" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.xdxct.com/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/07/xiangdixian-logo.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
</div>
</div>
<div class="tw-container pb-12">
<h2 class="lg:text-[44px] font-bold text-3xl text-center mt-12 mb-10 text-white">Affiliate Partners</h2>
<div class="flex gap-4 flex-wrap justify-center">
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://autoware.org/" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/06/Autoware-Main-Logo-whiteBG.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
<article class="flex-grow-0 flex-auto xl:w-[calc(20%-1rem)] lg:w-[calc(25%-1rem)] md:w-[calc(33.34%-1rem)] sm:w-[calc(50%-1rem)] w-full sm:max-w-none max-w-[80%] shadow-md flex items-center justify-center text-center min-h-[135px] rounded-xl bg-white p-5">
<a href="https://www.khronos.org/members/liaisons" target="_blank">
<img src="https://oneapi.io/wp-content/uploads/2024/06/Khronos_100px_June18.png" alt="" class="max-w-full max-h-[80px] w-auto">
</a>
</article>
</div>
</div>
<div class="tw-container pb-12">
<h2 class="lg:text-[44px] font-bold text-3xl text-center mb-10 text-white">Steering Committee Members</h2>
<div class="flex gap-10 flex-wrap justify-center relative committeev2">
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<img src="/images/wp-sync/Andrew-Wafaa.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Andrew Wafaa
</p>
<p class="font-lg mb-2 mt-0">
Senior Director Software Communities & Fellow
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/Arm_logo_blue_150MD.png" alt="" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div data-memberi="1" class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<div class="bg-white w-[45px] h-[30px] border-2 border-[#888C9B] group-hover:border-vibrant-orange rounded-md absolute bottom-4 right-3">
<span class="text-[#888C9B] group-hover:text-vibrant-orange font-bold select-none text-3xl leading-[0] top-3 relative" style="font-family: Helvetica,sans-serif">“”</span>
<div class="bg-white border-r-2 border-b-2 border-[#888C9B] group-hover:border-vibrant-orange w-3 h-3 transform rotate-45 absolute -bottom-[7px] right-2"></div>
</div>
<img src="/images/wp-sync/Rod-Burns-1.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Rod Burns
</p>
<p class="font-lg mb-2 mt-0">
VP of Ecosystem
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/codeplay-lg.png" alt="" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="member-overlay member-overlay-1 hidden absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 z-20 h-full w-full justify-center items-center">
<div class="overlay-target bg-white h-full rounded-lg shadow-card xl:p-12 py-8 px-6 xl:max-h-[600px] max-h-[60vh] max-w-[600px] relative">
<div class="close-icon absolute top-3 right-3 size-4 rotate-45 cursor-pointer p2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="20"><!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path d="M232 72c0-13.3-10.7-24-24-24s-24 10.7-24 24V232H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H184V440c0 13.3 10.7 24 24 24s24-10.7 24-24V280H392c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V72z"/>
</svg>
</div>
<div class="overflow-y-auto max-h-full h-fit w-full">
<div>
<p class="lg:text-lg font-bold">“The foundation members aspire to build the largest open ecosystem for accelerated computing. The initial contributions to the foundation will bring an existing open standards based platform with open governance. Our ultimate aim is to foster a multi-architecture and multi-vendor programming platform for all accelerators”</p>
<p class="mt-2 lg:text-lg"><i>Rod Burns, VP of Ecosystem</i></p>
</div>
</div>
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<img src="/images/wp-sync/Masahiro-Doteguchi.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Masahiro Doteguchi
</p>
<p class="font-lg mb-2 mt-0">
Senior Engineering Manager
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/fujitsu-1.png" alt="Fujitsu" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<img src="/images/wp-sync/Dr.-Priyanka-Sharma.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Dr. Priyanka Sharma
</p>
<p class="font-lg mb-2 mt-0">
Director of Software Engineering
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/fujitsu-1.png" alt="Fujitsu" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<img src="/images/wp-sync/evgeny-square-image-002.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Evgeny Drapkin
</p>
<p class="font-lg mb-2 mt-0">
Chief Engineer - Compute at GE HealthCare
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/GEHealthcare.jpg" alt="" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<img src="/images/wp-sync/Penporn-Koanantakool.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Penporn Koanantakool
</p>
<p class="font-lg mb-2 mt-0">
Senior Software Engineer
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/google-cloud.png" alt="" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<img src="/images/wp-sync/Dave-Murray.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Dave Murray
</p>
<p class="font-lg mb-2 mt-0">
AI Software Product Management
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/imagination-small-white.png" alt="Imagination Tech" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div data-memberi="7" class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<div class="bg-white w-[45px] h-[30px] border-2 border-[#888C9B] group-hover:border-vibrant-orange rounded-md absolute bottom-4 right-3">
<span class="text-[#888C9B] group-hover:text-vibrant-orange font-bold select-none text-3xl leading-[0] top-3 relative" style="font-family: Helvetica,sans-serif">“”</span>
<div class="bg-white border-r-2 border-b-2 border-[#888C9B] group-hover:border-vibrant-orange w-3 h-3 transform rotate-45 absolute -bottom-[7px] right-2"></div>
</div>
<img src="/images/wp-sync/Robert-Cohn.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Robert Cohn
</p>
<p class="font-lg mb-2 mt-0">
Senior Principal Engineer
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/logo-white-3000px.png" alt="Intel" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="member-overlay member-overlay-7 hidden absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 z-20 h-full w-full justify-center items-center">
<div class="overlay-target bg-white h-full rounded-lg shadow-card xl:p-12 py-8 px-6 xl:max-h-[600px] max-h-[60vh] max-w-[600px] relative">
<div class="close-icon absolute top-3 right-3 size-4 rotate-45 cursor-pointer p2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="20"><!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path d="M232 72c0-13.3-10.7-24-24-24s-24 10.7-24 24V232H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H184V440c0 13.3 10.7 24 24 24s24-10.7 24-24V280H392c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V72z"/>
</svg>
</div>
<div class="overflow-y-auto max-h-full h-fit w-full">
<div>
<p class="lg:text-lg font-bold">“Linux and GNU transformed the CPU software stack through open source and standards, encompassing everything from embedded to cloud computing. As a founding member of the Unified Acceleration Foundation, I believe that open source and standards are essential for creating a cross platform software stack for GPU’s and other accelerators that will serve as the foundation for the next generation of computationally and data-intensive applications”</p>
<p class="mt-2 lg:text-lg"><i>Robert Cohn, Senior Principal Engineer</i></p>
</div>
</div>
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div data-memberi="8" class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<div class="bg-white w-[45px] h-[30px] border-2 border-[#888C9B] group-hover:border-vibrant-orange rounded-md absolute bottom-4 right-3">
<span class="text-[#888C9B] group-hover:text-vibrant-orange font-bold select-none text-3xl leading-[0] top-3 relative" style="font-family: Helvetica,sans-serif">“”</span>
<div class="bg-white border-r-2 border-b-2 border-[#888C9B] group-hover:border-vibrant-orange w-3 h-3 transform rotate-45 absolute -bottom-[7px] right-2"></div>
</div>
<img src="/images/wp-sync/Dr.-Vinesh-Sukumar.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Dr. Vinesh Sukumar
</p>
<p class="font-lg mb-2 mt-0">
Head of AI/ML Product Management
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/qualcomm-cropped.png" alt="Qualcomm" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="member-overlay member-overlay-8 hidden absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 z-20 h-full w-full justify-center items-center">
<div class="overlay-target bg-white h-full rounded-lg shadow-card xl:p-12 py-8 px-6 xl:max-h-[600px] max-h-[60vh] max-w-[600px] relative">
<div class="close-icon absolute top-3 right-3 size-4 rotate-45 cursor-pointer p2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="20"><!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
<path d="M232 72c0-13.3-10.7-24-24-24s-24 10.7-24 24V232H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H184V440c0 13.3 10.7 24 24 24s24-10.7 24-24V280H392c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V72z"/>
</svg>
</div>
<div class="overflow-y-auto max-h-full h-fit w-full">
<div>
<p class="lg:text-lg font-bold">“As a new independent entity, the Unified Acceleration Foundation will help build an open source programming model across a wide range of architectures and vendors,” said Vinesh Sukumar, Senior Director of Product Management, Qualcomm Technologies, Inc. “This helps to address a critical need in the industry for flexible and open source alternatives that will enable a broad range of unique needs.”</p>
<p class="mt-2 lg:text-lg"><i>Dr. Vinesh Sukumar, Head of AI/ML Product Management </i></p>
</div>
</div>
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<img src="/images/wp-sync/Hanwoong-Jung.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Hanwoong Jung
</p>
<p class="font-lg mb-2 mt-0">
Project Leader of Universal Deep Learning Compiler (UDLC)
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/samsung-cropped.png" alt="Samsung" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
<div class="committee-member-v2 flex-grow-0 flex-auto md:w-[200px] w-[calc(50%-1.25rem)] sm:max-w-none max-w-[80%] text-white text-center">
<div class="click-target group shadow-md border border-[#F4F4F4] rounded-[10px] aspect-square md:max-h-[200px] w-full overflow-hidden relative hover:cursor-pointer">
<img src="/images/wp-sync/Ramesh-Radhakrishnan.png" alt="" class="w-full h-full object-center object-cover">
</div>
<p class="font-bold text-[20px] mb-2 mt-3">
Ramesh Radhakrishnan
</p>
<p class="font-lg mb-2 mt-0">
Technical Director , OCTO HPC/ML
</p>
<div class="h-10 text-center">
<img src="/images/wp-sync/Broadcom_Logo_Black_no-tag.png" alt="" class="h-full w-auto object-contain object-center block mx-auto p-2">
</div>
</div>
</div>
</div>
</div>
<div class="-mt-[1px] w-[101vw] overflow-hidden">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 40.699">
<path id="wavesNegative" d="M257.208,32.966C352,25.805,451.464,11.711,547.392,5.933,646.1-.028,749.064.319,847.932,6.067c69.408,4.032,136.8,10.681,206.4,14.39,129.332,6.815,262.709,3.357,385.668-10v31.85H0V33.987C81.372,41.935,173.148,39.319,257.208,32.966Z" transform="translate(1440 42.306) rotate(180)" fill="#4308E5"></path>
</svg>
</div>
</section>
<script>
var modalOpen = false;
jQuery(document).ready(function () {
jQuery('.committeev2 .committee-member-v2 .click-target').click(function () {
var i = jQuery(this).attr('data-memberi');
if (!modalOpen && i !== undefined) {
jQuery('.committee-member-v2').css('opacity', '0.5');
modalOpen = true;
jQuery('.committeev2 .member-overlay.member-overlay-' + i).css("display", "flex").hide().fadeIn();
if (window.innerWidth < 768) {
jQuery([document.documentElement, document.body]).animate({
scrollTop: jQuery('.committeev2 .member-overlay.member-overlay-' + i + ' .overlay-target').offset().top - 200
}, 1000);
}
}
});
jQuery('.committeev2 .close-icon').click(function () {
if (modalOpen) {
jQuery('.committeev2 .member-overlay').fadeOut();
jQuery('.committee-member-v2').css('opacity', '1');
modalOpen = false;
}
});
});
</script>
<section class="max-w-full bg-white">
<div class="tw-container py-12">
<h2 class="lg:text-[44px] font-bold text-3xl text-left mb-5 text-neutral-800">oneAPI Specification Elements and Open Source Projects</h2>
<h3 class="text-2xl font-bold text-left mb-10 text-neutral-800">The Spec is made of 6 core elements.</h3>
<div class="sm:flex gap-x-8 gap-y-14 flex-wrap justify-center">
<div class="md:flex-shrink-0 xl:w-[calc(25%-1.5rem)] md:w-[calc(33.34%-1.34rem)] sm:w-[calc(50%-1rem)] sm:my-0 my-10">
<div class="w-fit mb-6">
<a class="w-full justify-center flex mb-3 p-0" href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onedpl/source/">
<img src="/images/wp-sync/spec-square-oneDPL.png" alt="" class="size-14 block">
</a>
<h4 class="lg:text-2xl text-xl font-bold text-left text-neutral-800">
<a href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onedpl/source/" class="underline text-vibrant-orange">
oneDPL
</a>
</h4>
</div>
<hr class="w-full bg-[#BEBABA]">
<div class="mt-6">
<p class="text-lg text-[#888C9B] mb-2">
<strong>oneAPI</strong> Data Parallel C++ Library
</p>
<p class="text-lg text-neutral-800">
A companion to the DPC++ Compiler for programming oneAPI devices with APIs from C++ standard library, Parallel STL, and extensions.
</p>
</div>
</div>
<div class="md:flex-shrink-0 xl:w-[calc(25%-1.5rem)] md:w-[calc(33.34%-1.34rem)] sm:w-[calc(50%-1rem)] sm:my-0 my-10">
<div class="w-fit mb-6">
<a class="w-full justify-center flex mb-3 p-0" href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onednn/source/">
<img src="/images/wp-sync/spec-square-oneDNN.png" alt="" class="size-14 block">
</a>
<h4 class="lg:text-2xl text-xl font-bold text-left text-neutral-800">
<a href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onednn/source/" class="underline text-vibrant-orange">
oneDNN
</a>
</h4>
</div>
<hr class="w-full bg-[#BEBABA]">
<div class="mt-6">
<p class="text-lg text-[#888C9B] mb-2">
<strong>oneAPI</strong> Deep Neural Network Library
</p>
<p class="text-lg text-neutral-800">
High performance implementations of primitives for deep learning frameworks.
</p>
</div>
</div>
<div class="md:flex-shrink-0 xl:w-[calc(25%-1.5rem)] md:w-[calc(33.34%-1.34rem)] sm:w-[calc(50%-1rem)] sm:my-0 my-10">
<div class="w-fit mb-6">
<a class="w-full justify-center flex mb-3 p-0" href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/oneccl/source/">
<img src="/images/wp-sync/spec-square-oneCCL.png" alt="" class="size-14 block">
</a>
<h4 class="lg:text-2xl text-xl font-bold text-left text-neutral-800">
<a href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/oneccl/source/" class="underline text-vibrant-orange">
oneCCL
</a>
</h4>
</div>
<hr class="w-full bg-[#BEBABA]">
<div class="mt-6">
<p class="text-lg text-[#888C9B] mb-2">
<strong>oneAPI</strong> Collective Communications Library
</p>
<p class="text-lg text-neutral-800">
Communication primitives for scaling deep learning frameworks across multiple devices.
</p>
</div>
</div>
<div class="md:flex-shrink-0 xl:w-[calc(25%-1.5rem)] md:w-[calc(33.34%-1.34rem)] sm:w-[calc(50%-1rem)] sm:my-0 my-10">
<div class="w-fit mb-6">
<a class="w-full justify-center flex mb-3 p-0" href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onedal/source/">
<img src="/images/wp-sync/spec-square-oneDAL.png" alt="" class="size-14 block">
</a>
<h4 class="lg:text-2xl text-xl font-bold text-left text-neutral-800">
<a href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onedal/source/" class="underline text-vibrant-orange">
oneDAL
</a>
</h4>
</div>
<hr class="w-full bg-[#BEBABA]">
<div class="mt-6">
<p class="text-lg text-[#888C9B] mb-2">
<strong>oneAPI</strong> Data Analytics Library
</p>
<p class="text-lg text-neutral-800">
Algorithms for accelerated data science.
</p>
</div>
</div>
<div class="md:flex-shrink-0 xl:w-[calc(25%-1.5rem)] md:w-[calc(33.34%-1.34rem)] sm:w-[calc(50%-1rem)] sm:my-0 my-10">
<div class="w-fit mb-6">
<a class="w-full justify-center flex mb-3 p-0" href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onetbb/source/nested-index">
<img src="/images/wp-sync/spec-square-oneTBB.png" alt="" class="size-14 block">
</a>
<h4 class="lg:text-2xl text-xl font-bold text-left text-neutral-800">
<a href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onetbb/source/nested-index" class="underline text-vibrant-orange">
oneTBB
</a>
</h4>
</div>
<hr class="w-full bg-[#BEBABA]">
<div class="mt-6">
<p class="text-lg text-[#888C9B] mb-2">
<strong>oneAPI</strong> Threading Building Blocks
</p>
<p class="text-lg text-neutral-800">
Library for adding thread-based parallelism to complex applications on multiprocessors.
</p>
</div>
</div>
<div class="md:flex-shrink-0 xl:w-[calc(25%-1.5rem)] md:w-[calc(33.34%-1.34rem)] sm:w-[calc(50%-1rem)] sm:my-0 my-10">
<div class="w-fit mb-6">
<a class="w-full justify-center flex mb-3 p-0" href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onemkl/source/">
<img src="/images/wp-sync/spec-square-oneMKL.png" alt="" class="size-14 block">
</a>
<h4 class="lg:text-2xl text-xl font-bold text-left text-neutral-800">
<a href="https://oneapi-spec.uxlfoundation.org/specifications/oneapi/latest/elements/onemkl/source/" class="underline text-vibrant-orange">
oneMKL
</a>
</h4>
</div>
<hr class="w-full bg-[#BEBABA]">
<div class="mt-6">
<p class="text-lg text-[#888C9B] mb-2">
<strong>oneAPI</strong> Math Kernel Library
</p>
<p class="text-lg text-neutral-800">
High performance math routines for science, engineering, and financial applications.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="uxl-slider mb-6">
<div class="waves">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 40.699">
<path id="wavesNegative" d="M257.208,32.966C352,25.805,451.464,11.711,547.392,5.933,646.1-.028,749.064.319,847.932,6.067c69.408,4.032,136.8,10.681,206.4,14.39,129.332,6.815,262.709,3.357,385.668-10v31.85H0V33.987C81.372,41.935,173.148,39.319,257.208,32.966Z" transform="translate(1440 42.306) rotate(180)" fill="#fff"/>
</svg>
</div>
<div class="tw-container p-0">
<h2 class="text-white text-center font-semibold mb-4 text-3xl">Hear more from the Steering Members</h2>
<div class="uxl-slick-slider">
<div class="slide">
<div class="slide-int uxl">
<div class="testimonial-content container">
<div class="quote-mark">
<svg xmlns="http://www.w3.org/2000/svg" width="0.5839in" height="0.4628in" class="mx-auto" viewBox="0 0 42.042 33.3193">
<g style="isolation: isolate">
<g style="isolation: isolate">