Introduction and Moore's Law Flashcards

1
Q

What is the basic idea of Moore’s Law?

A

A now-defunct observation that essentially said that hardware power will double every 1-2 years into infinity, through the packaging of more transistors into a single chip and therefore the reduced price of transistors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

DEFINE: The digital abstraction

A

The idea of making software knowledge non-reliant on hardware-specific capability (i.e. caching, manycores, …) for performant code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Why wasn’t performant software a huge area of focus before the 2000’s?

A

Moore’s Law (or a variation of it) meant hardware would scale to lift the performance of the software, so incremental software gains would be lapped by hardware… until the end of Moore’s Law.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Moore’s Law is typically cast as “Performance doubles every X months.” What’s a more accurate description?

A

“The number of transistors per unit cost doubles every X months.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

DEFINE: Dennard Scaling

A

The theory that power density stays constant as transistors get smaller, as expressed by the following equation:

Power = Capacitance x Voltage^2 x Frequency

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is missing in the following equation, and what is this equation for:

_____ = Capacitance x _____^2 x Frequency

A

Dennard Scaling. Power, Voltage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

In regards to Dennard Scaling, what elements of the equation would ideally be decreasing, constant, and increasing?

A

The equation is Power = Capacitance x Voltage^2 x Frequency.

Power: Remains constant. We’d like to increase it but there is a limit thanks to thermal considerations.

Capacitance: Decreases. When transistors shrink, they require less charge to have the same power, so we want to shrink them.

Voltage: Decreases. We can operate the transistors that we want to shrink with less charge. The problem here is leakage, but this was a source of power depression for a while.

Frequency: Increases. This is clock speed, and with more clock speed we improve performance. We want to push this as high as it goes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

In regards to Dennard Scaling, why can’t we infinitely increase power to improve frequency?

A

Thermal concerns. We get “thermal runaway,” where a positive feedback loop on temperature causes permanent damage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

In regards to Dennard Scaling, why can’t we infinitely decrease capacitance and voltage to improve frequency?

A

Physics complications in regards to strict size limits and electrical engineering complications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What’s usually missing from the Dennard Scaling equation?

A

Leakage: … + Voltage x Leakage

This is also known as Static Power, whereas the original equation represents Dynamic Power.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

When Dennard Scaling ended around 2006, why did Moore’s Law (as generally known) hold for a while afterwards?

A

Multicore systems.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

DEFINE: The Utilization Wall

A

The practical limit on how many gates in a chip can be active at a time thanks to thermal issues.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

When Moore’s Law ended, what two solutions were the only way to keep performance improving?

A

Solution 1: Write software more efficiently with underlying knowledge of architecture.

Solution 2: Build and use hardware best suited for a given task, ending general-purpose cores’ dominance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

TRUE/FALSE: Moore’s Law boils down to getting faster performance out of the same power.

A

TRUE.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

TRUE/FALSE: Capacitance hit its limit because of leakage.

A

FALSE. This is Voltage’s limit, Capacitance hit a physical limit with gate-oxide thickness.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly