-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlandscape.yml
5770 lines (5562 loc) · 313 KB
/
landscape.yml
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
landscape:
- category:
name: Build Automation
subcategories:
- subcategory:
name: CI/Testing
items: []
- subcategory:
name: Simulators
items: []
- subcategory:
name: Compilers
items: []
- category:
name: RISC-V Members
subcategories:
- subcategory:
name: Premier
items:
- item:
name: Akeana (member)
homepage_url: https://akeana.io/
logo: akeana.svg
organization:
name: Akeana
- item:
name: Alibaba (China) Co., Ltd. / 阿里巴巴(中国)有限公司 (member)
description: 190371 Alibaba Group Holding Limited is a Chinese multinational technology company specializing in e-commerce, retail, Internet, and technology.
homepage_url: https://alibaba-inc.com/
logo: alibaba_china_co_ltd_a_li_ba_ba_zhong_guo_you_xian_gong_si.svg
twitter: https://twitter.com/AlibabaB2B
crunchbase: https://www.crunchbase.com/organization/alibaba
extra:
linkedin_url: https://www.linkedin.com/company/alibaba-com
- item:
name: Andes Technology Corporation (member)
description: >-
As a Founding Premier member of RISC-V International with a long heritage in providing leading, commercial CPU IP, Andes Technology (TWSE: 6533;
SIN: US03420C2089; ISIN: US03420C1099) is the driving force in taking RISC-V mainstream. Andes RISC-V Processor IP portfolio ranges from area-
and power-efficient 32-bit CPUs to high-performance, 64-bit Out-of-Order multiprocessor coherent clusters. With advanced DSP, vector, and Andes
Automated Custom Extensions (ACE) capabilities, along with robust software support, Andes empowers customers across AI, automotive,
communications, consumer, data center, and mobile markets to harness full potential of RISC-V. Over 15 billion Andes-based SoCs are powering
innovations globally. For more information, visit https://www.andestech.com. Follow Andes on LinkedIn, Twitter and YouTube
homepage_url: https://andestech.com/
logo: andes_technology_corporation.svg
twitter: https://twitter.com/Andes_Tech
crunchbase: https://www.crunchbase.com/organization/andes-technology
extra:
linkedin_url: https://www.linkedin.com/company/doble-engineering
- item:
name: Beijing ESWIN Computing Technology Co., Ltd. (member)
description: >-
Beijing Eswin Computing Technology, a Chinese startup that supplies semiconductor designs and solutions, has raised $283 million in a new
financing round at a time when the world’s most populous nation is looking to cut its reliance on the U.S. and U.K. for chipsets.
homepage_url: https://eswin.com/
logo: beijing_eswin_computing_technology_co_ltd.svg
twitter: https://twitter.com/EswinL
extra:
linkedin_url: https://www.linkedin.com/company/%E5%8C%97%E4%BA%AC%E5%A5%95%E6%96%AF%E4%BC%9F%E8%AE%A1%E7%AE%97%E6%8A%80%E6%9C%AF
organization:
name: Beijing ESWIN Computing Technology Co., Ltd.
linkedin: https://www.linkedin.com/company/%E5%8C%97%E4%BA%AC%E5%A5%95%E6%96%AF%E4%BC%9F%E8%AE%A1%E7%AE%97%E6%8A%80%E6%9C%AF
- item:
name: Beijing Institute of Open Source Chip (member)
homepage_url: https://bosc.ac.cn/
logo: beijing_institute_of_open_source_chip.svg
organization:
name: Beijing Institute of Open Source Chip
- item:
name: Chengwei Capital HK Limited (member)
description: >-
Chengwei Ventures invests in companies that have scalable business opportunities in the global Chinese economy. Its portfolio investments includes
over 20 companies operating in a wide range of industries such as manufacturing, consumer goods, education, the internet, and oil and gas.
homepage_url: https://chengwei.com/
logo: chengwei_capital_hk_limited.svg
crunchbase: https://www.crunchbase.com/organization/chengwei-capital
extra:
linkedin_url: https://www.linkedin.com/company/chengwei-capital
- item:
name: Google LLC (member)
description: >-
Founded in 1998, Google, Inc. is a multinational corporation that provides Internet-related services and products, including an internet search
engine, software, cloud computing, and advertising technologies.
homepage_url: https://google.com/
logo: google_llc.svg
twitter: https://twitter.com/Google
crunchbase: https://www.crunchbase.com/organization/google
extra:
linkedin_url: https://www.linkedin.com/company/google
- item:
name: Huawei Technologies Co., Ltd (member)
description: >-
Huawei is a global provider of information and communications technology (ICT) infrastructure and smart devices. Huawei is headquartered in
Shenzhen, China.
homepage_url: https://huawei.com/
logo: huawei_technologies_co.svg
crunchbase: https://www.crunchbase.com/organization/huawei
extra:
linkedin_url: https://www.linkedin.com/company/huawei
- item:
name: Institute of Software Chinese Academy of Sciences (member)
description: >-
The Institute of Software, Chinese Academy of Sciences (ISCAS) is a research base that focuses on the research and development on theories of
computer science and leading edge technologies of software.
homepage_url: https://iscas.ac.cn/
logo: institute_of_software_chinese_academy_of_sciences.svg
crunchbase: https://www.crunchbase.com/organization/institute-of-software-chinese-academy-of-sciences
- item:
name: Instituto Federal de Educação (member)
description: >-
IFCE provides a variety of education programs in professional, scientific, and technological fields through its 9 operational campuses and ongoing
expansion.
homepage_url: https://ifce.edu.br/
logo: instituto_federal_de_educacao.svg
extra:
linkedin_url: https://www.linkedin.com/company/instituto-federal-de-educa-o-ci-ncia-e-tecnologia-do-cear-
organization:
name: Instituto Federal de Educação
linkedin: https://www.linkedin.com/company/instituto-federal-de-educa-o-ci-ncia-e-tecnologia-do-cear-
- item:
name: NVIDIA Corporation (member)
description: Founded in 1993, NVIDIA is an AI computing company. The company is headquartered in Santa Clara, California.
homepage_url: https://nvidia.com/
logo: nvidia_corporation.svg
crunchbase: https://www.crunchbase.com/organization/nvidia
extra:
linkedin_url: https://www.linkedin.com/company/nvidia
- item:
name: OpenChip (member)
description: High performing accelerators for business competitiveness. Innovation and autonomous developmentfor European digital sovereignty.
homepage_url: https://openchip.com/
logo: openchip.svg
organization:
name: OpenChip
- item:
name: Phytium Technology Co., Ltd. (member)
description: >-
Phytium is a Chinese company known for its Feiteng series of self-developed core chips, offering high-performance CPUs and a variety of solutions
for desktops, laptops, and cloud terminals with a focus on innovation, reliability, and security.
homepage_url: https://phytium.com.cn/
logo: phytium_technology_co_ltd.svg
extra:
linkedin_url: >-
https://www.linkedin.com/company/%E9%A3%9E%E8%85%BE%E7%94%9F%E6%80%81%E4%BC%99%E4%BC%B4%E5%A4%A7%E4%BC%9A-2020-phytium-eco-partners-summit-in-corechina-report
organization:
name: Phytium Technology Co., Ltd.
linkedin: >-
https://www.linkedin.com/company/%E9%A3%9E%E8%85%BE%E7%94%9F%E6%80%81%E4%BC%99%E4%BC%B4%E5%A4%A7%E4%BC%9A-2020-phytium-eco-partners-summit-in-corechina-report
- item:
name: Qualcomm, Inc. (member)
description: >-
Founded in 1985, QUALCOMM is a global semiconductor company, known for designing, manufacturing, and marketing digital wireless communications
equipment and services. The company generates the majority of its sales through the development and marketing of semiconductor chips and system
software based on code-division multiple access (CDMA) and other technologies. They are headquartered in San Diego, California.
--- Merged Data:
Qualcomm is a semiconductor company that manufactures and markets digital wireless telecommunications products and services. They are engaged in
the development and commercialization of a digital communication technology called code division multiple a...
homepage_url: https://qualcomm.com/
logo: qualcomm_inc.svg
crunchbase: https://www.crunchbase.com/organization/qualcomm
extra:
linkedin_url: https://www.linkedin.com/company/firethorn
- item:
name: Rivos Inc (member)
description: Rivos, based in Santa Clara and Austin, is an exciting RISC V startup that is targeting to be the first high performance RISC V core.
homepage_url: https://rivosinc.com/
logo: rivos_inc.svg
extra:
linkedin_url: https://www.linkedin.com/company/rivos-inc
organization:
name: Rivos Inc
linkedin: https://www.linkedin.com/company/rivos-inc
- item:
name: Sanechips Technology Co Ltd (member)
description: >-
As a leading communication IC design company in China, Sanechips focuses on the development of communication chipsets for communication networks,
smart homes and industrial applications.
homepage_url: https://sanechips.com.cn/
logo: sanechips_technology_co_ltd.svg
extra:
linkedin_url: https://www.linkedin.com/company/sanechips
organization:
name: Sanechips Technology Co Ltd
linkedin: https://www.linkedin.com/company/sanechips
- item:
name: SiFive (member)
description: Founded in 2015, SiFive is based in San Mateo, California and specializes in agile hardware design and open source chip platforms.
homepage_url: https://sifive.com/
logo: sifive.svg
crunchbase: https://www.crunchbase.com/organization/sifive
extra:
linkedin_url: https://www.linkedin.com/company/sifive
- item:
name: Stream Computing Inc. (member)
description: >-
Founded in 2019, Stream Computing is a heterogeneous computing silicon startup. Stream Computing has developed a high performance, low power and
compact Neural Processing Core (NPC) based on the RISC-V ISA. With Stream Computing’s customized hardware, open software and advanced AI
algorithms, customers can quickly and easily deploy AI applications with machine vision, voice recognition and other cutting-edge technologies.
homepage_url: https://streamcomputing.com/
logo: stream_computing_inc.svg
organization:
name: Stream Computing Inc.
- item:
name: Synopsys, Inc (member)
description: >-
Synopsys, Inc. is the Silicon to Software partner for innovative companies developing the electronic products and software applications they rely
on every day. As the world's 15th largest software company, Synopsys has a long history of being a global leader in electronic design automation
(EDA) and semiconductor IP and is also growing its leadership in software security and quality solutions. Whether you're a system-on-chip (SoC)
designer creating advanced semiconductors or a software developer writing applications that require the highest security and quality, Synopsys has
the solutions needed to deliver innovative, high-quality, secure products.
homepage_url: https://synopsys.com/
logo: synopsys_inc.svg
twitter: https://twitter.com/Synopsys
crunchbase: https://www.crunchbase.com/organization/synopsys
extra:
linkedin_url: https://www.linkedin.com/company/synopsys
- item:
name: Tencent Technology (Shenzhen) Co., Ltd. (member)
description: Tencent Holdings Ltd. is a Chinese multinational technology and entertainment conglomerate and holding company headquartered in Shenzhen.
homepage_url: https://tencent.com/
logo: tencent_technology_shenzhen_co_ltd.svg
twitter: https://twitter.com/TencentGlobal
crunchbase: https://www.crunchbase.com/organization/tencent
extra:
linkedin_url: https://www.linkedin.com/company/tencentglobal
- subcategory:
name: Premier TSC
items: []
- subcategory:
name: Strategic
items:
- item:
name: 10xEngineers (member)
description: 10xEngineers.
homepage_url: https://10xengineers.ai/
logo: 10xengineers.svg
extra:
linkedin_url: https://www.linkedin.com/company/10xengineers
organization:
name: 10xEngineers
linkedin: https://www.linkedin.com/company/10xengineers
- item:
name: ACL Digital (member)
description: ACL Digital
homepage_url: https://acldigital.com/
logo: acl_digital.svg
crunchbase: https://www.crunchbase.com/organization/alten-calsoft-labs
extra:
linkedin_url: https://www.linkedin.com/company/acl-digital
- item:
name: Advanced Micro Devices (AMD) (member)
description: >-
For more than 45 years AMD has driven innovation in high-performance computing, graphics, and visualization technologies; the building blocks for
gaming, immersive platforms, and the data center. Hundreds of millions of consumers, leading Fortune 500 businesses, and cutting-edge scientific
research facilities around the world rely on AMD technology daily to improve how they live, work, and play. AMD employees around the world are
focused on building great products that push the boundaries of what is possible.
homepage_url: https://amd.com/
logo: advanced_micro_devices_amd.svg
twitter: https://twitter.com/AMD
crunchbase: https://www.crunchbase.com/organization/amd
extra:
linkedin_url: https://www.linkedin.com/company/amd
- item:
name: Ahead Computing (member)
description: >-
AheadComputing is a company founded by engineers with over 80 years of experience in delivering popular microprocessors. They specialize in
designing, verifying, and licensing compelling RISC V core IP for technology enthusiasts and businesses.
homepage_url: https://aheadcomputing.com/
logo: ahead_computing.svg
extra:
linkedin_url: https://www.linkedin.com/company/aheadcomputing
organization:
name: Ahead Computing
linkedin: https://www.linkedin.com/company/aheadcomputing
- item:
name: Analog Devices, Inc. (member)
description: >-
Analog Devices (NASDAQ: ADI) designs and manufactures semiconductor products and solutions. ADI's analog, mixed-signal, and digital signal
processing (DSP) integrated circuits (IC) play a fundamental role in converting, conditioning, and processing real-world phenomena such as light,
sound, temperature, motion, and pressure into electrical signals to be used in a wide array of electronic equipment.
homepage_url: https://analog.com/
logo: analog_devices_inc.svg
twitter: https://twitter.com/ADI_News
crunchbase: https://www.crunchbase.com/organization/analog-devices
extra:
linkedin_url: https://www.linkedin.com/company/analog-devices
- item:
name: anlogic (member)
description: >-
Anlogic is a company that specializes in FPGA chip design and offers flexible and reliable solutions for industrial automation, emerging display
panels, and consumer electronics products.
homepage_url: https://anlogic.com/
logo: anlogic.svg
organization:
name: anlogic
- item:
name: Antmicro (member)
description: >-
Antmicro is a software-driven tech company developing modern edge AI systems for various branches of industry. Antmicro provides applied R&D for
customers worldwide, offering assistance in prototyping, new product development and adoption of modern embedded technologies, both hardware and
software. Antmicro's projects involve a broad range of open source technologies such as RISC-V, Renode, Zephyr, TensorFlow, ROS, Linux and
Android. Antmicro is a Platinum Founding Member of the RISC-V Foundation, as well as a member of the Linux Foundation, Zephyr Project and CHIPS
Alliance.
homepage_url: https://antmicro.com/
logo: antmicro.svg
crunchbase: https://www.crunchbase.com/organization/antmicro
extra:
linkedin_url: https://www.linkedin.com/company/antmicro-ltd
- item:
name: Aril Inc. (member)
description: Aril specializes in providing embedded processor solutions.
homepage_url: https://arilinc.com/
logo: aril_inc.svg
extra:
linkedin_url: https://www.linkedin.com/company/arilinc
organization:
name: Aril Inc.
linkedin: https://www.linkedin.com/company/arilinc
- item:
name: Arteris IP (member)
description: >-
Arteris, Inc. is a multinational technology firm that develops the on-chip interconnect fabric technology used in System-on-Chip semiconductor
designs for a variety of devices, particularly in mobile and consumer markets.
homepage_url: https://arteris.com/
logo: arteris_ip.svg
crunchbase: https://www.crunchbase.com/organization/arteris
extra:
linkedin_url: https://www.linkedin.com/company/arteris
- item:
name: ASHLING (member)
description: >-
Ashling is a leading provider of embedded development tools and engineering services since 1982, with leading OEMs and semiconductor companies to
successfully develop custom engineering solutions.
homepage_url: https://ashling.com/
logo: ashling.svg
twitter: https://twitter.com/AshlingSystems
extra:
linkedin_url: https://www.linkedin.com/company/ashlingsystems
organization:
name: ASHLING
linkedin: https://www.linkedin.com/company/ashlingsystems
- item:
name: ASTC (Australia Semiconductor Technology Company) (member)
description: >-
ASTC (Australian Semiconductor Technology Company) delivers semiconductor and systems design, embedded software development and other services
across global markets and supply chains for automotive, mobile, multimedia, transportation, and aerospace electronics and embedded software.
homepage_url: https://astc-design.com/
logo: astc_australia_semiconductor_technology_company.svg
extra:
linkedin_url: https://www.linkedin.com/company/astc
organization:
name: ASTC (Australia Semiconductor Technology Company)
linkedin: https://www.linkedin.com/company/astc
- item:
name: Avnet Inc (member)
description: >-
Avnet ASIC Israel (AAI) provides complete ASIC and COT design services for fabless companies and OEMs, specializing in advanced SoC devices with
expertise in digital and analog mixed signal technologies.
homepage_url: https://avnet-asic.com/
logo: avnet_inc.svg
extra:
linkedin_url: https://www.linkedin.com/company/avnet-asic-israel
organization:
name: Avnet Inc
linkedin: https://www.linkedin.com/company/avnet-asic-israel
- item:
name: Axelera AI (member)
description: Creating the next generation of AI hardware & software.
homepage_url: https://axelera.ai/
logo: axelera_ai.svg
twitter: https://twitter.com/AxeleraAI
extra:
linkedin_url: https://www.linkedin.com/company/axelera-ai
organization:
name: Axelera AI
linkedin: https://www.linkedin.com/company/axelera-ai
- item:
name: Axiomise (member)
description: >-
Axiomise offers cutting edge formal verification training, consulting, and services dedicated to enabling formal for all design verification.
Learn how to apply formal in a predictable way to achieve high-quality sign-off. Talk to us to learn how to em..
homepage_url: https://axiomise.com/
logo: axiomise.svg
twitter: https://twitter.com/axiomise
extra:
linkedin_url: https://www.linkedin.com/company/axiomise
organization:
name: Axiomise
linkedin: https://www.linkedin.com/company/axiomise
- item:
name: BayLibre Inc. (member)
description: BayLibre is the experienced High Tech company that brings your Android and Embedded Linux to the market.
homepage_url: https://baylibre.com/
logo: baylibre_inc.svg
twitter: https://twitter.com/BayLibre
crunchbase: https://www.crunchbase.com/organization/baylibre
extra:
linkedin_url: https://www.linkedin.com/company/baylibre
- item:
name: Beijing ESWIN Computing Technology Co., Ltd. (member)
description: >-
Beijing Eswin Computing Technology, a Chinese startup that supplies semiconductor designs and solutions, has raised $283 million in a new
financing round at a time when the world’s most populous nation is looking to cut its reliance on the U.S. and U.K. for chipsets.
homepage_url: https://eswin.com/
logo: beijing_eswin_computing_technology_co_ltd.svg
twitter: https://twitter.com/EswinL
extra:
linkedin_url: https://www.linkedin.com/company/%E5%8C%97%E4%BA%AC%E5%A5%95%E6%96%AF%E4%BC%9F%E8%AE%A1%E7%AE%97%E6%8A%80%E6%9C%AF
organization:
name: Beijing ESWIN Computing Technology Co., Ltd.
linkedin: https://www.linkedin.com/company/%E5%8C%97%E4%BA%AC%E5%A5%95%E6%96%AF%E4%BC%9F%E8%AE%A1%E7%AE%97%E6%8A%80%E6%9C%AF
- item:
name: Beijing Haawking Technology Co., Ltd. (member)
description: HAAWKING is a company engaged in R&D of industrial control microprocessor and special chip for machine vision & graphic image processing.
homepage_url: https://haawking.com/
logo: beijing_haawking_technology_co_ltd.svg
organization:
name: Beijing Haawking Technology Co., Ltd.
- item:
name: BEIJING SMARTCHIP MICROELECTRONICS TECHNOLOGY COMPANY LIMITED (member)
description: SGCC was founded on Dec. 29th, 2002 as a pilot state-owned corporation by the State Council. As a backbone state-owned enterprise that may
homepage_url: https://sgitg.sgcc.com.cn/
logo: beijing_smartchip_microelectronics_technology_company_limited.svg
crunchbase: https://www.crunchbase.com/organization/state-grid-corporation-of-china
- item:
name: Beijing Vcore Technology Co.,Ltd. (member)
description: >-
The Chinese Name of our company is “北京微核芯科技有限公司”. We cooperate with Institute of Computing Technology Chinese Academy of Sciences. We co-developed
“XiangShan“ high performance processor.
homepage_url: https://rvcore.com/
logo: beijing_vcore_technology_co_ltd.svg
organization:
name: Beijing Vcore Technology Co.,Ltd.
- item:
name: Bluespec (member)
description: >-
Bluespec provides RISC-V processor IP and tools for developing RISC-V cores and subsystems. We take the risk out of RISC-V to enable you to
achieve the highest levels of quality, performance and innovation.
homepage_url: https://bluespec.com/
logo: bluespec.svg
crunchbase: https://www.crunchbase.com/organization/bluespec
extra:
linkedin_url: https://www.linkedin.com/company/bluespec-inc
- item:
name: Breker Verification Systems Inc. (member)
description: Breker Verification Systems solves challenges across the functional verification process for large, complex semiconductors.
homepage_url: https://brekersystems.com/
logo: breker_verification_systems_inc.svg
crunchbase: https://www.crunchbase.com/organization/breker-verification-systems
extra:
linkedin_url: https://www.linkedin.com/company/breker-verification-systems
- item:
name: Cadence Design Systems, Inc. (member)
description: >-
Cadence is a leading provider of EDA and semiconductor IP. Our custom/analog tools help engineers design the transistors, standard cells, and IP
blocks that make up SoCs. Our digital tools automate the design and verification of giga-scale, giga-hertz SoCs at the latest semiconductor
processing nodes. Our IC packaging and PCB tools permit the design of complete boards and subsystems.
Cadence also offers a growing portfolio of design IP and verification IP for memories, interface protocols, analog/mixed-signal components, and
specialized processors. And reaching up to the systems level, Cadence offers an integrated suite of hardware/software co-development platforms. In
short, Cadence��_��_ technology helps customers build great products that connect the world.
Specialties
Electronic design automation (EDA) software, hardware, IP, and services
Website
http://www.cadence.com
Industry
Computer Software
Type
Public Company
Headquarters
2655 Seely Avenue San Jose, California 95134 United States
Company Size
5001-10,000 employees
Founded
1988
homepage_url: https://cadence.com/
logo: cadence_design_systems_inc.svg
crunchbase: https://www.crunchbase.com/organization/cadence-design-systems
extra:
linkedin_url: https://www.linkedin.com/company/cadence-design-systems
- item:
name: Canonical Group Limited (member)
description: >-
Canonical Ltd. is a UK-based privately held computer software company founded and funded by South African entrepreneur Mark Shuttleworth to market
commercial support and related services for Ubuntu and related projects.
homepage_url: https://canonical.com/
logo: canonical_group_limited.svg
crunchbase: https://www.crunchbase.com/organization/canonical-ltd
extra:
linkedin_url: https://www.linkedin.com/company/canonical-ltd-
- item:
name: CAST, Inc. (member)
description: CAST is a 20+ year successful provider of reusable semiconductor intellectual property (IP) cores and subsystems for electronic system designers.
homepage_url: https://cast-inc.com/
logo: cast_inc.svg
crunchbase: https://www.crunchbase.com/organization/cast
extra:
linkedin_url: https://www.linkedin.com/company/castcores
- item:
name: Centre for Development of Advanced Computing (member)
description: >-
Centre for Development of Advanced Computing (C-DAC) is the premier R&D organization of the Ministry of Electronics and Information Technology
(MeitY) for carrying out R&D in IT, Electronics and associated areas.
homepage_url: https://cdac.in/
logo: centre_for_development_of_advanced_computing.svg
crunchbase: https://www.crunchbase.com/organization/centre-for-development-of-advanced-computing
extra:
linkedin_url: https://www.linkedin.com/company/cdac
- item:
name: CEVA, Inc. (member)
description: >-
CEVA is a publicly listed semiconductor intellectual property company, headquartered in Mountain View, California and specializes in digital
signal processor technology.
homepage_url: https://ceva-dsp.com/
logo: ceva_inc.svg
twitter: https://twitter.com/CEVADSP
crunchbase: https://www.crunchbase.com/organization/ceva
extra:
linkedin_url: https://www.linkedin.com/company/ceva
- item:
name: Chengdu Qunxin Microelectronics Technology Co., Ltd. (member)
homepage_url: https://masscore.cn/
logo: chengdu_qunxin_microelectronics_technology_co_ltd.svg
organization:
name: Chengdu Qunxin Microelectronics Technology Co., Ltd.
- item:
name: ChipFlow (member)
description: >-
ChipFlow is a company that provides a unique Python flow for microchip design, enabling electronic OEMs with no existing semiconductor design
teams to design their own ICs.
homepage_url: https://chipflow.io/
logo: chipflow.svg
extra:
linkedin_url: https://www.linkedin.com/company/chipflow
organization:
name: ChipFlow
linkedin: https://www.linkedin.com/company/chipflow
- item:
name: CloudBEAR (member)
description: CloudBEAR is fabless processor IP company to build customized silicon using RISC-V instruction set architecture
homepage_url: https://cloudbear.ru/
logo: cloudbear.svg
twitter: https://twitter.com/CloudBEARInc
extra:
linkedin_url: https://www.linkedin.com/company/cloudbearinc
organization:
name: CloudBEAR
linkedin: https://www.linkedin.com/company/cloudbearinc
- item:
name: Codasip s.r.o. (member)
description: Codasip Ltd.
homepage_url: https://codasip.com/
logo: codasip_s_r_o.svg
crunchbase: https://www.crunchbase.com/organization/codasip
extra:
linkedin_url: https://www.linkedin.com/company/codasip
- item:
name: Codethink (member)
description: >-
Systems Software Engineering Experts. #opensource. Independent, Ethical, Effective. Leading globally in #Enterprise, #Devices and
#Automotive.
homepage_url: https://codethink.co.uk/
logo: codethink.svg
crunchbase: https://www.crunchbase.com/organization/codethink
extra:
linkedin_url: https://www.linkedin.com/company/codethink-limited
- item:
name: Cortus S.A.S. (member)
description: >-
Cortus is a leading semiconductor, embedded systems and IoT solutions company headquartered in Mauguio (near Montpellier, France) with offices in
Meyreuil (France) and Moscow (Russia) as well as subsidiaries in Greece, Italy, Brazil and Taiwan. Cortus provides a full range of IC design
services based around their broad IP portfolio which includes processors, digital, analog, mixed-signal and RF IP; prototyping and verification
solutions in many areas such as automotive, image processing, industrial controllers, satellites, M2M controllers, secure microcontrollers, smart
metering, wireless communication, touch screen controllers, IoT devices, SIM cards, bank cards, e-passports, etc. Cortus is a core contributing
member and board member of the DASH7 Alliance. Cortus is one of the dozen platinum founding members of the RISC-V Foundation and a strategic
member of RISC-V International.
homepage_url: https://cortus.com/
logo: cortus_s_a_s.svg
twitter: https://twitter.com/Cortus_IP
crunchbase: https://www.crunchbase.com/organization/cortus-sa
extra:
linkedin_url: https://www.linkedin.com/company/cortus-sa
- item:
name: Crypto Quantique (member)
description: Crypto Quantique’s easy-to-use, unbeatable, end-to-end IoT security solutions unlock scalability for IoT device systems.
homepage_url: https://cryptoquantique.com/
logo: crypto_quantique.svg
twitter: https://twitter.com/CryptoQuantique
crunchbase: https://www.crunchbase.com/organization/crypto-quantique
extra:
linkedin_url: https://www.linkedin.com/company/crypto-quantique
- item:
name: Cycuity, Inc. (member)
description: >-
Headquartered in San Diego, CA and founded in 2013, Tortuga Logic specializes in hardware security with technology that identifies security
vulnerabilities in semiconductor designs.
homepage_url: https://cycuity.com/
logo: cycuity_inc.svg
twitter: https://twitter.com/cycuity
crunchbase: https://www.crunchbase.com/organization/tortuga-logic-inc
extra:
linkedin_url: https://www.linkedin.com/company/cycuity
- item:
name: DEEPCOMPUTING (HK) Limited (member)
description: >-
DeepComputing is a company that aims to create innovative products powered by RISC V chipsets. They work with trusted partners to provide the best
development experience to their customers through state-of-the-art hardware, software, and related services.
homepage_url: https://deepcomputing.io/
logo: deepcomputing_hk_limited.svg
extra:
linkedin_url: https://www.linkedin.com/company/deepcomputing
organization:
name: DEEPCOMPUTING (HK) Limited
linkedin: https://www.linkedin.com/company/deepcomputing
- item:
name: DENSO CORPORATION (member)
description: >-
Founded in 1949, DENSO is a global manufacturer and supplier of advanced automotive technology, systems and components for all the world's major
automakers. The company is headquartered in Kariya, Aichi, Japan.
homepage_url: https://denso.com/
logo: denso_corporation.svg
crunchbase: https://www.crunchbase.com/organization/denso
extra:
linkedin_url: https://www.linkedin.com/company/denso
- item:
name: DFRobot (member)
description: DFRobot is an open-source hardware and robotics shop dedicated to bringing innovative electronic objects to you.
homepage_url: https://dfrobot.com/
logo: dfrobot.svg
crunchbase: https://www.crunchbase.com/organization/dfrobot
extra:
linkedin_url: https://www.linkedin.com/company/dfrobot
- item:
name: Digital Core Design Sp. z o. (member)
description: Digital Core Design is a leading Intellectual Property (IP) Core provider and System-on-Chip (SoC) design house, founded in 1999.
homepage_url: https://dcd.pl/
logo: digital_core_design_sp_z_o.svg
twitter: https://twitter.com/DCD_IPCORE
extra:
linkedin_url: https://www.linkedin.com/company/dcd1999
organization:
name: Digital Core Design Sp. z o.
linkedin: https://www.linkedin.com/company/dcd1999
- item:
name: Douyin Vision Co., Ltd. (member)
description: >-
Founded in 2012, ByteDance's mission is to inspire creativity and enrich life. With a suite of more than a dozen products, including TikTok and
Resso, as well as platforms specific to the China market, including Toutiao, Douyin, and Xigua, ByteDance has made it easier and more fun for
people to connect with, consume, and create content.
homepage_url: https://bytedance.com/
logo: douyin_vision_co_ltd.svg
twitter: https://twitter.com/BytedanceTalk
crunchbase: https://www.crunchbase.com/organization/bytedance
extra:
linkedin_url: https://www.linkedin.com/company/bytedance
- item:
name: E4 Computer Engineering SPA (member)
description: >-
E4 Computer Engineering SpA was founded in 2002. Over the years, the company has specialised in the production of professional IT systems and
planning their integration into existing frameworks, in order to provide solutions for High Performance Comput...
homepage_url: https://e4company.com/
logo: e4_computer_engineering_spa.svg
twitter: https://twitter.com/e4company
extra:
linkedin_url: https://www.linkedin.com/company/e4-computer-engineering-spa
organization:
name: E4 Computer Engineering SPA
linkedin: https://www.linkedin.com/company/e4-computer-engineering-spa
- item:
name: Efinix Inc (member)
description: >-
Our mission is to drive the future of edge computing w/our Trion® FPGA silicon platform. At the heart of Trion Titanium FPGAs is our disruptive
Quantum™ fabric.
homepage_url: https://efinixinc.com/
logo: efinix_inc.svg
twitter: https://twitter.com/efinixinc
crunchbase: https://www.crunchbase.com/organization/efinix
extra:
linkedin_url: https://www.linkedin.com/company/efinix-inc-
- item:
name: Embecosm Ltd. (member)
description: "Services developing embedded software tools and processor models: GCC, LLVM, QEMU, Verilator, AI tooling experts."
homepage_url: https://embecosm.com/
logo: embecosm_ltd.svg
twitter: https://twitter.com/Embecosm
extra:
linkedin_url: https://www.linkedin.com/company/embecosm
organization:
name: Embecosm Ltd.
linkedin: https://www.linkedin.com/company/embecosm
- item:
name: Emproof (member)
description: >-
Emproof is a company that provides agile, robust, and cost-effective security and IP integrity for all embedded systems. Their solution, Emproof
Nyx, prevents reverse engineering, securing valuable intellectual property and protecting against exploitat...
homepage_url: https://emproof.com/
logo: emproof.svg
extra:
linkedin_url: https://www.linkedin.com/company/emproof
organization:
name: Emproof
linkedin: https://www.linkedin.com/company/emproof
- item:
name: Esperanto Technologies Inc. (member)
description: >-
Overview
Esperanto Technologies develops high-performance, energy-efficient computing solutions based on the open standard RISC-V ISA. Esperanto is
headquartered in Mountain View, California with engineering sites in the United States, European Union, and Eastern Europe. Esperanto has brought
together a seasoned team of experienced processor and software engineers with the goal of making RISC-V the architecture of choice for
compute-intensive applications such as Machine Learning.
Website https://www.esperanto.ai Industry Computer Hardware Company size 51-200 employees Headquarters Mountain View, California Type Privately
Held Founded 2014 Specialties Machine Learning, Artificial Reality, Energy-efficient Processors, High-performance Processors, RISC-V SoCs,
Semiconductor IP, ET-Minion, ET-Maxion, and Artificial intelligence
homepage_url: https://esperanto.ai/
logo: esperanto_technologies_inc.svg
crunchbase: https://www.crunchbase.com/organization/esperanto-technologies
extra:
linkedin_url: https://www.linkedin.com/company/esperanto-ai
- item:
name: Espressif Systems (Shanghai) Co., Ltd (member)
description: >-
Espressif Systems is a public multinational, fabless semiconductor company established in 2008, with offices in China, the Czech Republic, India,
Singapore and Brazil.
--- Merged Data:
ESPRESSIF SYSTEMS (SHANGHAI) CO., LTD. is a fabless semiconductor company, with headquarter in Shanghai Zhangjiang High-Tech Park, providing low
power Wi-Fi and Bluetooth SoCs and wireless solutions for Internet of Things applications.
homepage_url: https://espressif.com/
logo: espressif_systems_shanghai_co.svg
crunchbase: https://www.crunchbase.com/organization/espressif
extra:
linkedin_url: https://www.linkedin.com/company/espressif-systems
- item:
name: ETAS GmbH (member)
description: >-
ETAS specializes in providing comprehensive solutions for the development and implementation of software-defined vehicles, offering a range of
products and services including vehicle basic software, middleware, development tools, cybersecurity solution...
homepage_url: https://etas.com/
logo: etas_gmbh.svg
organization:
name: ETAS GmbH
- item:
name: fdmtek (member)
homepage_url: https://fdmtek.com/
logo: fdmtek.svg
organization:
name: fdmtek
- item:
name: Flow Computing (member)
description: >-
Flow Computing offers revolutionary Processor IP with 100x better CPU processing performance and full backwards compatibility through their unique
Parallel Processing Unit, ensuring significant performance boosts and improved software development produ...
homepage_url: https://flow-computing.com/
logo: flow_computing.svg
extra:
linkedin_url: https://www.linkedin.com/company/flowcomputing
organization:
name: Flow Computing
linkedin: https://www.linkedin.com/company/flowcomputing
- item:
name: Fraunhofer Gesellschaft IIS (member)
description: "Attn: Norbert Schuhmann\nMunich, Germany c/o Fraunhofer IIS\n\n--- Merged Data:\n\nThe Fraunhofer Society is a German research organization with 72\_institutes spread throughout Germany, each focusing on different fields of applied science."
homepage_url: https://iis.fraunhofer.de/
logo: fraunhofer_gesellschaft_iis.svg
crunchbase: https://www.crunchbase.com/organization/fraunhofer-gesellschaft
extra:
linkedin_url: https://www.linkedin.com/company/fraunhofer-gesellschaft
- item:
name: Frontgrade Gaisler (member)
description: >-
Frontgrade Gaisler, a subsidiary of Frontgrade Technologies, is based in central Gothenburg, Sweden, and has grown to include over 55 employees
specialized in processor development since the start in 2001. The company is a world leader in processors for space applications and the main
products are the SPARC / LEON and RISC-V / NOEL lines of processor IP cores and the GRLIB IP core library used for System-on-Chip (SoC) solutions.
In addition, support services, development tools and software targeting embedded processors are developed and provided. Our customers are found
across the globe, mainly within the space industry but also in consumer electronics. We offer a creative environment where our colleagues can
influence their work and have the possibility to work within several projects ranging from computer architecture, IP core development, SoC design
to ASIC synthesis and test. Since all hardware development takes place in-house in Gothenburg, a unique expertise within SoC and microprocessor
design is at hand. We seeks to extends our range of processors with our new line of RISC-V based products named NOEL.
homepage_url: https://gaisler.com/
logo: frontgrade_gaisler.svg
twitter: https://twitter.com/cobhamgaisler
extra:
linkedin_url: https://www.linkedin.com/company/gaisler-research
organization:
name: Frontgrade Gaisler
linkedin: https://www.linkedin.com/company/gaisler-research
- item:
name: Futurewei Technologies, Inc. (member)
description: >-
FutureWei, based in Plano, Texas, is the North American subsidiary of Huawei Technologies Co. Ltd., a leading global vendor of telecommunications
systems and network solutions based in Shenzhen, China. Huawei posted US$5.58 billion in sales in 2004 and has products deployed in over 90
countries. With a strong focus on network infrastructure, FutureWei Technologies, Inc. designs, markets and supports a wide range of advanced
telecommunication products for service providers and enterprise network solutions.
homepage_url: https://futurewei.com/
logo: futurewei_technologies_inc.svg
crunchbase: https://www.crunchbase.com/organization/futurewei-technologies
extra:
linkedin_url: https://www.linkedin.com/company/futureweitechnologiesinc
- item:
name: GigaDevice Semiconductor (HK) Ltd (member)
description: Flash Memory & MCU solutions
homepage_url: https://gigadevice.com/
logo: gigadevice_semiconductor_hk_ltd.svg
extra:
linkedin_url: https://www.linkedin.com/company/gigadevice-inc
organization:
name: GigaDevice Semiconductor (HK) Ltd
linkedin: https://www.linkedin.com/company/gigadevice-inc
- item:
name: Gowin Semiconductor Corp (member)
description: Gowin Semiconductor Corp is a programmable solution provider!
homepage_url: https://gowinsemi.com/
logo: gowin_semiconductor_corp.svg
twitter: https://twitter.com/GOWIN_SEMI
extra:
linkedin_url: https://www.linkedin.com/company/gowin-semiconductor-corp
organization:
name: Gowin Semiconductor Corp
linkedin: https://www.linkedin.com/company/gowin-semiconductor-corp
- item:
name: Green Hills Software LLC (member)
description: "Company Headquarters \n\nGreen Hills Software \n\n30 West Sola Street \n\nSanta Barbara, CA 93101 \n\nTel: 805.965.6044 \n\n\n\nEuropean Headquarters\t\n\nGreen Hills Software Ltd\n\nFleming Business Centre\n\nLeigh Road\n\nEastleigh\n\nHampshire SO50 9PD\n\nUNITED KINGDOM\n\nTel: +44 (0)2380 649660\n\nFax: +44 (0)2380 649661\n\nEmail: [email protected]"
homepage_url: https://ghs.com/
logo: green_hills_software_llc.svg
twitter: https://twitter.com/GreenHillsPR
crunchbase: https://www.crunchbase.com/organization/green-hills-software
extra:
linkedin_url: https://www.linkedin.com/company/green-hills-software
- item:
name: GreenWaves Technologies (member)
description: GreenWaves’ GAP8 is the industry’s first ultra-low-power processor enabling battery-operated AI in IoT applications.
homepage_url: https://greenwaves-technologies.com/
logo: greenwaves_technologies.svg
crunchbase: https://www.crunchbase.com/organization/greenwaves-technologies
extra:
linkedin_url: https://www.linkedin.com/company/greenwaves-technologies
- item:
name: Guangdong StarFive Technology Co., Ltd. (member)
description: >-
StarFive Technology Co., Ltd. (StarFive) was established in 2018. It is a leader in China's RISC-V technology and ecology. It has a complete
silicon-verified RISC-V CPU IP product line and platform-based software and hardware full-stack chips. solution. Products are widely used in smart
home appliances, smart monitoring, industrial robots, traffic management, smart logistics, wearable devices, solid-state storage, network
communications, edge computing and other field.
homepage_url: https://starfivetech.com/
logo: guangdong_starfive_technology_co_ltd.svg
twitter: https://twitter.com/StarFiveTech
extra:
linkedin_url: https://www.linkedin.com/company/starfive
organization:
name: Guangdong StarFive Technology Co., Ltd.
linkedin: https://www.linkedin.com/company/starfive
- item:
name: HashData (member)
description: HSX Data is a company that specializes in microchip and semiconductor design, as well as semiconductor manufacturing technology.
homepage_url: https://hsxdata.com/
logo: hashdata.svg
extra:
linkedin_url: https://www.linkedin.com/company/hsxdata
organization:
name: HashData
linkedin: https://www.linkedin.com/company/hsxdata
- item:
name: HighTec EDV-Systeme GmbH (member)
description: >-
HighTec EDV Systeme GmbH is a company that provides multi-platform embedded tools and software for automotive and industrial markets. They are the
largest independent commercial open source compiler provider for embedded systems.
homepage_url: https://hightec-rt.com/
logo: hightec_edv_systeme_gmbh.svg
extra:
linkedin_url: https://www.linkedin.com/company/hightec-edv-systeme-gmbh
organization:
name: HighTec EDV-Systeme GmbH
linkedin: https://www.linkedin.com/company/hightec-edv-systeme-gmbh
- item:
name: HPMicro (上海先楫半导体科技有限公司) (member)
description: HPMicro is a company that develops high-performance semiconductor products for embedded solutions.
homepage_url: https://www.hpmicro.com/
logo: hpmicro_shang_hai_xian_ji_ban_dao_ti_ke_ji_you_xian_gong_si.svg
organization:
name: HPMicro (上海先楫半导体科技有限公司)
- item:
name: IAR (member)
description: IAR Systems is a Swedish computer software company that offers development tools for embedded systems.
homepage_url: https://iar.com/
logo: iar.svg
crunchbase: https://www.crunchbase.com/organization/iar-systems
extra:
linkedin_url: https://www.linkedin.com/company/iar-systems
- item:
name: IEIT SYSTEMS Co. , Ltd. (member)
homepage_url: https://en.ieisystem.com/
logo: ieit_systems_co_ltd.svg
organization:
name: IEIT SYSTEMS Co. , Ltd.
- item:
name: Imagination Technologies Ltd. (member)
description: Imagination Technologies Group plc is a global semiconductor and software design company, owned by the Chinese Canyon Bridge Capital Partners.
homepage_url: https://imgtec.com/
logo: imagination_technologies_ltd.svg
twitter: https://twitter.com/ImaginationTech
crunchbase: https://www.crunchbase.com/organization/imagination-technologies
extra:
linkedin_url: https://www.linkedin.com/company/imaginationtech
- item:
name: InCore Semiconductors Pvt. Ltd. (member)
description: Production Grade, Open Source RISC-V Cores and SoCs
homepage_url: https://incoresemi.com/
logo: incore_semiconductors_pvt_ltd.svg
twitter: https://twitter.com/incoresemi
extra:
linkedin_url: https://www.linkedin.com/company/incoresemi
organization:
name: InCore Semiconductors Pvt. Ltd.
linkedin: https://www.linkedin.com/company/incoresemi
- item:
name: Infinecs Systems (member)
description: >-
Infinecs has years of experience and capabilities in Engineering Design, Product Development and Business Management in Electronics industry with
one-stop service, focusing on the IC/SOC and Embedded Systems design & development, from proto-typing to h...
homepage_url: https://infinecs.com/
logo: infinecs_systems.svg
twitter: https://twitter.com/infinecs
extra:
linkedin_url: https://www.linkedin.com/company/infinecs
organization:
name: Infinecs Systems
linkedin: https://www.linkedin.com/company/infinecs
- item:
name: Infineon Technologies AG (member)
description: >-
Infineon Technologies AG is a German semiconductor manufacturer founded in 1999, when the semiconductor operations of the parent company Siemens
AG were spun off.
homepage_url: https://infineon.com/
logo: infineon_technologies_ag.svg
crunchbase: https://www.crunchbase.com/organization/infineon
extra:
linkedin_url: https://www.linkedin.com/company/infineon-technologies
- item:
name: Ingenic Semiconductor (member)
description: >-
Ingenic Semiconductor is a leading Chinese embedded CPU provider which was founded in 2005 at Beijing. Ingenic Semiconductor has its own ultra low
power CPU technology XBurst. XBurst adopts an innovative pipeline engine which can emit instructions with very little power consumption.
homepage_url: https://ingenic.com.cn/
logo: ingenic_semiconductor.svg
organization:
name: Ingenic Semiconductor
- item:
name: Inspire Semiconductor, Inc. (member)
description: >-
InspireSemi is dedicated to developing & delivering superior accelerated computing solutions for blockchain, HPC, AI, and other compute-intensive
industries.
homepage_url: https://inspiresemi.com/
logo: inspire_semiconductor_inc.svg
extra:
linkedin_url: https://www.linkedin.com/company/inspire-semiconductor-inc
organization: