Field Guide · person

Also known as: John von Neumann, von Neumann

John von Neumann (1903–1957) was a Hungarian-American mathematician and polymath who described the stored-program computer design — the von Neumann architecture — that still organises nearly every general-purpose machine.1

1903 born 1928 game theory 1945 EDVAC report 1951 IAS machine 1957 died program and data share one memory — software becomes soft
Von Neumann's arc from mathematics to computing peaks at the 1945 EDVAC report, whose single idea — storing the program in the same memory as the data — still names the architecture almost every computer follows.

Life and work

Von Neumann made foundational contributions across mathematics, physics, game theory, and the design of the atomic bomb before turning to computing. His 1945 “First Draft of a Report on the EDVAC” set out a machine in which program instructions and data share the same memory, fetched and executed by a single processing unit. That single insight — that a computer should store its own program — separated software from wiring and made the programmable computer practical.1

Year Milestone
1928 Formalises minimax game theory
1945 “First Draft of a Report on the EDVAC”
1946 Joins the IAS computer project
1951 IAS machine, a widely copied stored-program design

Why they matter

In the von Neumann architecture, a CPU repeatedly fetches an instruction from memory, decodes it, and acts — the fetch-decode-execute cycle at the heart of essentially all of today’s computer hardware. It built on the universal-machine idea of Alan Turing and turned it into a buildable blueprint. When GopherTrunk runs a decode pipeline, it runs as instructions in shared memory on exactly this kind of machine.1

Legacy

The shared instruction/data memory is sometimes called the “von Neumann bottleneck,” and modern caches and Harvard-style splits are responses to it — but the basic model he named is still the default mental picture of how a computer works.

Sources

  1. John von Neumann — Wikipedia, for biography and the EDVAC report.  2 3

See also