Skip to content

Commit

Permalink
appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
wallento committed Mar 10, 2024
1 parent 2b2fd26 commit 2e97c54
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ layout: page

The recent semiconductor shortage and shifts in global political relations have changed the European roadmap on semiconductors and chip design significantly. A mix of incentives for new fabrication facilities for advanced technologies and the ambitious goals to (re)-build leading-edge chip design capabilities in Europe are key cornerstones of the European Chips Act. Under this impulse, various funding actions have been successfully launched, for instance in the area of the creation of IP based on the RISC-V instruction set.

Universities have to be an integral part of Europes ambitions and are heavily involved in research activities on various levels. This is crucial for two reasons: First, they are incubators of innovative ideas. Second, and equally important, they are of key importance to educating future generations of chip designers and related jobs. The high demand for an increased workforce can only be satisfied with tight coordination and the best support of universities. In these efforts, we believe that open source is a key success factor. The availability of open-source RISC-V IPs developed in Europe has, for example, been of seminal importance for a significant ramp-up of research activities and the rapid build-up of a vibrant research community and innovation ecosystem around RISC-V hardware and software. This has led to new groups getting involved with computer architecture and an increase in innovative research that is currently funded to get commercialized at higher technology readiness levels.
Universities have to be an integral part of Europe's ambitions and are heavily involved in research activities on various levels. This is crucial for two reasons: First, they are incubators of innovative ideas. Second, and equally important, they are of key importance to educating future generations of chip designers and related jobs. The high demand for an increased workforce can only be satisfied with tight coordination and the best support of universities. In these efforts, we believe that open source is a key success factor. The availability of open-source RISC-V IPs developed in Europe has, for example, been of seminal importance for a significant ramp-up of research activities and the rapid build-up of a vibrant research community and innovation ecosystem around RISC-V hardware and software. This has led to new groups getting involved with computer architecture and an increase in innovative research that is currently funded to get commercialized at higher technology readiness levels.

A key next step is to turn innovation in computer architecture for the European market into chip designs that utilize the fabrication facilities and skilled workers that create those designs. In this trajectory, it is our strong belief that **open-source chip design tools (Electronic Design Automation -EDA- tools) are essential for the European renaissance in chip design education and innovation**:

1. Open-source EDA tools lower the barrier of entry significantly for students and researchers willing to engage in chip design. As such, we believe that early initiatives based on open-source EDA have already driven a significant amount of fresh talent into the semiconductor community. In addition to the current university-focused EUROPRACTICE program for access to proprietary tools and closed process design kits (PDKs), open-source EDA tools and PDKs are a great complementary offer, as they can be offered for free and under very liberal licensing terms.
1. Open-source EDA tools allow researchers and designers to collaborate easily, without the complexities and delays of three-way NDAs or similar legal agreements. Researchers and collaborators can easily share designs, ideas, and materials. This makes it much easier to engage new people from diverse fields like computer science, where open-source development is often the norm.
1. Open-source EDA tools are, for themselves, interesting for innovations, research, and development. They allow educators to let students inspect hands-on the functionality of various steps in the design automation process. Students and researchers can change the code, explore their own ideas, and gain a more profound understanding of the inner workings of a chip design process. The knowledge gained by these people will be extremely valuable for increasing Europes footprint in the commercial EDA ecosystem.
1. Open-source EDA tools are, for themselves, interesting for innovations, research, and development. They allow educators to let students inspect hands-on the functionality of various steps in the design automation process. Students and researchers can change the code, explore their own ideas, and gain a more profound understanding of the inner workings of a chip design process. The knowledge gained by these people will be extremely valuable for increasing Europe's footprint in the commercial EDA ecosystem.

Based on the considerations above, we would like to express a strong recommendation to the European and national funding agencies:

Expand Down Expand Up @@ -83,24 +83,18 @@ affiliation and ideally include a link to your profile.*
keyboard: false,
dragging: false
}

// Creating a map object
var map = new L.map('map', mapOptions);

// Creating a Layer object
var layer = new L.TileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png');

// Adding layer to the map
map.addLayer(layer);

{% for sign in site.data.initial %}
{% if sign.map %}
L.marker({{ sign.map}}).addTo(map)
{% endif %}
{% endfor %}
{% for sign in site.data.signatories %}
{% if sign.map %}
L.marker({{ sign.map}}).addTo(map)
{% endif %}
{% endfor %}
{% for sign in site.data.initial %}{% if sign.map %}L.marker({{ sign.map}}).addTo(map)
{% endif %}{% endfor %}
{% for sign in site.data.signatories %}{% if sign.map %}L.marker({{ sign.map}}).addTo(map)
{% endif %}{% endfor %}
</script>

0 comments on commit 2e97c54

Please sign in to comment.