summaryrefslogtreecommitdiff
path: root/nmglobal.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-14 21:40:55 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-14 21:40:55 +0000
commit2b352223b3939e48342fc545ef4a55a97d58cf79 (patch)
tree73580d2375731f73f92259e961b9b57fb72cb136 /nmglobal.h
parentc11b34f0a5ec28f8c66f40054e4eb351cc1d1f05 (diff)
-- 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
Diffstat (limited to 'nmglobal.h')
-rw-r--r--nmglobal.h18
1 files changed, 9 insertions, 9 deletions
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;