2015-01-23 16:58:16 -08:00
|
|
|
/*
|
2016-04-09 07:17:18 -07:00
|
|
|
bench.c - open-source compression benchmark module
|
|
|
|
Copyright (C) Yann Collet 2012-2016
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
GPL v2 License
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
You can contact the author at :
|
2016-04-09 07:17:18 -07:00
|
|
|
- zstd homepage : http://www.zstd.net
|
2015-01-23 16:58:16 -08:00
|
|
|
- zstd source repository : https://github.com/Cyan4973/zstd
|
|
|
|
*/
|
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* *************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Includes
|
2015-10-22 07:31:46 -07:00
|
|
|
***************************************/
|
2016-05-10 05:22:55 -07:00
|
|
|
#include "util.h" /* Compiler options, UTIL_GetFileSize, UTIL_HAS_CREATEFILELIST, UTIL_sleep */
|
2015-01-23 16:58:16 -08:00
|
|
|
#include <stdlib.h> /* malloc, free */
|
|
|
|
#include <string.h> /* memset */
|
2015-10-22 08:55:40 -07:00
|
|
|
#include <stdio.h> /* fprintf, fopen, ftello64 */
|
2016-03-29 05:52:13 -07:00
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
#include "mem.h"
|
2015-12-17 16:26:48 -08:00
|
|
|
#include "zstd_static.h"
|
2016-04-28 03:23:33 -07:00
|
|
|
#include "datagen.h" /* RDG_genBuffer */
|
2015-01-23 16:58:16 -08:00
|
|
|
#include "xxhash.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* *************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Constants
|
2015-10-22 07:31:46 -07:00
|
|
|
***************************************/
|
2016-03-14 07:59:04 -07:00
|
|
|
#ifndef ZSTD_VERSION
|
|
|
|
# define ZSTD_VERSION ""
|
|
|
|
#endif
|
|
|
|
|
2016-04-28 04:16:01 -07:00
|
|
|
#define NBLOOPS 3
|
|
|
|
#define TIMELOOP_MICROSEC 1*1000000ULL /* 1 second */
|
|
|
|
#define ACTIVEPERIOD_MICROSEC 70*1000000ULL /* 70 seconds */
|
|
|
|
#define COOLPERIOD_SEC 10
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
#define KB *(1 <<10)
|
|
|
|
#define MB *(1 <<20)
|
|
|
|
#define GB *(1U<<30)
|
|
|
|
|
2015-11-30 16:31:17 -08:00
|
|
|
static const size_t maxMemory = (sizeof(size_t)==4) ? (2 GB - 64 MB) : (size_t)(1ULL << ((sizeof(size_t)*8)-31));
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
static U32 g_compressibilityDefault = 50;
|
|
|
|
|
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* *************************************
|
2015-12-15 17:37:24 -08:00
|
|
|
* console display
|
2015-10-22 07:31:46 -07:00
|
|
|
***************************************/
|
2015-12-15 17:37:24 -08:00
|
|
|
#define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
|
|
|
|
#define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
|
|
|
|
static U32 g_displayLevel = 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
|
|
|
|
|
|
|
|
|
|
|
|
/* *************************************
|
|
|
|
* Exceptions
|
|
|
|
***************************************/
|
|
|
|
#ifndef DEBUG
|
|
|
|
# define DEBUG 0
|
|
|
|
#endif
|
|
|
|
#define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__);
|
|
|
|
#define EXM_THROW(error, ...) \
|
|
|
|
{ \
|
|
|
|
DEBUGOUTPUT("Error defined at %s, line %i : \n", __FILE__, __LINE__); \
|
|
|
|
DISPLAYLEVEL(1, "Error %i : ", error); \
|
|
|
|
DISPLAYLEVEL(1, __VA_ARGS__); \
|
|
|
|
DISPLAYLEVEL(1, "\n"); \
|
|
|
|
exit(error); \
|
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* *************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Benchmark Parameters
|
2015-10-22 07:31:46 -07:00
|
|
|
***************************************/
|
2016-03-17 11:51:02 -07:00
|
|
|
static U32 g_nbIterations = NBLOOPS;
|
2015-10-21 00:22:25 -07:00
|
|
|
static size_t g_blockSize = 0;
|
2016-03-23 12:30:26 -07:00
|
|
|
int g_additionalParam = 0;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-14 04:48:51 -07:00
|
|
|
void BMK_setNotificationLevel(unsigned level) { g_displayLevel=level; }
|
|
|
|
|
2016-03-23 12:30:26 -07:00
|
|
|
void BMK_setAdditionalParam(int additionalParam) { g_additionalParam=additionalParam; }
|
|
|
|
|
2016-03-17 11:51:02 -07:00
|
|
|
void BMK_SetNbIterations(unsigned nbLoops)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2016-03-17 11:51:02 -07:00
|
|
|
g_nbIterations = nbLoops;
|
2016-03-22 06:38:34 -07:00
|
|
|
DISPLAYLEVEL(2, "- %i iterations -\n", g_nbIterations);
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
|
|
|
|
2015-10-21 00:22:25 -07:00
|
|
|
void BMK_SetBlockSize(size_t blockSize)
|
|
|
|
{
|
|
|
|
g_blockSize = blockSize;
|
2016-03-14 04:48:51 -07:00
|
|
|
DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
|
2015-10-21 00:22:25 -07:00
|
|
|
}
|
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* ********************************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Bench functions
|
2015-10-22 07:31:46 -07:00
|
|
|
**********************************************************/
|
2015-10-21 00:22:25 -07:00
|
|
|
typedef struct
|
|
|
|
{
|
2015-12-15 17:37:24 -08:00
|
|
|
const char* srcPtr;
|
2015-10-21 00:22:25 -07:00
|
|
|
size_t srcSize;
|
|
|
|
char* cPtr;
|
|
|
|
size_t cRoom;
|
|
|
|
size_t cSize;
|
|
|
|
char* resPtr;
|
|
|
|
size_t resSize;
|
|
|
|
} blockParam_t;
|
|
|
|
|
2016-03-14 04:48:51 -07:00
|
|
|
typedef struct
|
|
|
|
{
|
2016-03-14 05:13:42 -07:00
|
|
|
double ratio;
|
2016-03-14 04:48:51 -07:00
|
|
|
size_t cSize;
|
2016-03-14 05:13:42 -07:00
|
|
|
double cSpeed;
|
|
|
|
double dSpeed;
|
2016-03-14 04:48:51 -07:00
|
|
|
} benchResult_t;
|
|
|
|
|
2016-04-09 07:17:18 -07:00
|
|
|
|
2015-10-31 04:57:14 -07:00
|
|
|
#define MIN(a,b) ((a)<(b) ? (a) : (b))
|
2016-02-02 05:36:49 -08:00
|
|
|
#define MAX(a,b) ((a)>(b) ? (a) : (b))
|
2015-10-21 00:22:25 -07:00
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
static int BMK_benchMem(const void* srcBuffer, size_t srcSize,
|
2016-03-23 04:28:28 -07:00
|
|
|
const char* displayName, int cLevel,
|
2015-12-17 16:26:48 -08:00
|
|
|
const size_t* fileSizes, U32 nbFiles,
|
2016-03-14 04:48:51 -07:00
|
|
|
const void* dictBuffer, size_t dictBufferSize, benchResult_t *result)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2016-04-21 03:18:47 -07:00
|
|
|
size_t const blockSize = (g_blockSize>=32 ? g_blockSize : srcSize) + (!srcSize); /* avoid div by 0 */
|
2016-03-20 16:07:42 -07:00
|
|
|
U32 const maxNbBlocks = (U32) ((srcSize + (blockSize-1)) / blockSize) + nbFiles;
|
2015-12-15 17:37:24 -08:00
|
|
|
blockParam_t* const blockTable = (blockParam_t*) malloc(maxNbBlocks * sizeof(blockParam_t));
|
2016-03-26 09:18:11 -07:00
|
|
|
size_t const maxCompressedSize = ZSTD_compressBound(srcSize) + (maxNbBlocks * 1024); /* add some room for safety */
|
2015-10-21 00:22:25 -07:00
|
|
|
void* const compressedBuffer = malloc(maxCompressedSize);
|
|
|
|
void* const resultBuffer = malloc(srcSize);
|
2016-01-14 10:13:22 -08:00
|
|
|
ZSTD_CCtx* refCtx = ZSTD_createCCtx();
|
2015-12-17 16:26:48 -08:00
|
|
|
ZSTD_CCtx* ctx = ZSTD_createCCtx();
|
2016-01-26 06:58:49 -08:00
|
|
|
ZSTD_DCtx* refDCtx = ZSTD_createDCtx();
|
2015-12-17 16:26:48 -08:00
|
|
|
ZSTD_DCtx* dctx = ZSTD_createDCtx();
|
2016-03-20 07:46:10 -07:00
|
|
|
U32 nbBlocks;
|
2016-04-28 04:16:01 -07:00
|
|
|
UTIL_time_t ticksPerSecond;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-20 07:46:10 -07:00
|
|
|
/* checks */
|
2016-01-26 06:58:49 -08:00
|
|
|
if (!compressedBuffer || !resultBuffer || !blockTable || !refCtx || !ctx || !refDCtx || !dctx)
|
2015-12-15 17:37:24 -08:00
|
|
|
EXM_THROW(31, "not enough memory");
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-20 07:46:10 -07:00
|
|
|
/* init */
|
|
|
|
if (strlen(displayName)>17) displayName += strlen(displayName)-17; /* can only display 17 characters */
|
2016-05-09 07:19:25 -07:00
|
|
|
UTIL_initTimer(&ticksPerSecond);
|
2016-03-29 05:52:13 -07:00
|
|
|
|
2015-10-21 00:22:25 -07:00
|
|
|
/* Init blockTable data */
|
2016-03-20 07:46:10 -07:00
|
|
|
{ const char* srcPtr = (const char*)srcBuffer;
|
2015-10-21 00:22:25 -07:00
|
|
|
char* cPtr = (char*)compressedBuffer;
|
|
|
|
char* resPtr = (char*)resultBuffer;
|
2016-03-17 11:37:33 -07:00
|
|
|
U32 fileNb;
|
2016-03-20 07:46:10 -07:00
|
|
|
for (nbBlocks=0, fileNb=0; fileNb<nbFiles; fileNb++) {
|
2015-12-15 18:01:03 -08:00
|
|
|
size_t remaining = fileSizes[fileNb];
|
2016-03-17 11:37:33 -07:00
|
|
|
U32 const nbBlocksforThisFile = (U32)((remaining + (blockSize-1)) / blockSize);
|
|
|
|
U32 const blockEnd = nbBlocks + nbBlocksforThisFile;
|
2016-01-29 18:14:15 -08:00
|
|
|
for ( ; nbBlocks<blockEnd; nbBlocks++) {
|
2016-03-20 07:46:10 -07:00
|
|
|
size_t const thisBlockSize = MIN(remaining, blockSize);
|
2015-12-15 17:37:24 -08:00
|
|
|
blockTable[nbBlocks].srcPtr = srcPtr;
|
|
|
|
blockTable[nbBlocks].cPtr = cPtr;
|
|
|
|
blockTable[nbBlocks].resPtr = resPtr;
|
|
|
|
blockTable[nbBlocks].srcSize = thisBlockSize;
|
|
|
|
blockTable[nbBlocks].cRoom = ZSTD_compressBound(thisBlockSize);
|
|
|
|
srcPtr += thisBlockSize;
|
|
|
|
cPtr += blockTable[nbBlocks].cRoom;
|
|
|
|
resPtr += thisBlockSize;
|
|
|
|
remaining -= thisBlockSize;
|
2016-01-29 18:14:15 -08:00
|
|
|
} } }
|
2015-10-21 00:22:25 -07:00
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
/* warmimg up memory */
|
2015-11-30 16:31:17 -08:00
|
|
|
RDG_genBuffer(compressedBuffer, maxCompressedSize, 0.10, 0.50, 1);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* Bench */
|
2016-04-15 07:54:11 -07:00
|
|
|
{ U64 fastestC = (U64)(-1LL), fastestD = (U64)(-1LL);
|
2016-03-26 09:18:11 -07:00
|
|
|
U64 const crcOrig = XXH64(srcBuffer, srcSize, 0);
|
2015-01-23 16:58:16 -08:00
|
|
|
U64 crcCheck = 0;
|
2016-04-28 04:16:01 -07:00
|
|
|
UTIL_time_t coolTime;
|
2016-03-20 07:46:10 -07:00
|
|
|
U32 testNb;
|
2016-04-04 03:10:00 -07:00
|
|
|
size_t cSize = 0;
|
|
|
|
double ratio = 0.;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-05-09 07:19:25 -07:00
|
|
|
UTIL_getTime(&coolTime);
|
2016-03-14 04:48:51 -07:00
|
|
|
DISPLAYLEVEL(2, "\r%79s\r", "");
|
2016-03-20 07:46:10 -07:00
|
|
|
for (testNb = 1; testNb <= (g_nbIterations + !g_nbIterations); testNb++) {
|
2016-04-28 04:16:01 -07:00
|
|
|
UTIL_time_t clockStart;
|
|
|
|
U64 clockLoop = g_nbIterations ? TIMELOOP_MICROSEC : 1;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-11 04:41:20 -08:00
|
|
|
/* overheat protection */
|
2016-04-28 04:16:01 -07:00
|
|
|
if (UTIL_clockSpanMicro(coolTime, ticksPerSecond) > ACTIVEPERIOD_MICROSEC) {
|
2016-03-11 04:41:20 -08:00
|
|
|
DISPLAY("\rcooling down ... \r");
|
2016-04-28 04:16:01 -07:00
|
|
|
UTIL_sleep(COOLPERIOD_SEC);
|
2016-05-09 07:19:25 -07:00
|
|
|
UTIL_getTime(&coolTime);
|
2016-03-11 04:41:20 -08:00
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* Compression */
|
2016-03-22 06:38:34 -07:00
|
|
|
DISPLAYLEVEL(2, "%2i-%-17.17s :%10u ->\r", testNb, displayName, (U32)srcSize);
|
2016-03-17 11:37:33 -07:00
|
|
|
memset(compressedBuffer, 0xE5, maxCompressedSize); /* warm up and erase result buffer */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-04-28 04:16:01 -07:00
|
|
|
UTIL_sleepMilli(1); /* give processor time to other processes */
|
|
|
|
UTIL_waitForNextTick(ticksPerSecond);
|
2016-05-09 07:19:25 -07:00
|
|
|
UTIL_getTime(&clockStart);
|
2016-03-20 07:46:10 -07:00
|
|
|
|
2016-04-19 00:37:59 -07:00
|
|
|
{ U32 nbLoops = 0;
|
|
|
|
do {
|
2016-03-25 17:48:27 -07:00
|
|
|
U32 blockNb;
|
2016-04-14 04:43:51 -07:00
|
|
|
{ ZSTD_parameters params;
|
|
|
|
params.cParams = ZSTD_getCParams(cLevel, blockSize, dictBufferSize);
|
|
|
|
params.fParams.contentSizeFlag = 1;
|
|
|
|
ZSTD_adjustCParams(¶ms.cParams, blockSize, dictBufferSize);
|
|
|
|
{ size_t const initResult = ZSTD_compressBegin_advanced(refCtx, dictBuffer, dictBufferSize, params, blockSize);
|
|
|
|
if (ZSTD_isError(initResult)) break;
|
|
|
|
} }
|
2016-03-25 17:48:27 -07:00
|
|
|
for (blockNb=0; blockNb<nbBlocks; blockNb++) {
|
|
|
|
size_t const rSize = ZSTD_compress_usingPreparedCCtx(ctx, refCtx,
|
|
|
|
blockTable[blockNb].cPtr, blockTable[blockNb].cRoom,
|
|
|
|
blockTable[blockNb].srcPtr,blockTable[blockNb].srcSize);
|
|
|
|
if (ZSTD_isError(rSize)) EXM_THROW(1, "ZSTD_compress_usingPreparedCCtx() failed : %s", ZSTD_getErrorName(rSize));
|
|
|
|
blockTable[blockNb].cSize = rSize;
|
2016-04-19 00:37:59 -07:00
|
|
|
}
|
|
|
|
nbLoops++;
|
2016-04-28 04:16:01 -07:00
|
|
|
} while (UTIL_clockSpanMicro(clockStart, ticksPerSecond) < clockLoop);
|
|
|
|
{ U64 const clockSpan = UTIL_clockSpanMicro(clockStart, ticksPerSecond);
|
2016-04-15 07:54:11 -07:00
|
|
|
if (clockSpan < fastestC*nbLoops) fastestC = clockSpan / nbLoops;
|
2016-03-20 07:46:10 -07:00
|
|
|
} }
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-21 00:22:25 -07:00
|
|
|
cSize = 0;
|
2016-03-20 07:46:10 -07:00
|
|
|
{ U32 blockNb; for (blockNb=0; blockNb<nbBlocks; blockNb++) cSize += blockTable[blockNb].cSize; }
|
2015-10-29 08:49:43 -07:00
|
|
|
ratio = (double)srcSize / (double)cSize;
|
2016-03-22 06:38:34 -07:00
|
|
|
DISPLAYLEVEL(2, "%2i-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s\r",
|
2016-03-20 07:46:10 -07:00
|
|
|
testNb, displayName, (U32)srcSize, (U32)cSize, ratio,
|
2016-03-29 02:17:58 -07:00
|
|
|
(double)srcSize / fastestC );
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-25 17:48:27 -07:00
|
|
|
(void)fastestD; (void)crcOrig; /* unused when decompression disabled */
|
2016-01-30 15:58:06 -08:00
|
|
|
#if 1
|
2015-01-23 16:58:16 -08:00
|
|
|
/* Decompression */
|
2016-01-26 06:58:49 -08:00
|
|
|
memset(resultBuffer, 0xD6, srcSize); /* warm result buffer */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-04-28 04:16:01 -07:00
|
|
|
UTIL_sleepMilli(1); /* give processor time to other processes */
|
|
|
|
UTIL_waitForNextTick(ticksPerSecond);
|
2016-05-09 07:19:25 -07:00
|
|
|
UTIL_getTime(&clockStart);
|
2016-01-26 06:58:49 -08:00
|
|
|
|
2016-04-19 00:37:59 -07:00
|
|
|
{ U32 nbLoops = 0;
|
|
|
|
do {
|
2016-03-25 17:48:27 -07:00
|
|
|
U32 blockNb;
|
|
|
|
ZSTD_decompressBegin_usingDict(refDCtx, dictBuffer, dictBufferSize);
|
|
|
|
for (blockNb=0; blockNb<nbBlocks; blockNb++) {
|
|
|
|
size_t const regenSize = ZSTD_decompress_usingPreparedDCtx(dctx, refDCtx,
|
|
|
|
blockTable[blockNb].resPtr, blockTable[blockNb].srcSize,
|
|
|
|
blockTable[blockNb].cPtr, blockTable[blockNb].cSize);
|
|
|
|
if (ZSTD_isError(regenSize)) {
|
|
|
|
DISPLAY("ZSTD_decompress_usingPreparedDCtx() failed on block %u : %s \n",
|
|
|
|
blockNb, ZSTD_getErrorName(regenSize));
|
2016-04-04 03:10:00 -07:00
|
|
|
clockLoop = 0; /* force immediate test end */
|
2016-03-25 17:48:27 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
blockTable[blockNb].resSize = regenSize;
|
2016-04-19 00:37:59 -07:00
|
|
|
}
|
|
|
|
nbLoops++;
|
2016-04-28 04:16:01 -07:00
|
|
|
} while (UTIL_clockSpanMicro(clockStart, ticksPerSecond) < clockLoop);
|
|
|
|
{ U64 const clockSpan = UTIL_clockSpanMicro(clockStart, ticksPerSecond);
|
2016-04-15 07:54:11 -07:00
|
|
|
if (clockSpan < fastestD*nbLoops) fastestD = clockSpan / nbLoops;
|
2016-01-25 18:14:20 -08:00
|
|
|
} }
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-22 06:38:34 -07:00
|
|
|
DISPLAYLEVEL(2, "%2i-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s ,%6.1f MB/s\r",
|
2016-03-20 07:46:10 -07:00
|
|
|
testNb, displayName, (U32)srcSize, (U32)cSize, ratio,
|
2016-03-29 02:17:58 -07:00
|
|
|
(double)srcSize / fastestC,
|
|
|
|
(double)srcSize / fastestD );
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* CRC Checking */
|
2016-04-04 03:10:00 -07:00
|
|
|
{ crcCheck = XXH64(resultBuffer, srcSize, 0);
|
2016-03-25 17:48:27 -07:00
|
|
|
if (crcOrig!=crcCheck) {
|
|
|
|
size_t u;
|
|
|
|
DISPLAY("!!! WARNING !!! %14s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOrig, (unsigned)crcCheck);
|
|
|
|
for (u=0; u<srcSize; u++) {
|
|
|
|
if (((const BYTE*)srcBuffer)[u] != ((const BYTE*)resultBuffer)[u]) {
|
|
|
|
U32 segNb, bNb, pos;
|
|
|
|
size_t bacc = 0;
|
|
|
|
DISPLAY("Decoding error at pos %u ", (U32)u);
|
|
|
|
for (segNb = 0; segNb < nbBlocks; segNb++) {
|
|
|
|
if (bacc + blockTable[segNb].srcSize > u) break;
|
|
|
|
bacc += blockTable[segNb].srcSize;
|
|
|
|
}
|
|
|
|
pos = (U32)(u - bacc);
|
|
|
|
bNb = pos / (128 KB);
|
|
|
|
DISPLAY("(block %u, sub %u, pos %u) \n", segNb, bNb, pos);
|
|
|
|
break;
|
2016-01-20 17:21:17 -08:00
|
|
|
}
|
2016-03-25 17:48:27 -07:00
|
|
|
if (u==srcSize-1) { /* should never happen */
|
|
|
|
DISPLAY("no difference detected\n");
|
|
|
|
} }
|
|
|
|
break;
|
|
|
|
} } /* CRC Checking */
|
2015-07-25 16:23:57 -07:00
|
|
|
#endif
|
2016-03-20 07:46:10 -07:00
|
|
|
} /* for (testNb = 1; testNb <= (g_nbIterations + !g_nbIterations); testNb++) */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-22 06:38:34 -07:00
|
|
|
if (crcOrig == crcCheck) {
|
2016-03-14 04:48:51 -07:00
|
|
|
result->ratio = ratio;
|
|
|
|
result->cSize = cSize;
|
2016-04-09 07:17:18 -07:00
|
|
|
result->cSpeed = (double)srcSize / fastestC;
|
2016-03-29 02:17:58 -07:00
|
|
|
result->dSpeed = (double)srcSize / fastestD;
|
2016-03-14 04:48:51 -07:00
|
|
|
}
|
2016-03-22 06:38:34 -07:00
|
|
|
DISPLAYLEVEL(2, "%2i#\n", cLevel);
|
2016-03-20 07:46:10 -07:00
|
|
|
} /* Bench */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
/* clean up */
|
2016-05-05 04:10:57 -07:00
|
|
|
free(blockTable);
|
2015-01-23 16:58:16 -08:00
|
|
|
free(compressedBuffer);
|
|
|
|
free(resultBuffer);
|
2016-01-14 10:13:22 -08:00
|
|
|
ZSTD_freeCCtx(refCtx);
|
2015-12-17 16:26:48 -08:00
|
|
|
ZSTD_freeCCtx(ctx);
|
2016-01-26 06:58:49 -08:00
|
|
|
ZSTD_freeDCtx(refDCtx);
|
2015-12-17 16:26:48 -08:00
|
|
|
ZSTD_freeDCtx(dctx);
|
2015-01-23 16:58:16 -08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static size_t BMK_findMaxMem(U64 requiredMem)
|
|
|
|
{
|
2016-03-20 07:46:10 -07:00
|
|
|
size_t const step = 64 MB;
|
2015-01-23 16:58:16 -08:00
|
|
|
BYTE* testmem = NULL;
|
|
|
|
|
|
|
|
requiredMem = (((requiredMem >> 26) + 1) << 26);
|
2016-03-20 07:46:10 -07:00
|
|
|
requiredMem += step;
|
2015-11-03 00:49:30 -08:00
|
|
|
if (requiredMem > maxMemory) requiredMem = maxMemory;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-20 07:46:10 -07:00
|
|
|
do {
|
2015-01-23 16:58:16 -08:00
|
|
|
testmem = (BYTE*)malloc((size_t)requiredMem);
|
2016-03-20 07:46:10 -07:00
|
|
|
requiredMem -= step;
|
|
|
|
} while (!testmem);
|
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
free(testmem);
|
2016-03-20 07:46:10 -07:00
|
|
|
return (size_t)(requiredMem);
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
static void BMK_benchCLevel(void* srcBuffer, size_t benchedSize,
|
2016-03-23 12:30:26 -07:00
|
|
|
const char* displayName, int cLevel, int cLevelLast,
|
2015-12-17 16:26:48 -08:00
|
|
|
const size_t* fileSizes, unsigned nbFiles,
|
|
|
|
const void* dictBuffer, size_t dictBufferSize)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2016-03-14 04:48:51 -07:00
|
|
|
benchResult_t result, total;
|
2016-03-14 10:10:30 -07:00
|
|
|
int l;
|
|
|
|
|
|
|
|
const char* pch = strrchr(displayName, '\\'); /* Windows */
|
|
|
|
if (!pch) pch = strrchr(displayName, '/'); /* Linux */
|
|
|
|
if (pch) displayName = pch+1;
|
|
|
|
|
2016-04-25 04:09:06 -07:00
|
|
|
SET_HIGH_PRIORITY;
|
|
|
|
|
2016-03-14 10:10:30 -07:00
|
|
|
memset(&result, 0, sizeof(result));
|
|
|
|
memset(&total, 0, sizeof(total));
|
2016-03-14 11:51:11 -07:00
|
|
|
|
2016-03-23 12:30:26 -07:00
|
|
|
if (g_displayLevel == 1 && !g_additionalParam)
|
2016-03-22 06:38:34 -07:00
|
|
|
DISPLAY("bench %s: input %u bytes, %i iterations, %u KB blocks\n", ZSTD_VERSION, (U32)benchedSize, g_nbIterations, (U32)(g_blockSize>>10));
|
2016-03-14 10:10:30 -07:00
|
|
|
|
|
|
|
if (cLevelLast < cLevel) cLevelLast = cLevel;
|
|
|
|
|
2016-04-09 07:17:18 -07:00
|
|
|
for (l=cLevel; l <= cLevelLast; l++) {
|
2016-03-14 10:10:30 -07:00
|
|
|
BMK_benchMem(srcBuffer, benchedSize,
|
2016-03-23 04:28:28 -07:00
|
|
|
displayName, l,
|
2016-03-14 10:10:30 -07:00
|
|
|
fileSizes, nbFiles,
|
|
|
|
dictBuffer, dictBufferSize, &result);
|
|
|
|
if (g_displayLevel == 1) {
|
2016-03-23 12:30:26 -07:00
|
|
|
if (g_additionalParam)
|
2016-04-21 03:18:47 -07:00
|
|
|
DISPLAY("%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s (param=%d)\n", -l, (int)result.cSize, result.ratio, result.cSpeed, result.dSpeed, displayName, g_additionalParam);
|
2016-03-15 04:18:44 -07:00
|
|
|
else
|
2016-04-21 03:18:47 -07:00
|
|
|
DISPLAY("%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", -l, (int)result.cSize, result.ratio, result.cSpeed, result.dSpeed, displayName);
|
2016-03-14 10:10:30 -07:00
|
|
|
total.cSize += result.cSize;
|
|
|
|
total.cSpeed += result.cSpeed;
|
|
|
|
total.dSpeed += result.dSpeed;
|
|
|
|
total.ratio += result.ratio;
|
2016-04-09 07:17:18 -07:00
|
|
|
} }
|
|
|
|
if (g_displayLevel == 1 && cLevelLast > cLevel) {
|
2016-03-14 10:10:30 -07:00
|
|
|
total.cSize /= 1+cLevelLast-cLevel;
|
|
|
|
total.cSpeed /= 1+cLevelLast-cLevel;
|
|
|
|
total.dSpeed /= 1+cLevelLast-cLevel;
|
|
|
|
total.ratio /= 1+cLevelLast-cLevel;
|
2016-04-21 03:18:47 -07:00
|
|
|
DISPLAY("avg%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", (int)total.cSize, total.ratio, total.cSpeed, total.dSpeed, displayName);
|
2016-03-14 10:10:30 -07:00
|
|
|
}
|
2015-12-15 17:37:24 -08:00
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
|
2016-03-25 17:48:27 -07:00
|
|
|
/*! BMK_loadFiles() :
|
|
|
|
Loads `buffer` with content of files listed within `fileNamesTable`.
|
|
|
|
At most, fills `buffer` entirely */
|
2015-12-15 18:01:03 -08:00
|
|
|
static void BMK_loadFiles(void* buffer, size_t bufferSize,
|
|
|
|
size_t* fileSizes,
|
2016-03-25 17:48:27 -07:00
|
|
|
const char** fileNamesTable, unsigned nbFiles)
|
2015-12-15 17:37:24 -08:00
|
|
|
{
|
2016-04-13 01:48:04 -07:00
|
|
|
size_t pos = 0, totalSize = 0;
|
2016-04-25 04:09:06 -07:00
|
|
|
FILE* f;
|
2016-03-17 11:37:33 -07:00
|
|
|
unsigned n;
|
2016-01-29 18:14:15 -08:00
|
|
|
for (n=0; n<nbFiles; n++) {
|
2016-04-28 03:23:33 -07:00
|
|
|
U64 fileSize = UTIL_getFileSize(fileNamesTable[n]);
|
|
|
|
if (UTIL_isDirectory(fileNamesTable[n])) {
|
2016-04-13 01:48:04 -07:00
|
|
|
DISPLAYLEVEL(2, "Ignoring %s directory... \n", fileNamesTable[n]);
|
2016-04-29 06:19:40 -07:00
|
|
|
fileSizes[n] = 0;
|
2016-04-13 01:48:04 -07:00
|
|
|
continue;
|
|
|
|
}
|
2016-04-25 04:09:06 -07:00
|
|
|
f = fopen(fileNamesTable[n], "rb");
|
2015-12-15 17:37:24 -08:00
|
|
|
if (f==NULL) EXM_THROW(10, "impossible to open file %s", fileNamesTable[n]);
|
|
|
|
DISPLAYLEVEL(2, "Loading %s... \r", fileNamesTable[n]);
|
2016-03-25 17:48:27 -07:00
|
|
|
if (fileSize > bufferSize-pos) fileSize = bufferSize-pos, nbFiles=n; /* buffer too small - stop after this file */
|
|
|
|
{ size_t const readSize = fread(((char*)buffer)+pos, 1, (size_t)fileSize, f);
|
|
|
|
if (readSize != (size_t)fileSize) EXM_THROW(11, "could not read %s", fileNamesTable[n]);
|
|
|
|
pos += readSize; }
|
2015-12-15 18:12:31 -08:00
|
|
|
fileSizes[n] = (size_t)fileSize;
|
2016-04-13 01:48:04 -07:00
|
|
|
totalSize += (size_t)fileSize;
|
2015-12-15 17:37:24 -08:00
|
|
|
fclose(f);
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
2016-05-01 01:26:30 -07:00
|
|
|
|
2016-04-13 01:48:04 -07:00
|
|
|
if (totalSize == 0) EXM_THROW(12, "no data to bench");
|
2015-12-15 17:37:24 -08:00
|
|
|
}
|
|
|
|
|
2015-12-17 16:26:48 -08:00
|
|
|
static void BMK_benchFileTable(const char** fileNamesTable, unsigned nbFiles,
|
2016-03-23 12:30:26 -07:00
|
|
|
const char* dictFileName, int cLevel, int cLevelLast)
|
2015-12-15 17:37:24 -08:00
|
|
|
{
|
|
|
|
void* srcBuffer;
|
|
|
|
size_t benchedSize;
|
2015-12-17 16:26:48 -08:00
|
|
|
void* dictBuffer = NULL;
|
|
|
|
size_t dictBufferSize = 0;
|
|
|
|
size_t* fileSizes = (size_t*)malloc(nbFiles * sizeof(size_t));
|
2016-04-28 07:50:13 -07:00
|
|
|
U64 totalSizeToLoad = UTIL_getTotalFileSize(fileNamesTable, nbFiles);
|
2015-12-15 17:37:24 -08:00
|
|
|
char mfName[20] = {0};
|
|
|
|
const char* displayName = NULL;
|
|
|
|
|
2015-12-17 16:26:48 -08:00
|
|
|
if (!fileSizes) EXM_THROW(12, "not enough memory for fileSizes");
|
|
|
|
|
|
|
|
/* Load dictionary */
|
2016-01-29 18:14:15 -08:00
|
|
|
if (dictFileName != NULL) {
|
2016-04-28 03:23:33 -07:00
|
|
|
U64 dictFileSize = UTIL_getFileSize(dictFileName);
|
2015-12-17 16:26:48 -08:00
|
|
|
if (dictFileSize > 64 MB) EXM_THROW(10, "dictionary file %s too large", dictFileName);
|
|
|
|
dictBufferSize = (size_t)dictFileSize;
|
|
|
|
dictBuffer = malloc(dictBufferSize);
|
|
|
|
if (dictBuffer==NULL) EXM_THROW(11, "not enough memory for dictionary (%u bytes)", (U32)dictBufferSize);
|
|
|
|
BMK_loadFiles(dictBuffer, dictBufferSize, fileSizes, &dictFileName, 1);
|
|
|
|
}
|
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
/* Memory allocation & restrictions */
|
|
|
|
benchedSize = BMK_findMaxMem(totalSizeToLoad * 3) / 3;
|
|
|
|
if ((U64)benchedSize > totalSizeToLoad) benchedSize = (size_t)totalSizeToLoad;
|
|
|
|
if (benchedSize < totalSizeToLoad)
|
|
|
|
DISPLAY("Not enough memory; testing %u MB only...\n", (U32)(benchedSize >> 20));
|
|
|
|
srcBuffer = malloc(benchedSize);
|
|
|
|
if (!srcBuffer) EXM_THROW(12, "not enough memory");
|
|
|
|
|
|
|
|
/* Load input buffer */
|
2015-12-15 18:01:03 -08:00
|
|
|
BMK_loadFiles(srcBuffer, benchedSize, fileSizes, fileNamesTable, nbFiles);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-22 08:55:40 -07:00
|
|
|
/* Bench */
|
2015-12-15 17:37:24 -08:00
|
|
|
snprintf (mfName, sizeof(mfName), " %u files", nbFiles);
|
|
|
|
if (nbFiles > 1) displayName = mfName;
|
|
|
|
else displayName = fileNamesTable[0];
|
|
|
|
|
2015-12-17 16:26:48 -08:00
|
|
|
BMK_benchCLevel(srcBuffer, benchedSize,
|
2016-03-23 12:30:26 -07:00
|
|
|
displayName, cLevel, cLevelLast,
|
2015-12-17 16:26:48 -08:00
|
|
|
fileSizes, nbFiles,
|
|
|
|
dictBuffer, dictBufferSize);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-22 08:55:40 -07:00
|
|
|
/* clean up */
|
2015-01-23 16:58:16 -08:00
|
|
|
free(srcBuffer);
|
2015-12-17 16:26:48 -08:00
|
|
|
free(dictBuffer);
|
2015-12-15 18:01:03 -08:00
|
|
|
free(fileSizes);
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-23 12:30:26 -07:00
|
|
|
static void BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2015-12-15 17:37:24 -08:00
|
|
|
char name[20] = {0};
|
2015-01-23 16:58:16 -08:00
|
|
|
size_t benchedSize = 10000000;
|
|
|
|
void* srcBuffer = malloc(benchedSize);
|
|
|
|
|
|
|
|
/* Memory allocation */
|
2015-12-15 17:37:24 -08:00
|
|
|
if (!srcBuffer) EXM_THROW(21, "not enough memory");
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* Fill input buffer */
|
2015-11-30 16:31:17 -08:00
|
|
|
RDG_genBuffer(srcBuffer, benchedSize, compressibility, 0.0, 0);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* Bench */
|
2015-12-15 17:37:24 -08:00
|
|
|
snprintf (name, sizeof(name), "Synthetic %2u%%", (unsigned)(compressibility*100));
|
2016-03-23 12:30:26 -07:00
|
|
|
BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1, NULL, 0);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
/* clean up */
|
2015-01-23 16:58:16 -08:00
|
|
|
free(srcBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-17 16:26:48 -08:00
|
|
|
int BMK_benchFiles(const char** fileNamesTable, unsigned nbFiles,
|
2016-05-10 05:22:55 -07:00
|
|
|
const char* dictFileName, int cLevel, int cLevelLast, int recursive)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2016-03-17 11:37:33 -07:00
|
|
|
double const compressibility = (double)g_compressibilityDefault / 100;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
if (nbFiles == 0)
|
2016-03-23 12:30:26 -07:00
|
|
|
BMK_syntheticTest(cLevel, cLevelLast, compressibility);
|
2015-01-23 16:58:16 -08:00
|
|
|
else
|
2016-05-05 02:53:42 -07:00
|
|
|
{
|
|
|
|
#ifdef UTIL_HAS_CREATEFILELIST
|
2016-05-10 05:22:55 -07:00
|
|
|
if (recursive) {
|
|
|
|
char* buf;
|
|
|
|
const char** filenameTable;
|
|
|
|
unsigned i;
|
2016-05-11 05:11:00 -07:00
|
|
|
nbFiles = UTIL_createFileList(fileNamesTable, nbFiles, &filenameTable, &buf);
|
2016-05-10 05:22:55 -07:00
|
|
|
if (filenameTable) {
|
|
|
|
for (i=0; i<nbFiles; i++) DISPLAYLEVEL(3, "%d %s\n", i, filenameTable[i]);
|
|
|
|
BMK_benchFileTable(filenameTable, nbFiles, dictFileName, cLevel, cLevelLast);
|
|
|
|
UTIL_freeFileList(filenameTable, buf);
|
|
|
|
}
|
2016-05-05 02:53:42 -07:00
|
|
|
}
|
2016-05-10 05:22:55 -07:00
|
|
|
else BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel, cLevelLast);
|
2016-05-05 02:53:42 -07:00
|
|
|
#else
|
2016-05-10 05:42:54 -07:00
|
|
|
(void)recursive;
|
2016-03-23 12:30:26 -07:00
|
|
|
BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel, cLevelLast);
|
2016-05-05 02:53:42 -07:00
|
|
|
#endif
|
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|