Skip to main content

7nm FinFET Technology

GLOBALFOUNDRIES 7LP 7nm FinFET process technology platform is ideal for high-performance, power-efficient SoCs in demanding, high-volume applications. 3D FinFET transistor technology provides world-class performance, power, area and cost advantages from 7nm scaling. 7LP technology can provide more than 40% higher device performance and more than 60% lower total power compared to 14nm technologies.


History:

Over the past few years, companies like Samsung, TSMC, and GlobalFoundries have all jockeyed for the pole position in the highly competitive (and extremely expensive) foundry business. Even Intel, which used to march to the beat of its own drum, has gotten in on the action. As the cost of each new node has risen, the need to be first has increased as well. The first company to hit a new node tends to secure many of the most lucrative contracts. For most of the past two decades, the pure-play foundry world was dominated by TSMC, but Samsung beat its Taiwanese rival to 14nm and made a fair bit of cash in the process.


Overview By AnandTech:

Technology Overview:

• Twin-well CMOS bulk FinFET
• 5 Core device Vt’s
• Two gate dielectrics: thin (SG) and medium I/O (EG)
• Full suite of passive devices
• Optional MIM capacitor, eFuse
• VDD: 0.75V nominal or 0.85V overdrive
• Standard temperature range: -40°C to 125°C 
• Optical lithography based process with EUV compatibility 
• Up to 17 layers of metallization

Performance, Power, Cost Advantage from 7nm Area Scaling :
>40% performance improvement at iso power (vs. 14nm) 
>60% power reduction at iso frequency (vs. 14nm) 
Up to 30% lower die cost (vs. 14nm)

Application-optimized Platform Extensions:





Comments

Popular posts from this blog

Ceph Single Node Setup Ubuntu

Single Node Ceph Install A quick guide for installing Ceph on a single node for demo purposes. It almost goes without saying that this is for tire-kickers who just want to test out the software. Ceph is a powerful distributed storage platform with a focus on spreading the failure domain across disks, servers, racks, pods, and datacenters. It doesn’t get a chance to shine if limited to a single node. With that said, let’s get on with it. Inspired from:  http://palmerville.github.io/2016/04/30/single-node-ceph-install.html Hardware This example uses a VMware Workstation 11 VM with 4 disks attached (1 for OS/App, 3 for Storage). Those installing on physical hardware for a more permanent home setup will obviously want to increase the OS disks for redundancy. To get started create a new VM with the following specs: ·         Name: ceph-single-node ·         Type: Linux ·     ...

Gitlab Migration : Case Study

Yes, the heading is absolutely correct. Gitlab is moving from Microsoft Azure to Google Cloud Platform (GCP). I know what you might be thinking, but this decision wasn't made after Microsoft decided to buy Github. But, all this migration was being planned even before that. Most of the things in this article are taken from the original article of Gitlab:  Here They believe  Kubernetes  is the future. It's a technology that makes reliability at massive scale possible. This is why earlier this year they shipped native  integration with Google Kubernetes Engine  (GKE) to give GitLab users a simple way to use Kubernetes. Similarly, they've chosen GCP as their cloud provider because of their desire to run GitLab on Kubernetes. Google invented Kubernetes, and GKE has the most robust and mature Kubernetes support. Migrating to GCP is the next step in only plan to make GitLab.com ready for their mission-critical workloads. It's what they think. I think even if ...

Docker Basics

When Do You Need to Use Docker? For replicating the environment on your server, while running your code locally on your laptop Experimenting with new things on your laptop without breaking the repositories. Creating a production grade environment on you PC with just simple steps. For instant testing of your application. For Docker CI/CD during numerous development phases (dev/test/QA) For distributing your app’s OS with a team, and as a version control system. Simple ways to setup docker: - Route 1 (curl required): # curl https://get.docker.com | sh Route 2: #apt-get update #apt-get install \     apt-transport-https \     ca-certificates \     curl \     software-properties-common #curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add – #apt-key fingerprint 0EBFCD88 #add-apt-repository \    "deb [arch=amd64] https://download.docker.com/lin...