78

Ok I think I do know the answer but I never learned it, so I want to learn it today. It's been about 1 year now we can reliably make 3nm chips, which is impressive on a scale of size. But why is is better? My theory is simply: We can make a product the same size but add more on it because it's smaller, making it stronger and faster for more complex operations. Which would mean it's not the chip that's impressive on its own, just the size of it.

Or there is something else, and I'd love to get the full explanation and understand chips better

all 29 comments
sorted by: hot top controversial new old
[-] partial_accumen@lemmy.world 148 points 9 months ago* (last edited 9 months ago)

Until we have reliable and wide-temperature operating superconductors, electronics are limited by electrical resistance in the materials that conduct electricity. So the materials inside CPUs have resistance. With chemistry we've lowered it as much as we can, but for it to still be a semiconductor (the material that makes transistors and CPUs work) there are practical limits and we've hit those with humanity's knowledge today.

Take your hand palm flat and place it on the floor next to your foot. Put some weight on your hand and drag your hand quick from your toes to your heel. Your hand got a little warm from the friction, right? Now imagine doing that same hand dragging exercise from your bedroom all the way to your living room. HOT HOT HAND! Friction is the same thing that causes heat in CPUs. The friction is the electrons flowing rubbing against the resistance in the conductor.

So we've got heat limiting us, and the more distance we have, the more heat we have, the more limits on CPU speed we have.

So with present day CPUs, how can we make less heat? Use less distance in the CPU from place to place inside it.

This is where we come to your 3 nm (nanometers). This is the measurement of the width (of a part called the "gate") of one single transistor inside the CPU. Its 3 times smaller than say a 9 nm gate technology CPU. Our new CPU has 3 times less distance to travel which also means it needs less electricity to do the same work. Less electricity also means less heat because there fewer electrons rubbing against the conductor's resistance.

So less distance to travel, and fewer electrons needed to travel. Thats good stuff for making faster CPUs!

So now you ask, why are we stopping at 3nm? Why not 1nm right now? In short, we don't have the technology for it yet. CPUs are made with, believe it or not a photographic process! Light in the specific shape of the CPU circuit is shined on specially prepared silicon. Chemicals make part of that silicon conduct, and some part NOT conduct. This is semiconductor lithography. I could go down a whole separate line for this, but this isn't what you asked so I'll leave off right here.

[-] cleftalhorizon@lemmy.sdf.org 36 points 9 months ago

please continue, sir. i like what i'm reading.

[-] theamigan@lemmy.dynatron.me 14 points 9 months ago

Don't forget about capacitance. Longer distances == more capacitance to charge up on state transitions. This wastes power and puts a ceiling on how quickly you can switch.

[-] Sabata11792@kbin.social 8 points 9 months ago

I thought the big hold back for this size was the shenanigans around quantum tunneling messing up data in the CPU. How is that accounted for?

[-] radix@lemmy.world 7 points 9 months ago

IIRC, anything less than 7-10nm is mostly marketing-speak anyway. Tunneling is a real limit at that scale, but chipmakers keep advertising smaller numbers as a performance-class figure rather than a physical size.

[-] shasta@lemm.ee 1 points 9 months ago

I was thinking the same thing

[-] AlmightySnoo@lemmy.world 5 points 9 months ago

Really awesome answer, thanks!

[-] Kyoyeou@slrpnk.net 2 points 9 months ago

I've never seen through of Friction in a Chip but this makes sense! Thank you that was a very very clear explanation!

[-] SHITPOSTING_ACCOUNT@feddit.de 19 points 9 months ago

The smaller it is the less power it needs. That also means it generates less heat, allowing you to do more computation without the device melting.

[-] Hazdaz@lemmy.world 17 points 9 months ago

Smaller process means less energy. Less energy means less heat. Less heat can mean faster operation. So without changing any of the layout or logic of the chip itself to make it more efficient, just shrinking the process alone will give you a speed boost.

But it goes further than that. Chips are cut from a wafer. The cost to make that wafer is (for the most part) constant. So if you can only make 20 or if you can make 2000 chips from that one wafer, it ultimately costs the same. But then that means the more CPUs that can be made per wafer, the per-CPU cost drops.

So you get a more power efficient, cooler, faster and cheaper chip when you shrink the process. The entire semiconductor industry is so dependent on this idea that it invests billions into it every year because it is so vitally important.

[-] BobaFuttbucker@reddthat.com 10 points 9 months ago* (last edited 9 months ago)

Disclaimer: not an expert, this is just how I understand it after some googling:

There isn’t a single standard for 3nm, despite the seemingly obvious size-related connotations. It’s more of a marketing term used by chip manufacturers to refer to their version of the next generation of chip-making processes they each have to create something smaller than the previous revision.

Any time you shrink a processor you’re using less materials, which means it’s cheaper and allows more room for other things.

