zstd/tests/fullbench.c

642 lines
22 KiB
C
Raw Normal View History

2016-08-30 10:04:33 -07:00
/**
* Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
2015-01-23 16:58:16 -08:00
2016-03-15 12:47:23 -07:00
/*_************************************
2015-01-23 16:58:16 -08:00
* Includes
**************************************/
2016-05-05 04:58:56 -07:00
#include "util.h" /* Compiler options, UTIL_GetFileSize */
#include <stdlib.h> /* malloc */
#include <stdio.h> /* fprintf, fopen, ftello64 */
2015-01-23 16:58:16 -08:00
#include "mem.h" /* U32 */
2016-11-21 04:58:58 -08:00
#ifndef ZSTD_DLL_IMPORT
#include "zstd_internal.h" /* ZSTD_blockHeaderSize, blockType_e, KB, MB */
#else
#define KB *(1 <<10)
#define MB *(1 <<20)
#define GB *(1U<<30)
typedef enum { bt_raw, bt_rle, bt_compressed, bt_reserved } blockType_e;
2016-11-21 04:58:58 -08:00
#endif
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_compressBegin, ZSTD_compressContinue, etc. */
#include "zstd.h" /* ZSTD_versionString */
#include "util.h" /* time functions */
2015-02-10 09:15:20 -08:00
#include "datagen.h"
2015-01-23 16:58:16 -08:00
2016-03-15 12:47:23 -07:00
/*_************************************
2015-01-23 16:58:16 -08:00
* Constants
**************************************/
2015-10-25 16:06:36 -07:00
#define PROGRAM_DESCRIPTION "Zstandard speed analyzer"
2015-01-23 16:58:16 -08:00
#define AUTHOR "Yann Collet"
#define WELCOME_MESSAGE "*** %s %s %i-bits, by %s (%s) ***\n", PROGRAM_DESCRIPTION, ZSTD_versionString(), (int)(sizeof(void*)*8), AUTHOR, __DATE__
2015-01-23 16:58:16 -08:00
#define NBLOOPS 6
#define TIMELOOP_S 2
2015-01-23 16:58:16 -08:00
#define KNUTH 2654435761U
#define MAX_MEM (1984 MB)
2015-02-10 23:34:50 -08:00
#define COMPRESSIBILITY_DEFAULT 0.50
static const size_t g_sampleSize = 10000000;
2015-01-23 16:58:16 -08:00
2016-03-15 12:47:23 -07:00
/*_************************************
2015-01-23 16:58:16 -08:00
* Macros
**************************************/
#define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
2016-03-15 12:47:23 -07:00
/*_************************************
2015-01-23 16:58:16 -08:00
* Benchmark Parameters
**************************************/
static U32 g_nbIterations = NBLOOPS;
2015-02-10 23:34:50 -08:00
static double g_compressibility = COMPRESSIBILITY_DEFAULT;
2015-01-23 16:58:16 -08:00
static void BMK_SetNbIterations(U32 nbLoops)
2015-01-23 16:58:16 -08:00
{
g_nbIterations = nbLoops;
DISPLAY("- %i iterations -\n", g_nbIterations);
2015-01-23 16:58:16 -08:00
}
2016-03-15 12:47:23 -07:00
/*_*******************************************************
2015-01-23 16:58:16 -08:00
* Private functions
*********************************************************/
static size_t BMK_findMaxMem(U64 requiredMem)
{
size_t const step = 64 MB;
2016-03-15 12:47:23 -07:00
void* testmem = NULL;
2015-01-23 16:58:16 -08:00
requiredMem = (((requiredMem >> 26) + 1) << 26);
if (requiredMem > MAX_MEM) requiredMem = MAX_MEM;
requiredMem += step;
do {
2016-03-15 12:47:23 -07:00
testmem = malloc ((size_t)requiredMem);
2015-01-23 16:58:16 -08:00
requiredMem -= step;
} while (!testmem);
2015-01-23 16:58:16 -08:00
free (testmem);
return (size_t) requiredMem;
2015-01-23 16:58:16 -08:00
}
2016-03-15 12:47:23 -07:00
/*_*******************************************************
2015-01-23 16:58:16 -08:00
* Benchmark wrappers
*********************************************************/
2016-03-15 12:47:23 -07:00
typedef struct {
2016-07-23 07:31:49 -07:00
blockType_e blockType;
2015-01-23 16:58:16 -08:00
U32 unusedBits;
U32 origSize;
} blockProperties_t;
size_t local_ZSTD_compress(void* dst, size_t dstSize, void* buff2, const void* src, size_t srcSize)
{
(void)buff2;
return ZSTD_compress(dst, dstSize, src, srcSize, 1);
2015-01-23 16:58:16 -08:00
}
static size_t g_cSize = 0;
2015-01-23 16:58:16 -08:00
size_t local_ZSTD_decompress(void* dst, size_t dstSize, void* buff2, const void* src, size_t srcSize)
{
(void)src; (void)srcSize;
return ZSTD_decompress(dst, dstSize, buff2, g_cSize);
}
2016-11-21 04:58:58 -08:00
static ZSTD_DCtx* g_zdc = NULL;
#ifndef ZSTD_DLL_IMPORT
2015-11-12 07:00:04 -08:00
extern size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* ctx, const void* src, size_t srcSize);
2015-01-23 16:58:16 -08:00
size_t local_ZSTD_decodeLiteralsBlock(void* dst, size_t dstSize, void* buff2, const void* src, size_t srcSize)
{
2015-10-18 14:18:32 -07:00
(void)src; (void)srcSize; (void)dst; (void)dstSize;
return ZSTD_decodeLiteralsBlock((ZSTD_DCtx*)g_zdc, buff2, g_cSize);
2015-01-23 16:58:16 -08:00
}
2016-03-15 12:47:23 -07:00
extern size_t ZSTD_getcBlockSize(const void* src, size_t srcSize, blockProperties_t* bpPtr);
2016-09-13 08:33:47 -07:00
extern size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeq, const void* src, size_t srcSize);
2015-01-23 16:58:16 -08:00
size_t local_ZSTD_decodeSeqHeaders(void* dst, size_t dstSize, void* buff2, const void* src, size_t srcSize)
{
int nbSeq;
2015-01-23 16:58:16 -08:00
(void)src; (void)srcSize; (void)dst; (void)dstSize;
2016-09-13 08:33:47 -07:00
return ZSTD_decodeSeqHeaders(g_zdc, &nbSeq, buff2, g_cSize);
2015-01-23 16:58:16 -08:00
}
2016-11-15 09:05:46 -08:00
#endif
2015-01-23 16:58:16 -08:00
static ZSTD_CStream* g_cstream= NULL;
size_t local_ZSTD_compressStream(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
2016-03-15 12:47:23 -07:00
{
ZSTD_outBuffer buffOut;
ZSTD_inBuffer buffIn;
2016-03-15 12:47:23 -07:00
(void)buff2;
ZSTD_initCStream(g_cstream, 1);
buffOut.dst = dst;
buffOut.size = dstCapacity;
buffOut.pos = 0;
buffIn.src = src;
buffIn.size = srcSize;
buffIn.pos = 0;
ZSTD_compressStream(g_cstream, &buffOut, &buffIn);
ZSTD_endStream(g_cstream, &buffOut);
return buffOut.pos;
2016-03-15 12:47:23 -07:00
}
static size_t local_ZSTD_compress_generic_end(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
{
ZSTD_outBuffer buffOut;
ZSTD_inBuffer buffIn;
(void)buff2;
ZSTD_CCtx_setParameter(g_cstream, ZSTD_p_compressionLevel, 1);
buffOut.dst = dst;
buffOut.size = dstCapacity;
buffOut.pos = 0;
buffIn.src = src;
buffIn.size = srcSize;
buffIn.pos = 0;
ZSTD_compress_generic(g_cstream, &buffOut, &buffIn, ZSTD_e_end);
return buffOut.pos;
}
static size_t local_ZSTD_compress_generic_continue(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
{
ZSTD_outBuffer buffOut;
ZSTD_inBuffer buffIn;
(void)buff2;
ZSTD_CCtx_setParameter(g_cstream, ZSTD_p_compressionLevel, 1);
buffOut.dst = dst;
buffOut.size = dstCapacity;
buffOut.pos = 0;
buffIn.src = src;
buffIn.size = srcSize;
buffIn.pos = 0;
ZSTD_compress_generic(g_cstream, &buffOut, &buffIn, ZSTD_e_continue);
ZSTD_compress_generic(g_cstream, &buffOut, &buffIn, ZSTD_e_end);
return buffOut.pos;
}
static size_t local_ZSTD_compress_generic_T2_end(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
{
ZSTD_outBuffer buffOut;
ZSTD_inBuffer buffIn;
(void)buff2;
ZSTD_CCtx_setParameter(g_cstream, ZSTD_p_compressionLevel, 1);
ZSTD_CCtx_setParameter(g_cstream, ZSTD_p_nbThreads, 2);
buffOut.dst = dst;
buffOut.size = dstCapacity;
buffOut.pos = 0;
buffIn.src = src;
buffIn.size = srcSize;
buffIn.pos = 0;
while (ZSTD_compress_generic(g_cstream, &buffOut, &buffIn, ZSTD_e_end)) {}
return buffOut.pos;
}
static size_t local_ZSTD_compress_generic_T2_continue(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
{
ZSTD_outBuffer buffOut;
ZSTD_inBuffer buffIn;
(void)buff2;
ZSTD_CCtx_setParameter(g_cstream, ZSTD_p_compressionLevel, 1);
ZSTD_CCtx_setParameter(g_cstream, ZSTD_p_nbThreads, 2);
buffOut.dst = dst;
buffOut.size = dstCapacity;
buffOut.pos = 0;
buffIn.src = src;
buffIn.size = srcSize;
buffIn.pos = 0;
ZSTD_compress_generic(g_cstream, &buffOut, &buffIn, ZSTD_e_continue);
while(ZSTD_compress_generic(g_cstream, &buffOut, &buffIn, ZSTD_e_end)) {}
return buffOut.pos;
}
static ZSTD_DStream* g_dstream= NULL;
static size_t local_ZSTD_decompressStream(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
2016-03-15 12:47:23 -07:00
{
ZSTD_outBuffer buffOut;
ZSTD_inBuffer buffIn;
2016-03-15 12:47:23 -07:00
(void)src; (void)srcSize;
ZSTD_initDStream(g_dstream);
buffOut.dst = dst;
buffOut.size = dstCapacity;
buffOut.pos = 0;
buffIn.src = buff2;
buffIn.size = g_cSize;
buffIn.pos = 0;
ZSTD_decompressStream(g_dstream, &buffOut, &buffIn);
return buffOut.pos;
2016-03-15 12:47:23 -07:00
}
static ZSTD_CCtx* g_zcc = NULL;
#ifndef ZSTD_DLL_IMPORT
size_t local_ZSTD_compressContinue(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
{
(void)buff2;
ZSTD_compressBegin(g_zcc, 1);
2016-07-28 06:29:08 -07:00
return ZSTD_compressEnd(g_zcc, dst, dstCapacity, src, srcSize);
}
2016-12-20 01:17:21 -08:00
#define FIRST_BLOCK_SIZE 8
size_t local_ZSTD_compressContinue_extDict(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
{
BYTE firstBlockBuf[FIRST_BLOCK_SIZE];
(void)buff2;
memcpy(firstBlockBuf, src, FIRST_BLOCK_SIZE);
ZSTD_compressBegin(g_zcc, 1);
{ size_t const compressResult = ZSTD_compressContinue(g_zcc, dst, dstCapacity, firstBlockBuf, FIRST_BLOCK_SIZE);
if (ZSTD_isError(compressResult)) { DISPLAY("local_ZSTD_compressContinue_extDict error : %s\n", ZSTD_getErrorName(compressResult)); return compressResult; }
dst = (BYTE*)dst + compressResult;
dstCapacity -= compressResult;
}
return ZSTD_compressEnd(g_zcc, dst, dstCapacity, (const BYTE*)src + FIRST_BLOCK_SIZE, srcSize - FIRST_BLOCK_SIZE);
}
size_t local_ZSTD_decompressContinue(void* dst, size_t dstCapacity, void* buff2, const void* src, size_t srcSize)
{
size_t regeneratedSize = 0;
const BYTE* ip = (const BYTE*)buff2;
const BYTE* const iend = ip + g_cSize;
BYTE* op = (BYTE*)dst;
size_t remainingCapacity = dstCapacity;
(void)src; (void)srcSize;
ZSTD_decompressBegin(g_zdc);
while (ip < iend) {
size_t const iSize = ZSTD_nextSrcSizeToDecompress(g_zdc);
size_t const decodedSize = ZSTD_decompressContinue(g_zdc, op, remainingCapacity, ip, iSize);
ip += iSize;
regeneratedSize += decodedSize;
op += decodedSize;
remainingCapacity -= decodedSize;
}
return regeneratedSize;
}
2016-11-21 04:58:58 -08:00
#endif
2015-01-23 16:58:16 -08:00
2016-03-15 12:47:23 -07:00
/*_*******************************************************
2015-01-23 16:58:16 -08:00
* Bench functions
*********************************************************/
static size_t benchMem(const void* src, size_t srcSize, U32 benchNb)
2015-01-23 16:58:16 -08:00
{
BYTE* dstBuff;
2016-07-23 07:31:49 -07:00
size_t const dstBuffSize = ZSTD_compressBound(srcSize);
void* buff2;
2015-01-23 16:58:16 -08:00
const char* benchName;
size_t (*benchFunction)(void* dst, size_t dstSize, void* verifBuff, const void* src, size_t srcSize);
double bestTime = 100000000.;
2015-02-10 09:15:20 -08:00
/* Selection */
2015-01-23 16:58:16 -08:00
switch(benchNb)
{
case 1:
benchFunction = local_ZSTD_compress; benchName = "compress(1)";
2015-01-23 16:58:16 -08:00
break;
case 2:
benchFunction = local_ZSTD_decompress; benchName = "decompress";
2015-01-23 16:58:16 -08:00
break;
2016-11-21 04:58:58 -08:00
#ifndef ZSTD_DLL_IMPORT
case 11:
benchFunction = local_ZSTD_compressContinue; benchName = "compressContinue(1)";
break;
case 12:
benchFunction = local_ZSTD_compressContinue_extDict; benchName = "compressContinue_extDict";
2016-12-20 01:17:21 -08:00
break;
case 13:
benchFunction = local_ZSTD_decompressContinue; benchName = "decompressContinue";
break;
2017-03-29 18:51:58 -07:00
case 31:
benchFunction = local_ZSTD_decodeLiteralsBlock; benchName = "decodeLiteralsBlock";
2015-01-23 16:58:16 -08:00
break;
case 32:
benchFunction = local_ZSTD_decodeSeqHeaders; benchName = "decodeSeqHeaders";
2015-01-23 16:58:16 -08:00
break;
2016-11-15 09:05:46 -08:00
#endif
2017-03-29 18:51:58 -07:00
case 41:
benchFunction = local_ZSTD_compressStream; benchName = "compressStream(1)";
2016-03-15 12:47:23 -07:00
break;
case 42:
benchFunction = local_ZSTD_decompressStream; benchName = "decompressStream";
2016-03-15 12:47:23 -07:00
break;
case 51:
benchFunction = local_ZSTD_compress_generic_continue; benchName = "compress_generic, continue";
break;
case 52:
benchFunction = local_ZSTD_compress_generic_end; benchName = "compress_generic, end";
break;
case 61:
benchFunction = local_ZSTD_compress_generic_T2_continue; benchName = "compress_generic, -T2, continue";
break;
case 62:
benchFunction = local_ZSTD_compress_generic_T2_end; benchName = "compress_generic, -T2, end";
break;
2015-01-23 16:58:16 -08:00
default :
return 0;
}
/* Allocation */
2015-06-18 08:43:16 -07:00
dstBuff = (BYTE*)malloc(dstBuffSize);
2016-07-23 07:31:49 -07:00
buff2 = malloc(dstBuffSize);
2016-03-15 12:47:23 -07:00
if ((!dstBuff) || (!buff2)) {
2015-01-23 16:58:16 -08:00
DISPLAY("\nError: not enough memory!\n");
free(dstBuff); free(buff2);
return 12;
}
if (g_zcc==NULL) g_zcc = ZSTD_createCCtx();
if (g_zdc==NULL) g_zdc = ZSTD_createDCtx();
if (g_cstream==NULL) g_cstream = ZSTD_createCStream();
if (g_dstream==NULL) g_dstream = ZSTD_createDStream();
2015-01-23 16:58:16 -08:00
/* Preparation */
switch(benchNb)
{
case 2:
g_cSize = ZSTD_compress(buff2, dstBuffSize, src, srcSize, 1);
2015-01-23 16:58:16 -08:00
break;
2016-11-21 04:58:58 -08:00
#ifndef ZSTD_DLL_IMPORT
2016-12-20 01:17:21 -08:00
case 13 :
g_cSize = ZSTD_compress(buff2, dstBuffSize, src, srcSize, 1);
2015-01-23 16:58:16 -08:00
break;
2015-02-10 09:15:20 -08:00
case 31: /* ZSTD_decodeLiteralsBlock */
{ blockProperties_t bp;
ZSTD_frameHeader zfp;
size_t frameHeaderSize, skippedSize;
g_cSize = ZSTD_compress(dstBuff, dstBuffSize, src, srcSize, 1);
frameHeaderSize = ZSTD_getFrameHeader(&zfp, dstBuff, ZSTD_frameHeaderSize_min);
if (frameHeaderSize==0) frameHeaderSize = ZSTD_frameHeaderSize_min;
ZSTD_getcBlockSize(dstBuff+frameHeaderSize, dstBuffSize, &bp); /* Get 1st block type */
2016-03-15 12:47:23 -07:00
if (bp.blockType != bt_compressed) {
2015-01-24 04:31:55 -08:00
DISPLAY("ZSTD_decodeLiteralsBlock : impossible to test on this sample (not compressible)\n");
2015-11-13 06:08:43 -08:00
goto _cleanOut;
2015-01-24 04:31:55 -08:00
}
2016-07-23 07:31:49 -07:00
skippedSize = frameHeaderSize + ZSTD_blockHeaderSize;
memcpy(buff2, dstBuff+skippedSize, g_cSize-skippedSize);
2015-11-25 05:42:45 -08:00
srcSize = srcSize > 128 KB ? 128 KB : srcSize; /* speed relative to block */
2015-01-23 16:58:16 -08:00
break;
}
2015-02-10 09:15:20 -08:00
case 32: /* ZSTD_decodeSeqHeaders */
{ blockProperties_t bp;
ZSTD_frameHeader zfp;
2015-01-23 16:58:16 -08:00
const BYTE* ip = dstBuff;
const BYTE* iend;
size_t frameHeaderSize, cBlockSize;
2015-11-25 05:42:45 -08:00
ZSTD_compress(dstBuff, dstBuffSize, src, srcSize, 1); /* it would be better to use direct block compression here */
g_cSize = ZSTD_compress(dstBuff, dstBuffSize, src, srcSize, 1);
frameHeaderSize = ZSTD_getFrameHeader(&zfp, dstBuff, ZSTD_frameHeaderSize_min);
if (frameHeaderSize==0) frameHeaderSize = ZSTD_frameHeaderSize_min;
ip += frameHeaderSize; /* Skip frame Header */
cBlockSize = ZSTD_getcBlockSize(ip, dstBuffSize, &bp); /* Get 1st block type */
if (bp.blockType != bt_compressed) {
2015-01-24 04:31:55 -08:00
DISPLAY("ZSTD_decodeSeqHeaders : impossible to test on this sample (not compressible)\n");
2015-11-13 06:08:43 -08:00
goto _cleanOut;
2015-01-24 04:31:55 -08:00
}
2016-07-23 07:31:49 -07:00
iend = ip + ZSTD_blockHeaderSize + cBlockSize; /* End of first block */
ip += ZSTD_blockHeaderSize; /* skip block header */
2016-09-13 08:33:47 -07:00
ZSTD_decompressBegin(g_zdc);
2016-07-23 07:31:49 -07:00
ip += ZSTD_decodeLiteralsBlock(g_zdc, ip, iend-ip); /* skip literal segment */
2015-01-23 16:58:16 -08:00
g_cSize = iend-ip;
2015-11-25 05:42:45 -08:00
memcpy(buff2, ip, g_cSize); /* copy rest of block (it starts by SeqHeader) */
srcSize = srcSize > 128 KB ? 128 KB : srcSize; /* speed relative to block */
2015-01-23 16:58:16 -08:00
break;
}
2016-11-15 10:02:39 -08:00
#else
case 31:
goto _cleanOut;
2016-11-15 09:05:46 -08:00
#endif
2016-03-15 12:47:23 -07:00
case 42 :
g_cSize = ZSTD_compress(buff2, dstBuffSize, src, srcSize, 1);
break;
2015-01-23 16:58:16 -08:00
/* test functions */
2015-11-25 05:42:45 -08:00
/* by convention, test functions can be added > 100 */
2015-01-23 16:58:16 -08:00
default : ;
}
2015-01-24 04:31:55 -08:00
{ size_t i; for (i=0; i<dstBuffSize; i++) dstBuff[i]=(BYTE)i; } /* warming up memory */
{ U32 loopNb;
# define TIME_SEC_MICROSEC (1*1000000ULL) /* 1 second */
U64 const clockLoop = TIMELOOP_S * TIME_SEC_MICROSEC;
UTIL_freq_t ticksPerSecond;
UTIL_initTimer(&ticksPerSecond);
DISPLAY("%2i- %-30.30s : \r", benchNb, benchName);
for (loopNb = 1; loopNb <= g_nbIterations; loopNb++) {
UTIL_time_t clockStart;
size_t benchResult=0;
2017-05-15 17:15:46 -07:00
U32 nbRounds;
UTIL_sleepMilli(1); /* give processor time to other processes */
UTIL_waitForNextTick(ticksPerSecond);
UTIL_getTime(&clockStart);
for (nbRounds=0; UTIL_clockSpanMicro(clockStart, ticksPerSecond) < clockLoop; nbRounds++) {
benchResult = benchFunction(dstBuff, dstBuffSize, buff2, src, srcSize);
if (ZSTD_isError(benchResult)) { DISPLAY("ERROR ! %s() => %s !! \n", benchName, ZSTD_getErrorName(benchResult)); exit(1); }
}
{ U64 const clockSpanMicro = UTIL_clockSpanMicro(clockStart, ticksPerSecond);
double const averageTime = (double)clockSpanMicro / TIME_SEC_MICROSEC / nbRounds;
2017-05-15 17:15:46 -07:00
if (averageTime < bestTime) bestTime = averageTime;
DISPLAY("%2i- %-30.30s : %7.1f MB/s (%9u)\r", loopNb, benchName, (double)srcSize / (1 MB) / bestTime, (U32)benchResult);
} } }
DISPLAY("%2u\n", benchNb);
2015-01-23 16:58:16 -08:00
2015-11-13 06:08:43 -08:00
_cleanOut:
2015-01-23 16:58:16 -08:00
free(dstBuff);
free(buff2);
return 0;
}
static int benchSample(U32 benchNb)
2015-01-23 16:58:16 -08:00
{
size_t const benchedSize = g_sampleSize;
2015-02-10 23:34:50 -08:00
const char* name = "Sample 10MiB";
2015-01-23 16:58:16 -08:00
/* Allocation */
void* origBuff = malloc(benchedSize);
if (!origBuff) { DISPLAY("\nError: not enough memory!\n"); return 12; }
2015-01-23 16:58:16 -08:00
/* Fill buffer */
2015-02-10 23:34:50 -08:00
RDG_genBuffer(origBuff, benchedSize, g_compressibility, 0.0, 0);
2015-01-23 16:58:16 -08:00
/* bench */
DISPLAY("\r%79s\r", "");
DISPLAY(" %s : \n", name);
if (benchNb)
benchMem(origBuff, benchedSize, benchNb);
else
for (benchNb=0; benchNb<100; benchNb++) benchMem(origBuff, benchedSize, benchNb);
free(origBuff);
return 0;
}
static int benchFiles(const char** fileNamesTable, const int nbFiles, U32 benchNb)
2015-01-23 16:58:16 -08:00
{
/* Loop for each file */
int fileIdx;
for (fileIdx=0; fileIdx<nbFiles; fileIdx++) {
const char* inFileName = fileNamesTable[fileIdx];
FILE* inFile = fopen( inFileName, "rb" );
2015-01-23 16:58:16 -08:00
U64 inFileSize;
size_t benchedSize;
void* origBuff;
2015-01-23 16:58:16 -08:00
/* Check file existence */
if (inFile==NULL) { DISPLAY( "Pb opening %s\n", inFileName); return 11; }
2015-01-23 16:58:16 -08:00
2015-12-10 06:51:38 -08:00
/* Memory allocation & restrictions */
2016-04-28 03:23:33 -07:00
inFileSize = UTIL_getFileSize(inFileName);
benchedSize = BMK_findMaxMem(inFileSize*3) / 3;
2015-01-23 16:58:16 -08:00
if ((U64)benchedSize > inFileSize) benchedSize = (size_t)inFileSize;
if (benchedSize < inFileSize)
DISPLAY("Not enough memory for '%s' full size; testing %u MB only...\n", inFileName, (U32)(benchedSize>>20));
2015-01-23 16:58:16 -08:00
/* Alloc */
origBuff = malloc(benchedSize);
if (!origBuff) { DISPLAY("\nError: not enough memory!\n"); fclose(inFile); return 12; }
2015-01-23 16:58:16 -08:00
/* Fill input buffer */
2015-01-23 16:58:16 -08:00
DISPLAY("Loading %s... \r", inFileName);
{
size_t readSize = fread(origBuff, 1, benchedSize, inFile);
fclose(inFile);
if (readSize != benchedSize) {
DISPLAY("\nError: problem reading file '%s' !! \n", inFileName);
free(origBuff);
return 13;
} }
2015-01-23 16:58:16 -08:00
/* bench */
2015-01-23 16:58:16 -08:00
DISPLAY("\r%79s\r", "");
DISPLAY(" %s : \n", inFileName);
if (benchNb)
benchMem(origBuff, benchedSize, benchNb);
else
for (benchNb=0; benchNb<100; benchNb++) benchMem(origBuff, benchedSize, benchNb);
free(origBuff);
2015-01-23 16:58:16 -08:00
}
return 0;
}
static int usage(const char* exename)
2015-01-23 16:58:16 -08:00
{
DISPLAY( "Usage :\n");
DISPLAY( " %s [arg] file1 file2 ... fileX\n", exename);
DISPLAY( "Arguments :\n");
DISPLAY( " -H/-h : Help (this text + advanced options)\n");
return 0;
}
static int usage_advanced(const char* exename)
2015-01-23 16:58:16 -08:00
{
usage(exename);
2015-01-23 16:58:16 -08:00
DISPLAY( "\nAdvanced options :\n");
DISPLAY( " -b# : test only function # \n");
DISPLAY( " -i# : iteration loops [1-9](default : %i)\n", NBLOOPS);
2015-02-10 23:34:50 -08:00
DISPLAY( " -P# : sample compressibility (default : %.1f%%)\n", COMPRESSIBILITY_DEFAULT * 100);
2015-01-23 16:58:16 -08:00
return 0;
}
static int badusage(const char* exename)
2015-01-23 16:58:16 -08:00
{
DISPLAY("Wrong parameters\n");
usage(exename);
return 1;
2015-01-23 16:58:16 -08:00
}
int main(int argc, const char** argv)
2015-01-23 16:58:16 -08:00
{
int i, filenamesStart=0, result;
const char* exename = argv[0];
const char* input_filename = NULL;
2015-01-23 16:58:16 -08:00
U32 benchNb = 0, main_pause = 0;
DISPLAY(WELCOME_MESSAGE);
if (argc<1) return badusage(exename);
2015-01-23 16:58:16 -08:00
for(i=1; i<argc; i++) {
const char* argument = argv[i];
if(!argument) continue; /* Protection if argument empty */
2015-01-23 16:58:16 -08:00
/* Commands (note : aggregated commands are allowed) */
if (argument[0]=='-') {
2015-01-23 16:58:16 -08:00
while (argument[1]!=0) {
argument++;
2015-01-23 16:58:16 -08:00
switch(argument[0])
{
2015-02-10 23:34:50 -08:00
/* Display help on usage */
case 'h':
case 'H': return usage_advanced(exename);
2015-01-23 16:58:16 -08:00
2015-02-10 23:34:50 -08:00
/* Pause at the end (hidden option) */
2015-01-23 16:58:16 -08:00
case 'p': main_pause = 1; break;
2015-02-10 23:34:50 -08:00
/* Select specific algorithm to bench */
2015-01-23 16:58:16 -08:00
case 'b':
benchNb = 0;
while ((argument[1]>= '0') && (argument[1]<= '9')) {
2015-01-23 16:58:16 -08:00
benchNb *= 10;
benchNb += argument[1] - '0';
argument++;
}
break;
2015-02-10 23:34:50 -08:00
/* Modify Nb Iterations */
2015-01-23 16:58:16 -08:00
case 'i':
if ((argument[1] >='0') && (argument[1] <='9')) {
2015-01-23 16:58:16 -08:00
int iters = argument[1] - '0';
BMK_SetNbIterations(iters);
argument++;
}
break;
/* Select compressibility of synthetic sample */
2015-02-10 23:34:50 -08:00
case 'P':
{ U32 proba32 = 0;
while ((argument[1]>= '0') && (argument[1]<= '9')) {
2015-02-10 23:34:50 -08:00
proba32 *= 10;
proba32 += argument[1] - '0';
argument++;
}
g_compressibility = (double)proba32 / 100.;
}
break;
/* Unknown command */
default : return badusage(exename);
2015-01-23 16:58:16 -08:00
}
}
continue;
}
2015-02-10 23:34:50 -08:00
/* first provided filename is input */
2015-01-23 16:58:16 -08:00
if (!input_filename) { input_filename=argument; filenamesStart=i; continue; }
}
if (filenamesStart==0) /* no input file */
2015-01-23 16:58:16 -08:00
result = benchSample(benchNb);
else
result = benchFiles(argv+filenamesStart, argc-filenamesStart, benchNb);
2015-01-23 16:58:16 -08:00
if (main_pause) { int unused; printf("press enter...\n"); unused = getchar(); (void)unused; }
2015-01-23 16:58:16 -08:00
return result;
}