Definition of Parallel processing

Babylon English
parallel processing
simultaneous processing of several computer commands

Search Dictionary:
Search Web Search Dictionary



Parallel processing definition was found in categories: Computer & Internet(3)  Language, Idioms & Slang(2)  Science & Technology(1)  Encyclopedia(1)  

Parallel processing Definition from Computer & Internet Dictionaries & Glossaries

FOLDOC
parallel processing
<parallel> The simultaneous use of more than one computer to solve a problem. There are many different kinds of parallel computer (or "parallel processor"). They are distinguished by the kind of interconnection between processors (known as "processing elements" or PEs) and between processors and memory. Flynn's taxonomy also classifies parallel (and serial) computers according to whether all processors execute the same instructions at the same time ("single instruction/multiple data" - SIMD) or each processor executes different instructions ("multiple instruction/multiple data" - MIMD).
The processors may either communicate in order to be able to cooperate in solving a problem or they may run completely independently, possibly under the control of another processor which distributes work to the others and collects results from them (a "processor farm"). The difficulty of cooperative problem solving is aptly demonstrated by the following dubious reasoning:
If it takes one man one minute to dig a post-hole then sixty men can dig it in one second.
Amdahl's Law states this more formally.
Processors communicate via some kind of network or bus or a combination of both. Memory may be either shared memory (all processors have equal access to all memory) or private (each processor has its own memory - "distributed memory") or a combination of both.
A huge number of software systems have been designed for programming parallel computers, both at the operating system and programming language level. These systems must provide mechanisms for partitioning the overall problem into separate tasks and allocating tasks to processors. Such mechanisms may provide either implicit parallelism - the system (the compiler or some other program) partitions the problem and allocates tasks to processors automatically or explicit parallelism where the programmer must annotate his program to show how it is to be partitioned. It is also usual to provide synchronisation primitives such as semaphores and monitors to allow processes to share resources without conflict.
Load balancing attempts to keep all processors busy by moving tasks from heavily loaded processors to less loaded ones.
Communication between tasks may be either via shared memory or message passing. Either may be implemented in terms of the other and in fact, at the lowest level, shared memory uses message passing since the address and data signals which flow between processor and memory may be considered as messages.
See also cellular automaton.
Usenet newsgroup: news:comp.parallel.
Institutionsresearch groups.
(1996-04-23)

Jensen's Technology Glossary
Parallel processing
(See Multitasking)

Internet Glossary
Parallel processing
The simultaneous use of more than one CPU to execute a program. Ideally, parallel processing makes a program run faster because there are more engines (CPUs) running it. In practice, it is often difficult to divide a program in such a way that separate CPUs can execute different portions without interfering with each other.

Most computers have just one CPU, but some models have several. There are even computers with thousands of CPUs. With single-CPU computers, it is possible to perform parallel processing by connecting the computers in a network. However, this type of parallel processing requires very sophisticated software called distributed processing software.
Note that parallel processing differs from multitasking, in which a single CPU executes several programs at once.

Parallel processing is also called parallel computing.



Parallel processing Definition from Language, Idioms & Slang Dictionaries & Glossaries

WordNet 2.0
parallel processing

Noun
1. simultaneous processing by two or more processing units
(synonym) multiprocessing
(hypernym) data processing

hEnglish - advanced version
parallel processing

parallel processing
n : simultaneous processing by two or more processing units [syn: multiprocessing]





Parallel processing Definition from Science & Technology Dictionaries & Glossaries

Telecommunication Standard Terms
parallel processing
Pertaining to the concurrent or simultaneous execution of two or more processes in a single unit.


Parallel processing Definition from Encyclopedia Dictionaries & Glossaries

Wikipedia English - The Free Encyclopedia
Parallel processing
Parallel processing is also another term for parallel computing.
Parallel processing is the ability of the brain to simultaneously process incoming stimuli. This becomes most important in vision, as the brain divides and conquers what it sees. It breaks up a scene into four components: colormotionform, and depth. These are individually analysed and then compared to stored memories, which helps the brain identify what you are viewing. The brain then combines all of these into one image that you see and comprehend. This is a continual and seamless operation.

See more at Wikipedia.org...