Less materials also means less resistance, so a smaller chip is inherently either more power efficient, faster, or a little of both (depending on the chip and the design the manufacturer decides to go with).

[-] Granixo@feddit.cl 3 points 9 months ago* (last edited 9 months ago)

You are literally correct, the best kind of correct.

[-] spauldo@lemmy.ml 2 points 9 months ago

Power efficiency and the amount of components you can fit into the same area are the big reasons.

3nm isn't what you use for regular run-of-the-mill chips like voltage regulators and ADCs. It's for things like processors, where you have a metric buttload of complexity all in a tiny package.

We can't really clock silicon much faster than we do now, so speed increases come from having more cores, more pipelines, and more complicated tricks that let you do more with the same clock speed. People don't want to buy new devices that aren't faster than their old devices.

Taiwanese fabs have pushed the state of the art for quite some time now, so if China is catching up then that will get some people's attention. But Chinese fabs generally don't participate in the global supply chain so I personally think it's not going to have much impact in the west.

[-] jet@hackertalks.com 9 points 9 months ago* (last edited 9 months ago)

The faster you want a chip to go, the less time there is between every cycle. It takes time for signals to propagate across silicon. The smaller the window, The less workable area you have. An entire CPU wants to get clocked together, meaning you want all the components more or less running at the same speed, so they can work together efficiently.

At 10ghz with speed of light delays you can only move 2cm per cycle. And the propagation rate of electrons in silicon is even lower.

This is a reason multi-core processors have become more common. They're different time domains. Each processor core is at the limit of usable area within the time constraint. So to get more computation power you add more cores instead. Sadly most programmers still write single threaded programs. Only people who absolutely need performance bother with writing real multithreaded programs. So on your 64 core machine, you're probably only using one or two cores at any time. Realistically

Other people have already talked about temperature, so I won't.

[-] ozymandias117@lemmy.world 2 points 9 months ago

This is also why we use speculative execution and various length pipelines per core for single threaded execution

A long pipeline creates big delays when an instruction wasn’t the correct one, but on average it saves time

[-] partial_accumen@lemmy.world 4 points 9 months ago

Pentium 4 has entered the chat...

[-] ozymandias117@lemmy.world 1 points 9 months ago

Yeah 😂

I was specifically thinking about pentium 4 when I said long pipelines aren’t always better 😂

Speculative execution has wound up having security implications as well

[-] Telodzrum@lemmy.world 6 points 9 months ago

Something I don't see here among these (rather good) answers is that you cannot compare size between manufacturers. The numbers have some truth, but they are largely marketing.

See: https://en.wikichip.org/wiki/technology_node

[-] weew@lemmy.ca 6 points 9 months ago

The semiconductor industry has been shrinking chips for basically as long as it has existed. Look up Moore's Law.

In any case, the smaller the transistor, the more chips you can produce with each batch, they use less power, and run faster. Usually. Sometimes things don't always go right, but that's the general trend.

[-] rufus@discuss.tchncs.de 1 points 9 months ago* (last edited 9 months ago)

With a smaller feature size, you make the chip cheaper, more energy efficient and you can/could bump the frequency.

You can fit more dies on a wafer. So every one gets cheaper. And smaller transistors use less energy. I'm pretty sure the high frequency stuff also gets 'easier' with less distance and material involved.

[-] max@feddit.nl 1 points 9 months ago

I’m not super well-versed in this field, but I know the basics. People are excited about 3nm processes because it allows you to fit more transistors on the same die or make smaller dies with the same performance as a bigger one on the old process. It also has reduced energy consumption, and thus reduced heat production. How exactly, I’m not sure.

[-] marcos@lemmy.world 0 points 9 months ago

Well, for a start, those 3nm are supposed to represent the feature size, not the transistor size. The feature size is like the resolution of an image (in fact, it is very very like), so as you reduce it, you can get more and more detailed things, but those things do not necessarily reduce in size. Thus you don't necessarily get more transistors from a finer process.

But then, the sizes you read about right now are not real feature sizes either. They are calculated by a complex algorithm that takes into account everything, from the cost of the factories to the chip's power dissipation, and only terminates on the computers of the marketing department. You can't expect to just read them and learn something useful.

[-] Granixo@feddit.cl -1 points 9 months ago

Shrinking is better because it inherently makes electronic components more efficent and cheaper to produce in bulk.

However, if you ask me, i believe it would be nicer if for a couple of years developers and manufacturers shifted focus onto making better optimized software (mostly just get rid of all the bloatware) and hardware (bring dedicated sound and network chips back).

[-] pozbo@lemmy.world -2 points 9 months ago

Smaller good.

this post was submitted on 12 Sep 2023
78 points (91.5% liked)

No Stupid Questions

34333 readers
1054 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 1 year ago
MODERATORS