Computer Hardware History buffs! I need your help!

cheung5345

Distinguished
May 20, 2004
4
0
18,510
My teacher challenged me to find a "true parallel system that is NOT pseudoparallel as well."
I believe this means a multiprocessor system that uses spooling instead of timesharing to run processes.
This means multi-threaded, strictly single process, right? edit: Or maybe strictly 1 process per processor. Just so there isn't any pseudoparallelism going on.

Are there, or were there ever, any computers that fit this description?
Do super computers, such as The Earth Simulator, work this way?

Thanks for any information you can provide.

<P ID="edit"><FONT SIZE=-1><EM>Edited by cheung5345 on 05/19/04 10:23 PM.</EM></FONT></P>
 

TheRod

Distinguished
Aug 2, 2002
2,031
0
19,780
Humm.... Folder@Home and SETI@Home can be called trully "parallel" each CPU crunch data individually and they return results to a "master cluster"... But your post, is not very clear.

--
Lookin' to fill that <font color=blue>GOD</font color=blue> shape hole!
 

cheung5345

Distinguished
May 20, 2004
4
0
18,510
No, I don't mean Hyperthreading.
The average PC today is single processor, pseudoparallel (switches back and forth through processes rapidly to simulate programs running in parallel).

I am looking for a multiprocessor, non-pseudoparallel, if one ever existed.

Folding/SETI @home is not quite what I'm looking for. I am looking for an actual machine.
 

TheRod

Distinguished
Aug 2, 2002
2,031
0
19,780
So any dual or more CPU PC is doing some parallel work. For example if you run a "single-threaded" application on a dual system, the OS assign the process to 1 CPU. The second processor will continue to do anything else. This is parallel processing. It's true that when you get more than 2 process running (which in today's PC is all the time) there will always be switching between process, but an application that is single-threaded can't be "shared" between 2 CPUs. It's why I think any DUAL or more CPU PC are doing "true" AND "pseudo" parallelism.

--
Lookin' to fill that <font color=blue>GOD</font color=blue> shape hole!
 

SoDNighthawk

Splendid
Nov 6, 2003
3,542
0
22,780
Try the Motorola 6800 Micro processor. It was used in Tandy Colour Computer's. I still have a functional CoCo3.

Barton 3200+ 400MHz
A7N8X Deluxe
Air Cooled 45C
2x512 Corsair DDR 400 PC3200
GeForce FX5900
Two Maxtor 40Gig 8MB cach 7200rpm
SONY RW 52x/24x/52x
SONY DVD 16x/40x
 

jim552

Distinguished
May 1, 2003
171
0
18,680
There are tons of examples of these sort of computers.

They have been around since, at least, the 1970's.

If you are "TRULY" seeking a situation where the processor ONLY performs a single thread, you likely will not find it. EVERY implementation I have seen requires the processor to perform additional tasks. (At least implementations where the system is TRULY a general purpose computing device. Communications to other processes, synchronization of datasets, results, etc.....)

Generally systems are, what you are terming, pseudo-parallel because it extends what most designers are used to. Initially processors were VERY expensive, VERY complicated for the day. It made sense to utilize a processor in as many tasks as possible, so time from the processor was allocated to a process/thread through a timeslice situation. (Definately a whole bunh of nuances as to what a "timeslice" is going to be.)

Now, as what was complicated is quickly becoming run of the mill, more and more systems are created from multiple processors each doing less, but doing it simultaneously.

This REALLY hurt Cray as while they built some of the FASTEST processors availabe they were really late in getting onto the multi-processor systems. (No, I am not talking about 4 or 16 processors or even 64, but rather higher numbers.)

Likely the FIRST company that did a really good job at getting multi-processors to do tasks well was Thinking Machines Inc when they made the Connection Machine.

Likely you, and many others on this board, have seen one of their systems. (Or at least a system that looks nearly, if not, excactly like one of theirs.) Wargames. The computer system that was shown as the one controlling the missiles is, is looks very much like, a Connection Machine.

This was a MASSIVELY parallel system that could have up to 16,384 processors. The LED's show communications accross the processors.

Steve Ciarcia from Circuit Cellar had a project some time ago that used multiple 8051 microcontrollers on a communications bus to solve mathmatical problems.

The Earth simulator is another example.

ALL of the Neural Net systems are essentially "parallel". (Actually in this case, they mostly do single tasks.) These are VERY simple processing elements that have the ability to run in parallel.

I think SETI@Home is another good example. (As previously mentioned.)

Look that the IBM the Blue Gene/L system. The one being built for Lawrence Livermore National Laboratory will contain 131,072 processors. (400 person staff, 1/2 a tennis court, 6+ megawatts of power, etc.... Truly amazing specs overall.)

