The contents:
|
|
|
|
|
Multimedia, MMX and Katmai |
With the Pentium MMX we had the first of several improvements of the microprocessor's set of instructions. Later, we got 3DNow! and Katmai. What does all this mean?
In 1995 the Pentium processor was expanded with the so-called MMX instructions. That was announced as a multimedia expansion with 57 new instructions.
Today the emphasis in multimedia is especially in 3D graphics. Here the most important operation is the so-called geometric transformations, which deal with floating-point numbers. Let us take a look at these issues.
FPU |
FPU stands for Floating-point Unit. That is the unit in the processor, that handles floating-point numbers. It is difficult for the CPU to manipulate floating-point numbers, since it requires lots and lots of bits to perform an accurate calculation. Math with integers is much simpler, and is done with hundred percent accuracy each time.
The FPU works with floating - point numbers of various bit length, depending on the desired degree of accuracy. The most accurate type has a bit length of 80!
All the modern P6 processors have 8 FP registers, each of which has a bit length of 80. So there is room inside the CPU itself for 8 numbers each of 80 bit length or, for example, 16 numbers each of 32 bit length. Read more...
Working with 3D graphics |
A figure in a PC game can typically be built from 200-1500 such polygons. For each change in the picture these polygons have to be re-drawn in a new position. This means that each corner (vertex) in every polygon has to be recalculated.
However the 32 bits numbers are sufficient to design 3D objects. When the figures in a 3D landscape move, you need to make a so-called matrix multiplication to calculate the new vertices. If a figure consists of 1000 polygons, it requires up to 84,000 multiplications, each with two 32 bit floating-point numbers.
It is quite a hefty piece of math, for which the traditional PC is not well equipped. Actually, the largest spreadsheet available to the finance ministry is a drop in the bucket compared to Quake II, as far as number crunching ability is concerned.
MMX |
The Pentium MMX processor was a big success. However, that was not because of the MMX instructions. Many regard them as a flop.
The point is that MMX only works with integers. Furthermore the system is so weak, that it can only work with either MMX or with FPU, not both simultaneously. That is because the two sets of instructions share registers.
The MMX instructions can be of assistance in other tasks in the redrawing of 3D landscapes (the surface etc.), but for all the geometry you need much more umph!
Here you see the MMX enabling in a program. It is "Painter Classic" a great drawing program, which is bundled with Wacoms drawing tablets. The program utilizes MMX:
3DNow! |
During the summer of 1998 AMD introduced a new collection of CPU instructions, which improve the 3D execution.
The instructions use the same registers, as do MMX and traditional FPU. So they have to share them. Since the registers are 80 bits wide, they can hold two 32 bit numbers simultaneously.
Katmai |
In principle Katmai is significantly more powerful than 3DNow! The 8 new 128 bit registers can actually hold four 32 bit numbers at a time. But to take advantage of this, the FPU pipeline should also have been doubled, so each multiplication or addition pipeline could receive four numbers at a time.
However that was not done in Pentium III, since it would have delayed its introduction. So the pipelines can still handle two 32 bit numbers at a time. In that way the full potential of Katmai is not reached within the actual Pentium III design.
With the current FPU unit Pentium III can perform twice as many 32 bit number operations per clock tick as can the other P6 processors (Pentium II and Celeron). That is the same performance as we find in the 3DNow! processors. But Pentium III is scheduled for future editions with a four-fold increase in FPU performance as far as the 32 bit numbers are concerned.
With the introduction of Pentium 4, the SIMD instruction set was further improved with144 new instructions.
| Learn more |
Read about chip sets on the motherboard in module 2d
Read more about RAM in module 2e
Read module 5a about expansion cards, where we evaluate the I/O buses from the port side.
Read module 5b about AGP and module 5c about Firewire.
Read module 7a about monitors, and 7b on graphics card.
Read module 7c about sound cards, and 7d on digital sound and music.
|
Copyright (c) 1996-2005 by Michael B. Karbo. www.Karbosguide.com.