home *** CD-ROM | disk | FTP | other *** search
- /*Program 8_1 - The Sieve of Eratosthenes Prime Number Program
- adapted from Byte Magazine, January 1983.
-
- This is the classic, non-floating point benchmark. Although
- no benchmark can do it all, the Sieve measures how well a
- machine can access and manipulate integer data. In our case,
- we will use it to measure the effect of register variables and
- register optimization in Turbo C.
- */
-
- #include <stdio.h>
- #include <stdlib.h>
-
- #define TRUE 1
- #define FALSE 0
- #define ITER 10
- #define SIZE 8190
-
- /*define our Boolean sieve*/
- char flags [SIZE+1];
-
- /*Main - the sieve program*/
- main () {
- /*register*/ int i,k;
- /*register*/ int iter, count;
-
- printf ("%d iterations. "
- "Hit enter and start stop watch\n", ITER);
- getchar ();
- printf ("Start...");
-
- for (iter = 1; iter <= ITER; iter++) {
- count = 0;
- for (i = 0; i <= SIZE; i++) /*init flags true*/
- flags[i] = TRUE;
-
- for (i = 2; i <= SIZE; i++)
- if (flags[i]) { /*found a prime*/
- for ( k = i + i; k <= SIZE; k += i )
- flags[k] = FALSE; /*cancel multiples*/
- count++;
- }
- }
-
- printf ("stop!\n\n%d primes\n", count);
- }