gcm benchmark results format alignment

This commit is contained in:
toddouska
2015-11-02 09:39:34 -08:00
parent f8aeac608c
commit 28dcef2d71

View File

@ -483,11 +483,12 @@ void bench_aesgcm(void)
persec = persec / 1024; persec = persec / 1024;
#endif #endif
printf("AES-GCM Encrypt %d %s took %5.3f seconds, %8.3f MB/s", numBlocks, printf("AES-GCM %d %s took %5.3f seconds, %8.3f MB/s", numBlocks,
blockType, total, persec); blockType, total, persec);
SHOW_INTEL_CYCLES SHOW_INTEL_CYCLES
printf("\n"); printf("\n");
#if 0
start = current_time(1); start = current_time(1);
BEGIN_INTEL_CYCLES BEGIN_INTEL_CYCLES
@ -508,6 +509,7 @@ void bench_aesgcm(void)
blockType, total, persec); blockType, total, persec);
SHOW_INTEL_CYCLES SHOW_INTEL_CYCLES
printf("\n"); printf("\n");
#endif
} }
#endif #endif