Change speed representation from floating point to integral

This commit is contained in:
George Lu
2018-08-09 10:42:58 -07:00
parent 8faeb41679
commit 3d230db853
3 changed files with 38 additions and 55 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ extern "C" {
typedef struct {
size_t cSize;
double cSpeed; /* bytes / sec */
double dSpeed;
U64 cSpeed; /* bytes / sec */
U64 dSpeed;
size_t cMem;
} BMK_result_t;