- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Threading means (or used to mean) a program that is capable of spliting the processing into more than one execution stream. Threading does not necessarily require multiple processors. Threading will run on systems with one or more processors/processor cores. Advantage is attained, even on a single processor system, when an execution stream (thread) is blocked waiting for I/O, and other execution streams of the program continue to run.
Concurrency means multiple processors are available to run multiple threads and/or multiple programs at the same time.
Parallelism has concurrency as a subset, but also includes vector instructions such as the Single Instruction Multiple Data instructions e.g. add these four floating point variables to four floating point registers.
Jim

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page