:hot spot: n. 1. [primarily used by C/UNIX programmers, but
spreading] It is received wisdom that in most programs, less than
10% of the code eats 90% of the execution time; if one were to
graph instruction visits versus code addresses, one would typically
see a few huge spikes amidst a lot of low-level noise. Such spikes
are called `hot spots' and are good candidates for heavy
optimization or {hand-hacking}. The term is especially used of
tight loops and recursions in the code's central algorithm, as
opposed to (say) initial set-up costs or large but infrequent I/O
operations. See {tune}, {bum}, {hand-hacking}. 2. The
active location of a cursor on a bit-map display. "Put the
mouse's hot spot on the `ON' widget and click the left button."
3. A screen region that is sensitive to mouse clicks, which trigger
some action. Hypertext help screens are an example, in which a hot
spot exists in the vicinity of any word for which additional
material is available. 4. In a massively parallel computer with
shared memory, the one location that all 10,000 processors are
trying to read or write at once (perhaps because they are all doing
a {busy-wait} on the same lock). 5. More generally, any place
in a hardware design that turns into a performance bottleneck due
to resource contention.
-- The AI Hackers Dictionary
spreading] It is received wisdom that in most programs, less than
10% of the code eats 90% of the execution time; if one were to
graph instruction visits versus code addresses, one would typically
see a few huge spikes amidst a lot of low-level noise. Such spikes
are called `hot spots' and are good candidates for heavy
optimization or {hand-hacking}. The term is especially used of
tight loops and recursions in the code's central algorithm, as
opposed to (say) initial set-up costs or large but infrequent I/O
operations. See {tune}, {bum}, {hand-hacking}. 2. The
active location of a cursor on a bit-map display. "Put the
mouse's hot spot on the `ON' widget and click the left button."
3. A screen region that is sensitive to mouse clicks, which trigger
some action. Hypertext help screens are an example, in which a hot
spot exists in the vicinity of any word for which additional
material is available. 4. In a massively parallel computer with
shared memory, the one location that all 10,000 processors are
trying to read or write at once (perhaps because they are all doing
a {busy-wait} on the same lock). 5. More generally, any place
in a hardware design that turns into a performance bottleneck due
to resource contention.
-- The AI Hackers Dictionary
Related:
- hot spot n.
1. [primarily used by C/Unix programmers,
but spreading] It is received wisdom that in most... - hand-hacking: n. 1. The practice of translating {hot spot}s from
an {HLL} into hand-tuned assembler,
as opposed to trying to coerce the compiler into... - tune: [from automotive or musical usage] vt. To optimize a program
or system for a particular environment,
esp. by adjusting numerical parameters designed... - tune vt.
[from automotive or musical usage] To optimize a
program or system for a particular environment,
esp. by adjusting numerical parameters designed... - hand-hacking n.
1. [rare] The practice of translating
hot spots from an HLL into hand-tuned assembler,
as opposed to trying to coerce the compiler into... - bit-paired keyboard n.,obs.
(alt. `bit-shift
keyboard') A non-standard keyboard layout that seems to have
originated with the Teletype ASR-33 and remained common for several
years on early computer equipment.
The ASR-33 was a mechanical device (see EOU), so... - moby /moh'bee/
[MIT: seems to have been in use among
model railroad fans years ago.
Derived from Melville's "Moby Dick" (some say from... - bare metal n.
1. [common] New computer hardware,
unadorned with such snares and delusions as an operating... - wedged: adj. 1. To be stuck, incapable of proceeding without
help.
This is different from having crashed. If the system...
