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 ·         Version: Ubuntu 16.04.03 (64-bit) ·         Memory: 4GB ·         Disk: 25GB (Dynamic) ·

How to expose your local server to Internet?

As a developer, we always have a wish to expose our work to internet, so that we can show those to our friends or teachers for testing. But, what we choose to use services of public cloud and sometimes it becomes a bit more expensive way for small projects. So, friends I have found a way to expose your localhost services to the internet without port forwarding through the NAT of your ISP. The solution is: NGROK What is ngrok? Ngrok exposes local servers behind NATs and firewalls to the public internet over secure tunnels. How it works You download and run a program on your machine and provide it the port of a network service, usually a web server. It connects to the ngrok cloud service which accepts traffic on a public address and relays that traffic through to the ngrok process running on your machine and then on to the local address you specified. What it's good for Demoing web sites without deploying Building webhook consumers on your dev machine Testing m

Docker Overview

OVERVIEW Docker is the company driving the container movement and the only container platform provider to address every application across the hybrid cloud. Today’s businesses are under pressure to digitally transform but are constrained by existing applications and infrastructure while rationalizing an increasingly diverse portfolio of clouds, datacenters and application architectures. Docker enables true independence between applications and infrastructure and developers and IT ops to unlock their potential and creates a model for better collaboration and innovation. A little intro to LXC: - LXC (LinuX Containers) is a OS-level virtualization technology that allows creation and running of multiple isolated Linux virtual environments (VE) on a single control host. These isolation levels or containers can be used to either sandbox specific applications, or to emulate an entirely new host. LXC uses Linux’s cgroups functionality, which was introduced in version 2.6.24 to