Clock
Also known as: clock speed, clock signal, clock rate
The steady electronic pulse that synchronizes a digital circuit — every "tick" advances the CPU and other components through their next step, and its rate is measured in hertz.
- Primary domain
- Hardware & Architecture
- Sub-category
- Hardware Acceleration, Processors & Form Factors
In simple terms
A computer’s clock is a metronome — a signal that pulses on and off billions of times a second to keep everything in step. On each tick, the CPU advances one small step: fetch a bit of an instruction, do a calculation, move data. The clock speed (like “3.5 GHz”) tells you how many ticks happen per second — 3.5 billion, in that case. Without a clock, the millions of tiny operations inside a chip would have no shared sense of when to act, and the results would be chaos.
More detail
Digital circuits are mostly synchronous: components only update their state on a clock edge (the moment the signal transitions). This shared heartbeat ensures that signals have settled and everyone reads consistent values at the same instant.
- Frequency is measured in hertz: 1 GHz = one billion cycles per second. Modern CPUs run roughly 1–6 GHz.
- A clock cycle isn’t the same as an instruction — thanks to pipelining, a CPU can complete several instructions per cycle, or take many cycles for a slow one.
- The base clock is generated by a tiny crystal oscillator and multiplied up by circuitry on the motherboard and CPU.
Why not just crank the clock higher forever? Two limits:
- Heat and power — power use rises steeply with frequency and voltage, so faster clocks run hotter. This is a big reason chipmakers stopped chasing GHz around 2005 and pivoted to adding cores instead.
- Physics — signals must propagate across the chip within one tick; the speed of light and transistor switching times set a ceiling.
Overclocking pushes the clock above its rated speed for more performance (with more heat); dynamic frequency scaling does the opposite, lowering the clock when idle to save power and battery.
Why it matters
Clock speed is one of the headline numbers that determines how fast a processor runs — though, famously, not the only one. Understanding the clock explains why “more GHz” isn’t a complete measure of performance, why laptops throttle down when hot, and why the industry shifted from ever-faster single cores to more cores once the clock-speed race hit thermal walls.
Real-world examples
- A CPU advertised at “4.2 GHz boost” ticks up to 4.2 billion times per second under load, then drops back to save power when idle.
- A phone lowering its clock speed when it gets hot (thermal throttling) to avoid overheating — visible as the device feeling slower.
- Enthusiasts overclocking a CPU past its rated frequency, paired with bigger coolers to handle the extra heat.
Common misconceptions
- “Higher clock speed always means a faster computer.” Only when comparing similar chips — a newer 3 GHz CPU can easily beat an older 4 GHz one by doing more work per cycle. Architecture, cores, and cache matter just as much.
- “One clock cycle equals one instruction.” Modern CPUs overlap instructions via pipelining and can retire several per cycle, while some operations take many cycles.
Learn next
The clock paces the CPU; pipelining is how a processor squeezes more than one instruction’s worth of work out of those cycles — see the CPU pipeline.
Read this in a learning path
All paths →This topic is part of a learning path. Start in context to keep prev/next and progress tracking.
Relationships
- Requires
- Related
Neighborhood
A visual companion to the relationships above. Click any node to visit that topic.