home *** CD-ROM | disk | FTP | other *** search
- /*Program 8_2 - Floating point benchmark
- by Stephen R. Davis
-
- The matrix multiply is something of a floating point
- performance standard. The size may be varied at will, but
- the default is 50 x 50. To execute this program without
- using the 8087 in a machine equipped with one, issue the
- DOS command SET 87=N before starting. SET 87=Y will reenable
- the 8087.
- */
-
- #include <stdio.h>
- #include <stdlib.h>
-
- #define msize 50
-
- /*define our data requirements*/
- unsigned i, j, k;
- float x [msize][msize], y [msize][msize], z[msize][msize];
- double accum;
-
- /*Main - perform the benchmark*/
- main ()
- {
- /*begin by initializing the matrices*/
- printf ("Initializing matrices\n");
- for (i = 0; i < msize; i++)
- for (j = 0; j < msize; j++) {
- x [i][j] = rand () / 10000.;
- y [i][j] = rand () / 10000.;
- }
-
- /*now begin the benchmark*/
- printf ("Enter return and start stop watch at same time\n");
- getchar ();
- printf ("Start...");
-
- for (i = 0; i < msize; i++)
- for (j = 0; j < msize; j++) {
- accum = 0;
- for (k = 0; k < msize; k++)
- accum += x [i][k] * y [k][j];
- z [i][j] = accum;
- }
-
- printf ("stop!\n");
- }