From 2b352223b3939e48342fc545ef4a55a97d58cf79 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 14 Nov 2008 21:40:55 +0000 Subject: -- Remove more useless stuff -- Begin cleaning up structs with consistent naming git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@39 0d43b9a7-5ab2-4d7b-af9d-f64450cef757 --- nmglobal.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'nmglobal.h') diff --git a/nmglobal.h b/nmglobal.h index 9a25ac6..038d8c9 100644 --- a/nmglobal.h +++ b/nmglobal.h @@ -103,7 +103,7 @@ typedef struct { int adjust; /* Set adjust code */ unsigned long request_secs; /* # of seconds requested */ - double sortspersec; /* # of sort iterations per sec */ + double results; /* # of sort iterations per sec */ unsigned short numarrays; /* # of arrays */ unsigned long arraysize; /* # of elements in array */ } SortStruct; @@ -151,7 +151,7 @@ typedef struct { typedef struct { int adjust; /* Set adjust code */ unsigned long request_secs; /* # of seconds requested */ - double bitopspersec; /* # of bitfield ops per sec */ + double results; /* # of bitfield ops per sec */ unsigned long bitoparraysize; /* Total # of bitfield ops */ unsigned long bitfieldarraysize; /* Bit field array size */ } BitOpStruct; @@ -187,7 +187,7 @@ typedef struct { unsigned long request_secs; /* # of seconds requested */ unsigned long arraysize; /* Size of array */ unsigned long loops; /* Loops per iterations */ - double emflops; /* Results */ + double results; /* Results */ } EmFloatStruct; /************************* @@ -201,7 +201,7 @@ typedef struct { int adjust; /* Set adjust code */ unsigned long request_secs; /* # of requested seconds */ unsigned long arraysize; /* Size of coeff. arrays */ - double fflops; /* Results */ + double results; /* Results */ } FourierStruct; /************************* @@ -215,7 +215,7 @@ typedef struct { int adjust; /* Set adjust code */ unsigned long request_secs; /* Requested # of seconds */ unsigned long numarrays; /* # of arrays */ - double iterspersec; /* Results */ + double results; /* Results */ } AssignStruct; /******************** @@ -246,7 +246,7 @@ typedef struct { unsigned long request_secs; /* Requested # of seconds */ unsigned long arraysize; /* Size of array */ unsigned long loops; /* # of times to convert */ - double iterspersec; /* Results */ + double results; /* Results */ } IDEAStruct; @@ -284,7 +284,7 @@ typedef struct { unsigned long request_secs; /* Requested # of seconds */ unsigned long arraysize; /* Size of array */ unsigned long loops; /* # of times to compress/decompress */ - double iterspersec; /* Results */ + double results; /* Results */ } HuffStruct; /******************************** @@ -309,7 +309,7 @@ typedef struct { int adjust; /* Set adjust code */ unsigned long request_secs; /* Requested # of seconds */ unsigned long loops; /* # of times to learn */ - double iterspersec; /* Results */ + double results; /* Results */ } NNetStruct; /*********************** @@ -335,7 +335,7 @@ typedef struct { int adjust; /* Set adjust code */ unsigned long request_secs; /* Requested # of seconds */ unsigned long numarrays; /* # of arrays */ - double iterspersec; /* Results */ + double results; /* Results */ } LUStruct; extern unsigned long global_min_ticks; -- cgit v1.2.3