diff options
Diffstat (limited to 'fpemulation.c')
-rw-r--r-- | fpemulation.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/fpemulation.c b/fpemulation.c index bd4b320..a99949d 100644 --- a/fpemulation.c +++ b/fpemulation.c @@ -31,15 +31,13 @@ static clock_t DoEmFloatIteration(InternalFPF *abase, InternalFPF *bbase, Intern unsigned long loops); static void SetupCPUEmFloatArrays(InternalFPF *abase, InternalFPF *bbase); -static double results; - /************** ** DoEmFloat ** *************** ** Perform the floating-point emulation routines portion of the ** CPU benchmark. Returns the operations per second. */ -void +double DoEmFloat(void) { const char* context = "CPU:Floating Emulation"; @@ -119,7 +117,7 @@ DoEmFloat(void) free(bbase); free(cbase); - results = (double)(iterations * loops * CLOCKS_PER_SEC) / (double)total_time; + return (double)(iterations * loops * CLOCKS_PER_SEC) / (double)total_time; } /*********************** @@ -207,9 +205,3 @@ SetupCPUEmFloatArrays(InternalFPF *abase, InternalFPF *bbase) DivideInternalFPF(&locFPF1,&locFPF2,bbase+i); } } - -double -getEmFloatScore(void) -{ - return results; -} |