Even in PC's there are various processes that are now handled by separate processors. The "KEYBOARD" is the oldest example as a separate procesor existed to perform ALL of the key scanning and debounce functions. Some diskcontrollers are separate processors, sound chips, video controllers. While these are NOT general purpose processors that can have their mission altered much, at least in the configuration being used, they are separate processors that perform tasks in parallel to the main processor.

Lastly, isn't this cheating?

You can easily look up more information on anything that I've written on the Internet.

The ones I picked are may favorite one, a hobby example, and a truly amazing current peice of work. (The Connection Machine, Circuit Cellar, and Blue Gene/L, respectively.)
 

jihiggs

Splendid
Oct 11, 2001
5,821
2
25,780
can it be a single component? maybe it can be the proccessor on a (hardware) modem or a good soundcard?

wpdclan.com counter-strike game server - 66.150.155.52:27015
now featuring valve security module!
 

P4Man

Distinguished
Feb 6, 2004
2,305
0
19,780
I'd bet some money your teacher is thinking about the <A HREF="http://www.classiccmp.org/transputer/" target="_new"> transputer </A>

If I'm right, send me a cookie :)

= The views stated herein are my personal views, and not necessarily the views of my wife. =
 

cheung5345

Distinguished
May 20, 2004
4
0
18,510
I'd bet some money your teacher is thinking about the transputer

If I'm right, send me a cookie :)
---------------------------------------------------------

"Each transputer has a highly efficient built-in run-time scheduler for processes running in parallel on the same transputer and supports channel communication through single words in memory. Processes waiting for input or output, or waiting on a timer, consume no CPU resources, and process context switching time can be as little as one microsecond." - from your link

I don't know if this fits. :( It refers to a "scheduler for processes running in parallel on the same transputer" and "process context switching time can be as little as one microsecond." which sound like things pseudo-parellel processors needs. Can you tell me how a transputer actually brings processes into memory to be run?

This isn't for homework or anything. I just asked my teacher if true parallel necessarily means pseudo-parallel as well and he challenged me to find a multiprocessor system that uses spooling. He'll give me extra credit if I can find one. :p
 

cheung5345

Distinguished
May 20, 2004
4
0
18,510
Try the Motorola 6800 Micro processor. It was used in Tandy Colour Computer's. I still have a functional CoCo3.
------------------------------------------------------------
Hey, I googled for the 6800 Micro processor... edited out.

Is this multiprocessor? It sounds like a single processor to me.

edit2: another word that might help is a "batch system."
did a multiprocessor spooling batch system ever exist?<P ID="edit"><FONT SIZE=-1><EM>Edited by cheung5345 on 05/21/04 01:38 AM.</EM></FONT></P>
 

P4Man

Distinguished
Feb 6, 2004
2,305
0
19,780
I know precious little about how the transputer worked, but there is always google.. Have a look here:
<A HREF="http://www.embedded.com.au/reference/transputers.html" target="_new">http://www.embedded.com.au/reference/transputers.html</A>

Also, I'm unsure what you mean by "spooling" in this context.

I just referenced the transputer as it is considered to be (one of) the first (if not only) truly parallel architectures.

= The views stated herein are my personal views, and not necessarily the views of my wife. =
 

SoDNighthawk

Splendid
Nov 6, 2003
3,542
0
22,780
In later versions it also had 5 1/4 drives with controler and socketed game or data cartridges that plug into the right side of the keyboard.



Barton 3200+ 400MHz
A7N8X Deluxe
Air Cooled 45C
2x512 Corsair DDR 400 PC3200
GeForce FX5900
Two Maxtor 40Gig 8MB cach 7200rpm
SONY RW 52x/24x/52x
SONY DVD 16x/40x
 

slvr_phoenix

Splendid
Dec 31, 2007
6,223
1
25,780
Technically such an animal probably doesn't exist if for no other reason than because of software. Software could be used to perform pseudo-parallelism in any hardware.

<pre><b><font color=red>"Build a man a fire and he's warm for the rest of the evening. Set a man on fire and he's warm for the rest of his life." - Steve Taylor</font color=red></b></pre><p>
 

c-britain

Distinguished
Jun 29, 2009
1
0
18,510
Try looking at the DEC System 10 stuff, particularly the 1066 block diagram. the memory was multiported and multiple cpus could be hooked up. Although I have heard it said it wasn't true SMP because cpu zero was still the scheduler.
 
Thread parallelism (in theory) existed in the 1950s and was put in practice in the early 1960s.

Thread parallelism has historically been referred to as SMT for symmetric multi threading

And the term you are looking for is "load balancing" across cores (or CPUs) - not "pseudo parallel".

That's all I'm giving you :)

 

B-Unit

Distinguished
Oct 13, 2006
1,837
1
19,810
Hey, guess what?

thread_necro.jpg