2017-08-18 16:52:05 -07:00
|
|
|
/*
|
2016-08-30 10:04:33 -07:00
|
|
|
* Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
2017-08-18 16:52:05 -07:00
|
|
|
* This source code is licensed under both the BSD-style license (found in the
|
|
|
|
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
|
|
* in the COPYING file in the root directory of this source tree).
|
2017-09-08 00:09:23 -07:00
|
|
|
* You may select, at your option, one of the above-listed licenses.
|
2016-08-30 10:04:33 -07:00
|
|
|
*/
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
|
2016-12-21 04:23:34 -08:00
|
|
|
|
2017-01-19 16:59:56 -08:00
|
|
|
/* **************************************
|
|
|
|
* Tuning parameters
|
|
|
|
****************************************/
|
|
|
|
#ifndef BMK_TIMETEST_DEFAULT_S /* default minimum time per test */
|
|
|
|
#define BMK_TIMETEST_DEFAULT_S 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2016-12-21 04:23:34 -08:00
|
|
|
/* **************************************
|
|
|
|
* Compiler Warnings
|
|
|
|
****************************************/
|
|
|
|
#ifdef _MSC_VER
|
2018-02-20 14:48:09 -08:00
|
|
|
# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
|
2016-12-21 04:23:34 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
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-12-21 06:08:44 -08:00
|
|
|
#include "platform.h" /* Large Files support */
|
2016-12-21 04:23:34 -08:00
|
|
|
#include "util.h" /* UTIL_getFileSize, UTIL_sleep */
|
2015-01-23 16:58:16 -08:00
|
|
|
#include <stdlib.h> /* malloc, free */
|
|
|
|
#include <string.h> /* memset */
|
2016-12-30 18:31:26 -08:00
|
|
|
#include <stdio.h> /* fprintf, fopen */
|
2018-02-20 14:48:09 -08:00
|
|
|
#include <assert.h> /* assert */
|
2016-03-29 05:52:13 -07:00
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
#include "mem.h"
|
2016-06-04 10:47:02 -07:00
|
|
|
#define ZSTD_STATIC_LINKING_ONLY
|
|
|
|
#include "zstd.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-06-22 06:42:26 -07:00
|
|
|
#ifndef ZSTD_GIT_COMMIT
|
2016-06-22 07:13:25 -07:00
|
|
|
# define ZSTD_GIT_COMMIT_STRING ""
|
|
|
|
#else
|
|
|
|
# define ZSTD_GIT_COMMIT_STRING ZSTD_EXPAND_AND_QUOTE(ZSTD_GIT_COMMIT)
|
2016-06-22 06:42:26 -07:00
|
|
|
#endif
|
|
|
|
|
2018-02-20 14:48:09 -08:00
|
|
|
#define TIMELOOP_MICROSEC (1*1000000ULL) /* 1 second */
|
|
|
|
#define TIMELOOP_NANOSEC (1*1000000000ULL) /* 1 second */
|
|
|
|
#define ACTIVEPERIOD_MICROSEC (70*TIMELOOP_MICROSEC) /* 70 seconds */
|
2016-04-28 04:16:01 -07:00
|
|
|
#define COOLPERIOD_SEC 10
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
#define KB *(1 <<10)
|
|
|
|
#define MB *(1 <<20)
|
|
|
|
#define GB *(1U<<30)
|
|
|
|
|
2016-08-25 16:43:47 -07: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__); }
|
2017-03-23 11:13:52 -07:00
|
|
|
static int g_displayLevel = 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
|
2015-12-15 17:37:24 -08:00
|
|
|
|
2017-11-29 19:11:12 -08:00
|
|
|
static const U64 g_refreshRate = SEC_TO_MICRO / 6;
|
|
|
|
static UTIL_time_t g_displayClock = UTIL_TIME_INITIALIZER;
|
|
|
|
|
|
|
|
#define DISPLAYUPDATE(l, ...) { if (g_displayLevel>=l) { \
|
|
|
|
if ((UTIL_clockSpanMicro(g_displayClock) > g_refreshRate) || (g_displayLevel>=4)) \
|
|
|
|
{ g_displayClock = UTIL_getTime(); DISPLAY(__VA_ARGS__); \
|
|
|
|
if (g_displayLevel>=4) fflush(stderr); } } }
|
2016-08-02 14:48:13 -07:00
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
|
|
|
|
/* *************************************
|
|
|
|
* Exceptions
|
|
|
|
***************************************/
|
|
|
|
#ifndef DEBUG
|
|
|
|
# define DEBUG 0
|
|
|
|
#endif
|
2017-06-19 15:23:19 -07:00
|
|
|
#define DEBUGOUTPUT(...) { if (DEBUG) DISPLAY(__VA_ARGS__); }
|
|
|
|
#define EXM_THROW(error, ...) { \
|
|
|
|
DEBUGOUTPUT("%s: %i: \n", __FILE__, __LINE__); \
|
|
|
|
DISPLAYLEVEL(1, "Error %i : ", error); \
|
|
|
|
DISPLAYLEVEL(1, __VA_ARGS__); \
|
|
|
|
DISPLAYLEVEL(1, " \n"); \
|
|
|
|
exit(error); \
|
2015-12-15 17:37:24 -08: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
|
|
|
* Benchmark Parameters
|
2015-10-22 07:31:46 -07:00
|
|
|
***************************************/
|
2016-12-06 16:49:23 -08:00
|
|
|
static int g_additionalParam = 0;
|
|
|
|
static U32 g_decodeOnly = 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; }
|
|
|
|
|
2017-01-19 16:59:56 -08:00
|
|
|
static U32 g_nbSeconds = BMK_TIMETEST_DEFAULT_S;
|
|
|
|
void BMK_setNbSeconds(unsigned nbSeconds)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2016-11-03 03:38:01 -07:00
|
|
|
g_nbSeconds = nbSeconds;
|
2017-01-19 16:59:56 -08:00
|
|
|
DISPLAYLEVEL(3, "- test >= %u seconds per compression / decompression - \n", g_nbSeconds);
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
|
|
|
|
2017-01-19 16:59:56 -08:00
|
|
|
static size_t g_blockSize = 0;
|
|
|
|
void BMK_setBlockSize(size_t blockSize)
|
2015-10-21 00:22:25 -07:00
|
|
|
{
|
|
|
|
g_blockSize = blockSize;
|
2017-01-19 16:59:56 -08:00
|
|
|
if (g_blockSize) DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
|
2015-10-21 00:22:25 -07:00
|
|
|
}
|
|
|
|
|
2016-12-28 07:11:09 -08:00
|
|
|
void BMK_setDecodeOnlyMode(unsigned decodeFlag) { g_decodeOnly = (decodeFlag>0); }
|
|
|
|
|
2018-02-01 19:29:30 -08:00
|
|
|
static U32 g_nbWorkers = 0;
|
|
|
|
void BMK_setNbWorkers(unsigned nbWorkers) {
|
2017-01-19 16:59:56 -08:00
|
|
|
#ifndef ZSTD_MULTITHREAD
|
2018-02-01 19:29:30 -08:00
|
|
|
if (nbWorkers > 0) DISPLAYLEVEL(2, "Note : multi-threading is disabled \n");
|
2017-01-19 16:59:56 -08:00
|
|
|
#endif
|
2018-02-01 19:29:30 -08:00
|
|
|
g_nbWorkers = nbWorkers;
|
2017-01-19 16:59:56 -08:00
|
|
|
}
|
2017-11-17 00:02:37 -08:00
|
|
|
|
|
|
|
static U32 g_realTime = 0;
|
|
|
|
void BMK_setRealTime(unsigned priority) {
|
|
|
|
g_realTime = (priority>0);
|
|
|
|
}
|
|
|
|
|
2017-11-17 00:22:55 -08:00
|
|
|
static U32 g_separateFiles = 0;
|
|
|
|
void BMK_setSeparateFiles(unsigned separate) {
|
|
|
|
g_separateFiles = (separate>0);
|
|
|
|
}
|
|
|
|
|
2017-07-28 15:51:33 -07:00
|
|
|
static U32 g_ldmFlag = 0;
|
|
|
|
void BMK_setLdmFlag(unsigned ldmFlag) {
|
|
|
|
g_ldmFlag = ldmFlag;
|
|
|
|
}
|
2016-12-26 22:19:36 -08:00
|
|
|
|
2017-09-01 14:52:51 -07:00
|
|
|
static U32 g_ldmMinMatch = 0;
|
|
|
|
void BMK_setLdmMinMatch(unsigned ldmMinMatch) {
|
|
|
|
g_ldmMinMatch = ldmMinMatch;
|
|
|
|
}
|
|
|
|
|
|
|
|
static U32 g_ldmHashLog = 0;
|
|
|
|
void BMK_setLdmHashLog(unsigned ldmHashLog) {
|
|
|
|
g_ldmHashLog = ldmHashLog;
|
|
|
|
}
|
|
|
|
|
2017-09-02 21:10:36 -07:00
|
|
|
#define BMK_LDM_PARAM_NOTSET 9999
|
|
|
|
static U32 g_ldmBucketSizeLog = BMK_LDM_PARAM_NOTSET;
|
|
|
|
void BMK_setLdmBucketSizeLog(unsigned ldmBucketSizeLog) {
|
|
|
|
g_ldmBucketSizeLog = ldmBucketSizeLog;
|
|
|
|
}
|
|
|
|
|
|
|
|
static U32 g_ldmHashEveryLog = BMK_LDM_PARAM_NOTSET;
|
2017-09-01 14:52:51 -07:00
|
|
|
void BMK_setLdmHashEveryLog(unsigned ldmHashEveryLog) {
|
|
|
|
g_ldmHashEveryLog = ldmHashEveryLog;
|
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-12-26 22:19:36 -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
|
|
|
**********************************************************/
|
2016-12-06 16:49:23 -08:00
|
|
|
typedef struct {
|
|
|
|
const void* srcPtr;
|
2015-10-21 00:22:25 -07:00
|
|
|
size_t srcSize;
|
2016-12-06 16:49:23 -08:00
|
|
|
void* cPtr;
|
2015-10-21 00:22:25 -07:00
|
|
|
size_t cRoom;
|
|
|
|
size_t cSize;
|
2016-12-06 16:49:23 -08:00
|
|
|
void* resPtr;
|
2015-10-21 00:22:25 -07:00
|
|
|
size_t resSize;
|
|
|
|
} blockParam_t;
|
|
|
|
|
2016-04-09 07:17:18 -07:00
|
|
|
|
2017-04-13 12:33:45 -07:00
|
|
|
|
2017-04-13 15:35:05 -07:00
|
|
|
#undef MIN
|
|
|
|
#undef MAX
|
|
|
|
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#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-12-13 04:03:41 -08:00
|
|
|
const void* dictBuffer, size_t dictBufferSize,
|
zstd_opt: changed cost formula
There was a flaw in the formula
which compared literal cost with match cost :
at a given position,
a non-null literal suite is going to be part of next sequence,
while if position ends a previous match, to immediately start another match,
next sequence will have a litlength of zero.
A litlength of zero has a non-null cost.
It follows that literals cost should be compared to match cost + litlength==0.
Not doing so gave a structural advantage to matches, which would be selected more often.
I believe that's what led to the creation of the strange heuristic which added a complex cost to matches.
The heuristic was actually compensating.
It was probably created through multiple trials, settling for best outcome on a given scenario (I suspect silesia.tar).
The problem with this heuristic is that it's hard to understand,
and unfortunately, any future change in the parser would impact the way it should be calculated and its effects.
The "proper" formula makes it possible to remove this heuristic.
Now, the problem is : in a head to head comparison, it's sometimes better, sometimes worse.
Note that all differences are small (< 0.01 ratio).
In general, the newer formula is better for smaller files (for example, calgary.tar and enwik7).
I suspect that's because starting statistics are pretty poor (another area of improvement).
However, for silesia.tar specifically, it's worse at level 22 (while being better at level 17, so even compression level has an impact ...).
It's a pity that zstd -22 gets worse on silesia.tar.
That being said, I like that the new code gets rid of strange variables,
which were introducing complexity for any future evolution (faster variants being in mind).
Therefore, in spite of this detrimental side effect, I tend to be in favor of it.
2017-11-28 14:07:03 -08:00
|
|
|
const ZSTD_compressionParameters* const comprParams)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2016-12-06 17:46:49 -08:00
|
|
|
size_t const blockSize = ((g_blockSize>=32 && !g_decodeOnly) ? 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);
|
2016-12-06 16:49:23 -08:00
|
|
|
void* resultBuffer = malloc(srcSize);
|
2016-07-13 05:56:24 -07:00
|
|
|
ZSTD_CCtx* const ctx = ZSTD_createCCtx();
|
|
|
|
ZSTD_DCtx* const dctx = ZSTD_createDCtx();
|
2016-12-06 17:46:49 -08:00
|
|
|
size_t const loadedCompressedSize = srcSize;
|
|
|
|
size_t cSize = 0;
|
|
|
|
double ratio = 0.;
|
2016-03-20 07:46:10 -07:00
|
|
|
U32 nbBlocks;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-20 07:46:10 -07:00
|
|
|
/* checks */
|
2016-06-27 04:39:30 -07:00
|
|
|
if (!compressedBuffer || !resultBuffer || !blockTable || !ctx || !dctx)
|
2016-06-27 06:12:26 -07:00
|
|
|
EXM_THROW(31, "allocation error : not enough memory");
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-20 07:46:10 -07:00
|
|
|
/* init */
|
2017-04-04 15:35:06 -07:00
|
|
|
if (strlen(displayName)>17) displayName += strlen(displayName)-17; /* display last 17 characters */
|
2018-03-12 04:02:57 -07:00
|
|
|
if (g_nbWorkers==1) g_nbWorkers=0; /* prefer synchronous mode */
|
2016-03-29 05:52:13 -07:00
|
|
|
|
2017-03-29 12:10:38 -07:00
|
|
|
if (g_decodeOnly) { /* benchmark only decompression : source must be already compressed */
|
2017-04-04 15:35:06 -07:00
|
|
|
const char* srcPtr = (const char*)srcBuffer;
|
|
|
|
U64 totalDSize64 = 0;
|
2016-12-06 17:46:49 -08:00
|
|
|
U32 fileNb;
|
|
|
|
for (fileNb=0; fileNb<nbFiles; fileNb++) {
|
2017-02-07 13:50:09 -08:00
|
|
|
U64 const fSize64 = ZSTD_findDecompressedSize(srcPtr, fileSizes[fileNb]);
|
2016-12-06 17:46:49 -08:00
|
|
|
if (fSize64==0) EXM_THROW(32, "Impossible to determine original size ");
|
2017-04-04 15:35:06 -07:00
|
|
|
totalDSize64 += fSize64;
|
2016-12-06 17:46:49 -08:00
|
|
|
srcPtr += fileSizes[fileNb];
|
|
|
|
}
|
2017-04-04 15:35:06 -07:00
|
|
|
{ size_t const decodedSize = (size_t)totalDSize64;
|
|
|
|
if (totalDSize64 > decodedSize) EXM_THROW(32, "original size is too large"); /* size_t overflow */
|
2016-12-06 17:46:49 -08:00
|
|
|
free(resultBuffer);
|
|
|
|
resultBuffer = malloc(decodedSize);
|
|
|
|
if (!resultBuffer) EXM_THROW(33, "not enough memory");
|
|
|
|
cSize = srcSize;
|
|
|
|
srcSize = decodedSize;
|
|
|
|
ratio = (double)srcSize / (double)cSize;
|
|
|
|
} }
|
|
|
|
|
2015-10-21 00:22:25 -07:00
|
|
|
/* Init blockTable data */
|
2016-12-06 17:46:49 -08: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-12-06 17:46:49 -08:00
|
|
|
U32 const nbBlocksforThisFile = g_decodeOnly ? 1 : (U32)((remaining + (blockSize-1)) / blockSize);
|
2016-03-17 11:37:33 -07:00
|
|
|
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);
|
2016-12-06 16:49:23 -08:00
|
|
|
blockTable[nbBlocks].srcPtr = (const void*)srcPtr;
|
2015-12-15 17:37:24 -08:00
|
|
|
blockTable[nbBlocks].srcSize = thisBlockSize;
|
2016-12-06 16:49:23 -08:00
|
|
|
blockTable[nbBlocks].cPtr = (void*)cPtr;
|
2016-12-06 17:46:49 -08:00
|
|
|
blockTable[nbBlocks].cRoom = g_decodeOnly ? thisBlockSize : ZSTD_compressBound(thisBlockSize);
|
|
|
|
blockTable[nbBlocks].cSize = blockTable[nbBlocks].cRoom;
|
2016-12-06 16:49:23 -08:00
|
|
|
blockTable[nbBlocks].resPtr = (void*)resPtr;
|
2017-02-07 13:50:09 -08:00
|
|
|
blockTable[nbBlocks].resSize = g_decodeOnly ? (size_t) ZSTD_findDecompressedSize(srcPtr, thisBlockSize) : thisBlockSize;
|
2015-12-15 17:37:24 -08:00
|
|
|
srcPtr += thisBlockSize;
|
|
|
|
cPtr += blockTable[nbBlocks].cRoom;
|
|
|
|
resPtr += thisBlockSize;
|
|
|
|
remaining -= thisBlockSize;
|
2016-12-06 17:46:49 -08:00
|
|
|
} } }
|
2015-10-21 00:22:25 -07:00
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
/* warmimg up memory */
|
2018-03-05 13:50:07 -08:00
|
|
|
if (g_decodeOnly) {
|
|
|
|
memcpy(compressedBuffer, srcBuffer, loadedCompressedSize);
|
|
|
|
} else {
|
|
|
|
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-12-06 16:49:23 -08:00
|
|
|
U64 const crcOrig = g_decodeOnly ? 0 : XXH64(srcBuffer, srcSize, 0);
|
2017-02-21 03:22:05 -08:00
|
|
|
UTIL_time_t coolTime;
|
2018-02-20 14:48:09 -08:00
|
|
|
U64 const maxTime = (g_nbSeconds * TIMELOOP_NANOSEC) + 1;
|
|
|
|
U32 nbDecodeLoops = (U32)((100 MB) / (srcSize+1)) + 1; /* initial conservative speed estimate */
|
|
|
|
U32 nbCompressionLoops = (U32)((2 MB) / (srcSize+1)) + 1; /* initial conservative speed estimate */
|
2016-08-01 04:37:17 -07:00
|
|
|
U64 totalCTime=0, totalDTime=0;
|
2016-12-06 16:49:23 -08:00
|
|
|
U32 cCompleted=g_decodeOnly, dCompleted=0;
|
2016-08-01 04:37:17 -07:00
|
|
|
# define NB_MARKS 4
|
|
|
|
const char* const marks[NB_MARKS] = { " |", " /", " =", "\\" };
|
|
|
|
U32 markNb = 0;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2017-09-12 18:12:46 -07:00
|
|
|
coolTime = UTIL_getTime();
|
2016-03-14 04:48:51 -07:00
|
|
|
DISPLAYLEVEL(2, "\r%79s\r", "");
|
2016-12-06 16:49:23 -08:00
|
|
|
while (!cCompleted || !dCompleted) {
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-03-11 04:41:20 -08:00
|
|
|
/* overheat protection */
|
2017-09-12 18:12:46 -07:00
|
|
|
if (UTIL_clockSpanMicro(coolTime) > ACTIVEPERIOD_MICROSEC) {
|
2016-07-30 16:32:48 -07:00
|
|
|
DISPLAYLEVEL(2, "\rcooling down ... \r");
|
2016-04-28 04:16:01 -07:00
|
|
|
UTIL_sleep(COOLPERIOD_SEC);
|
2017-09-12 18:12:46 -07:00
|
|
|
coolTime = UTIL_getTime();
|
2016-03-11 04:41:20 -08:00
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-12-06 16:49:23 -08:00
|
|
|
if (!g_decodeOnly) {
|
|
|
|
/* Compression */
|
|
|
|
DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize);
|
|
|
|
if (!cCompleted) memset(compressedBuffer, 0xE5, maxCompressedSize); /* warm up and erase result buffer */
|
|
|
|
|
2018-02-20 14:48:09 -08:00
|
|
|
UTIL_sleepMilli(5); /* give processor time to other processes */
|
2017-09-12 18:12:46 -07:00
|
|
|
UTIL_waitForNextTick();
|
2016-12-06 16:49:23 -08:00
|
|
|
|
|
|
|
if (!cCompleted) { /* still some time to do compression tests */
|
|
|
|
U32 nbLoops = 0;
|
2018-02-20 14:48:09 -08:00
|
|
|
UTIL_time_t const clockStart = UTIL_getTime();
|
2018-02-01 19:29:30 -08:00
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_nbWorkers, g_nbWorkers);
|
2017-06-19 18:25:35 -07:00
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_compressionLevel, cLevel);
|
2017-09-02 21:10:36 -07:00
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_enableLongDistanceMatching, g_ldmFlag);
|
2017-09-01 14:52:51 -07:00
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_ldmMinMatch, g_ldmMinMatch);
|
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_ldmHashLog, g_ldmHashLog);
|
2017-09-02 21:10:36 -07:00
|
|
|
if (g_ldmBucketSizeLog != BMK_LDM_PARAM_NOTSET) {
|
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_ldmBucketSizeLog, g_ldmBucketSizeLog);
|
|
|
|
}
|
|
|
|
if (g_ldmHashEveryLog != BMK_LDM_PARAM_NOTSET) {
|
2017-09-01 14:52:51 -07:00
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_ldmHashEveryLog, g_ldmHashEveryLog);
|
|
|
|
}
|
2017-06-19 18:25:35 -07:00
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_windowLog, comprParams->windowLog);
|
2017-12-27 04:32:05 -08:00
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_hashLog, comprParams->hashLog);
|
2017-06-19 18:25:35 -07:00
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_chainLog, comprParams->chainLog);
|
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_searchLog, comprParams->searchLog);
|
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_minMatch, comprParams->searchLength);
|
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_targetLength, comprParams->targetLength);
|
|
|
|
ZSTD_CCtx_setParameter(ctx, ZSTD_p_compressionStrategy, comprParams->strategy);
|
|
|
|
ZSTD_CCtx_loadDictionary(ctx, dictBuffer, dictBufferSize);
|
2018-02-20 14:48:09 -08:00
|
|
|
|
|
|
|
if (!g_nbSeconds) nbCompressionLoops=1;
|
|
|
|
for (nbLoops=0; nbLoops<nbCompressionLoops; nbLoops++) {
|
2016-12-06 16:49:23 -08:00
|
|
|
U32 blockNb;
|
|
|
|
for (blockNb=0; blockNb<nbBlocks; blockNb++) {
|
2017-11-01 13:15:23 -07:00
|
|
|
#if 0 /* direct compression function, for occasional comparison */
|
|
|
|
ZSTD_parameters const params = ZSTD_getParams(cLevel, blockTable[blockNb].srcSize, dictBufferSize);
|
|
|
|
blockTable[blockNb].cSize = ZSTD_compress_advanced(ctx,
|
|
|
|
blockTable[blockNb].cPtr, blockTable[blockNb].cRoom,
|
|
|
|
blockTable[blockNb].srcPtr, blockTable[blockNb].srcSize,
|
|
|
|
dictBuffer, dictBufferSize,
|
|
|
|
params);
|
|
|
|
#else
|
2017-10-19 11:56:14 -07:00
|
|
|
size_t moreToFlush = 1;
|
|
|
|
ZSTD_outBuffer out;
|
|
|
|
ZSTD_inBuffer in;
|
|
|
|
in.src = blockTable[blockNb].srcPtr;
|
|
|
|
in.size = blockTable[blockNb].srcSize;
|
|
|
|
in.pos = 0;
|
|
|
|
out.dst = blockTable[blockNb].cPtr;
|
|
|
|
out.size = blockTable[blockNb].cRoom;
|
|
|
|
out.pos = 0;
|
|
|
|
while (moreToFlush) {
|
|
|
|
moreToFlush = ZSTD_compress_generic(ctx,
|
2017-06-19 18:25:35 -07:00
|
|
|
&out, &in, ZSTD_e_end);
|
2017-10-19 11:56:14 -07:00
|
|
|
if (ZSTD_isError(moreToFlush))
|
2017-06-19 18:25:35 -07:00
|
|
|
EXM_THROW(1, "ZSTD_compress_generic() error : %s",
|
2017-10-19 11:56:14 -07:00
|
|
|
ZSTD_getErrorName(moreToFlush));
|
2017-06-19 18:25:35 -07:00
|
|
|
}
|
2017-10-19 11:56:14 -07:00
|
|
|
blockTable[blockNb].cSize = out.pos;
|
2017-11-01 13:15:23 -07:00
|
|
|
#endif
|
2018-02-20 14:48:09 -08:00
|
|
|
} }
|
|
|
|
{ U64 const loopDuration = UTIL_clockSpanNano(clockStart);
|
|
|
|
if (loopDuration > 0) {
|
|
|
|
if (loopDuration < fastestC * nbCompressionLoops)
|
|
|
|
fastestC = loopDuration / nbCompressionLoops;
|
2018-02-20 16:52:28 -08:00
|
|
|
nbCompressionLoops = (U32)(TIMELOOP_NANOSEC / fastestC) + 1;
|
2018-02-20 14:48:09 -08:00
|
|
|
} else {
|
|
|
|
assert(nbCompressionLoops < 40000000); /* avoid overflow */
|
|
|
|
nbCompressionLoops *= 100;
|
2016-11-18 02:46:30 -08:00
|
|
|
}
|
2017-10-19 11:56:14 -07:00
|
|
|
totalCTime += loopDuration;
|
|
|
|
cCompleted = (totalCTime >= maxTime); /* end compression tests */
|
2016-12-06 16:49:23 -08:00
|
|
|
} }
|
|
|
|
|
|
|
|
cSize = 0;
|
|
|
|
{ U32 blockNb; for (blockNb=0; blockNb<nbBlocks; blockNb++) cSize += blockTable[blockNb].cSize; }
|
|
|
|
ratio = (double)srcSize / (double)cSize;
|
|
|
|
markNb = (markNb+1) % NB_MARKS;
|
2017-11-18 15:54:32 -08:00
|
|
|
{ int const ratioAccuracy = (ratio < 10.) ? 3 : 2;
|
2018-02-20 14:48:09 -08:00
|
|
|
double const compressionSpeed = ((double)srcSize / fastestC) * 1000;
|
2017-11-18 15:54:32 -08:00
|
|
|
int const cSpeedAccuracy = (compressionSpeed < 10.) ? 2 : 1;
|
|
|
|
DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.*f),%6.*f MB/s\r",
|
|
|
|
marks[markNb], displayName, (U32)srcSize, (U32)cSize,
|
|
|
|
ratioAccuracy, ratio,
|
|
|
|
cSpeedAccuracy, compressionSpeed );
|
|
|
|
}
|
2018-03-05 13:50:07 -08:00
|
|
|
} /* if (!g_decodeOnly) */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2017-01-11 09:21:25 -08:00
|
|
|
#if 0 /* disable decompression test */
|
2016-12-26 22:19:36 -08:00
|
|
|
dCompleted=1;
|
2017-10-19 11:56:14 -07:00
|
|
|
(void)totalDTime; (void)fastestD; (void)crcOrig; /* unused when decompression disabled */
|
2016-12-26 22:19:36 -08:00
|
|
|
#else
|
2015-01-23 16:58:16 -08:00
|
|
|
/* Decompression */
|
2016-08-20 16:04:46 -07:00
|
|
|
if (!dCompleted) memset(resultBuffer, 0xD6, srcSize); /* warm result buffer */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2018-02-20 14:48:09 -08:00
|
|
|
UTIL_sleepMilli(5); /* give processor time to other processes */
|
2017-09-12 18:12:46 -07:00
|
|
|
UTIL_waitForNextTick();
|
2016-01-26 06:58:49 -08:00
|
|
|
|
2016-08-01 04:37:17 -07:00
|
|
|
if (!dCompleted) {
|
|
|
|
U32 nbLoops = 0;
|
2016-12-06 16:49:23 -08:00
|
|
|
ZSTD_DDict* const ddict = ZSTD_createDDict(dictBuffer, dictBufferSize);
|
2017-09-12 18:12:46 -07:00
|
|
|
UTIL_time_t const clockStart = UTIL_getTime();
|
2016-06-06 16:40:49 -07:00
|
|
|
if (!ddict) EXM_THROW(2, "ZSTD_createDDict() allocation failure");
|
2018-02-20 14:48:09 -08:00
|
|
|
if (!g_nbSeconds) nbDecodeLoops = 1;
|
|
|
|
for (nbLoops=0; nbLoops < nbDecodeLoops; nbLoops++) {
|
2016-03-25 17:48:27 -07:00
|
|
|
U32 blockNb;
|
|
|
|
for (blockNb=0; blockNb<nbBlocks; blockNb++) {
|
2016-06-06 16:40:49 -07:00
|
|
|
size_t const regenSize = ZSTD_decompress_usingDDict(dctx,
|
2016-12-06 17:46:49 -08:00
|
|
|
blockTable[blockNb].resPtr, blockTable[blockNb].resSize,
|
2016-06-06 16:40:49 -07:00
|
|
|
blockTable[blockNb].cPtr, blockTable[blockNb].cSize,
|
|
|
|
ddict);
|
2016-03-25 17:48:27 -07:00
|
|
|
if (ZSTD_isError(regenSize)) {
|
2017-09-01 11:46:15 -07:00
|
|
|
EXM_THROW(2, "ZSTD_decompress_usingDDict() failed on block %u of size %u : %s \n",
|
2017-01-11 09:21:25 -08:00
|
|
|
blockNb, (U32)blockTable[blockNb].cSize, ZSTD_getErrorName(regenSize));
|
2016-03-25 17:48:27 -07:00
|
|
|
}
|
|
|
|
blockTable[blockNb].resSize = regenSize;
|
2018-02-20 14:48:09 -08:00
|
|
|
} }
|
2016-06-06 16:40:49 -07:00
|
|
|
ZSTD_freeDDict(ddict);
|
2018-02-20 14:48:09 -08:00
|
|
|
{ U64 const loopDuration = UTIL_clockSpanNano(clockStart);
|
|
|
|
if (loopDuration > 0) {
|
|
|
|
if (loopDuration < fastestD * nbDecodeLoops)
|
|
|
|
fastestD = loopDuration / nbDecodeLoops;
|
2018-02-20 16:52:28 -08:00
|
|
|
nbDecodeLoops = (U32)(TIMELOOP_NANOSEC / fastestD) + 1;
|
2018-02-20 14:48:09 -08:00
|
|
|
} else {
|
|
|
|
assert(nbDecodeLoops < 40000000); /* avoid overflow */
|
|
|
|
nbDecodeLoops *= 100;
|
|
|
|
}
|
2017-10-19 11:56:14 -07:00
|
|
|
totalDTime += loopDuration;
|
2016-11-29 13:12:24 -08:00
|
|
|
dCompleted = (totalDTime >= maxTime);
|
2016-01-25 18:14:20 -08:00
|
|
|
} }
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-08-01 04:37:17 -07:00
|
|
|
markNb = (markNb+1) % NB_MARKS;
|
2017-11-18 15:54:32 -08:00
|
|
|
{ int const ratioAccuracy = (ratio < 10.) ? 3 : 2;
|
2018-02-20 14:48:09 -08:00
|
|
|
double const compressionSpeed = ((double)srcSize / fastestC) * 1000;
|
2017-11-18 15:54:32 -08:00
|
|
|
int const cSpeedAccuracy = (compressionSpeed < 10.) ? 2 : 1;
|
2018-02-20 14:48:09 -08:00
|
|
|
double const decompressionSpeed = ((double)srcSize / fastestD) * 1000;
|
2017-11-18 15:54:32 -08:00
|
|
|
DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.*f),%6.*f MB/s ,%6.1f MB/s \r",
|
|
|
|
marks[markNb], displayName, (U32)srcSize, (U32)cSize,
|
|
|
|
ratioAccuracy, ratio,
|
|
|
|
cSpeedAccuracy, compressionSpeed,
|
|
|
|
decompressionSpeed);
|
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* CRC Checking */
|
2016-05-20 02:24:35 -07:00
|
|
|
{ U64 const crcCheck = XXH64(resultBuffer, srcSize, 0);
|
2016-12-06 16:49:23 -08:00
|
|
|
if (!g_decodeOnly && (crcOrig!=crcCheck)) {
|
2016-03-25 17:48:27 -07:00
|
|
|
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);
|
2017-06-19 18:25:35 -07:00
|
|
|
DISPLAY("(sample %u, block %u, pos %u) \n", segNb, bNb, pos);
|
2017-01-19 12:12:50 -08:00
|
|
|
if (u>5) {
|
|
|
|
int n;
|
2017-11-13 02:19:36 -08:00
|
|
|
DISPLAY("origin: ");
|
2017-01-19 12:12:50 -08:00
|
|
|
for (n=-5; n<0; n++) DISPLAY("%02X ", ((const BYTE*)srcBuffer)[u+n]);
|
|
|
|
DISPLAY(" :%02X: ", ((const BYTE*)srcBuffer)[u]);
|
|
|
|
for (n=1; n<3; n++) DISPLAY("%02X ", ((const BYTE*)srcBuffer)[u+n]);
|
|
|
|
DISPLAY(" \n");
|
2017-11-13 02:19:36 -08:00
|
|
|
DISPLAY("decode: ");
|
2017-01-19 12:12:50 -08:00
|
|
|
for (n=-5; n<0; n++) DISPLAY("%02X ", ((const BYTE*)resultBuffer)[u+n]);
|
|
|
|
DISPLAY(" :%02X: ", ((const BYTE*)resultBuffer)[u]);
|
|
|
|
for (n=1; n<3; n++) DISPLAY("%02X ", ((const BYTE*)resultBuffer)[u+n]);
|
|
|
|
DISPLAY(" \n");
|
|
|
|
}
|
2016-03-25 17:48:27 -07:00
|
|
|
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-11-03 03:38:01 -07:00
|
|
|
} /* for (testNb = 1; testNb <= (g_nbSeconds + !g_nbSeconds); testNb++) */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2017-11-18 15:54:32 -08:00
|
|
|
if (g_displayLevel == 1) { /* hidden display mode -q, used by python speed benchmark */
|
2018-03-05 11:59:54 -08:00
|
|
|
double const cSpeed = ((double)srcSize / fastestC) * 1000;
|
|
|
|
double const dSpeed = ((double)srcSize / fastestD) * 1000;
|
2016-08-10 05:59:18 -07:00
|
|
|
if (g_additionalParam)
|
|
|
|
DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s (param=%d)\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed, displayName, g_additionalParam);
|
|
|
|
else
|
|
|
|
DISPLAY("-%-3i%11i (%5.3f) %6.2f MB/s %6.1f MB/s %s\n", cLevel, (int)cSize, ratio, cSpeed, dSpeed, displayName);
|
|
|
|
}
|
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);
|
2015-12-17 16:26:48 -08:00
|
|
|
ZSTD_freeCCtx(ctx);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-11-17 00:22:55 -08:00
|
|
|
static void BMK_benchCLevel(const 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,
|
2016-12-13 04:03:41 -08:00
|
|
|
const void* dictBuffer, size_t dictBufferSize,
|
2017-11-17 00:22:55 -08:00
|
|
|
const ZSTD_compressionParameters* const compressionParams)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
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;
|
|
|
|
|
2017-11-17 00:02:37 -08:00
|
|
|
if (g_realTime) {
|
|
|
|
DISPLAYLEVEL(2, "Note : switching to real-time priority \n");
|
2017-02-07 07:48:01 -08:00
|
|
|
SET_REALTIME_PRIORITY;
|
|
|
|
}
|
2016-04-25 04:09:06 -07:00
|
|
|
|
2016-03-23 12:30:26 -07:00
|
|
|
if (g_displayLevel == 1 && !g_additionalParam)
|
2016-11-03 03:38:01 -07:00
|
|
|
DISPLAY("bench %s %s: input %u bytes, %u seconds, %u KB blocks\n", ZSTD_VERSION_STRING, ZSTD_GIT_COMMIT_STRING, (U32)benchedSize, g_nbSeconds, (U32)(g_blockSize>>10));
|
2016-03-14 10:10:30 -07:00
|
|
|
|
2016-04-09 07:17:18 -07:00
|
|
|
for (l=cLevel; l <= cLevelLast; l++) {
|
2018-03-12 04:02:57 -07:00
|
|
|
if (l==0) continue; /* skip level 0 */
|
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,
|
2016-12-13 04:03:41 -08:00
|
|
|
dictBuffer, dictBufferSize, compressionParams);
|
2016-08-10 05:59:18 -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() :
|
2018-03-11 19:56:48 -07:00
|
|
|
* 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,
|
2017-11-17 00:22:55 -08:00
|
|
|
const char* const * const 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-03-17 11:37:33 -07:00
|
|
|
unsigned n;
|
2016-01-29 18:14:15 -08:00
|
|
|
for (n=0; n<nbFiles; n++) {
|
2016-05-20 02:24:35 -07:00
|
|
|
FILE* f;
|
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;
|
|
|
|
}
|
2017-10-17 16:14:25 -07:00
|
|
|
if (fileSize == UTIL_FILESIZE_UNKNOWN) {
|
|
|
|
DISPLAYLEVEL(2, "Cannot evaluate size of %s, ignoring ... \n", fileNamesTable[n]);
|
|
|
|
fileSizes[n] = 0;
|
|
|
|
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]);
|
2016-08-02 14:48:13 -07:00
|
|
|
DISPLAYUPDATE(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
|
|
|
}
|
|
|
|
|
2017-11-17 00:22:55 -08:00
|
|
|
static void BMK_benchFileTable(const char* const * const fileNamesTable, unsigned const nbFiles,
|
|
|
|
const char* const dictFileName,
|
|
|
|
int const cLevel, int const cLevelLast,
|
|
|
|
const ZSTD_compressionParameters* const compressionParams)
|
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;
|
2017-11-17 00:22:55 -08:00
|
|
|
size_t* const fileSizes = (size_t*)malloc(nbFiles * sizeof(size_t));
|
2016-05-20 02:24:35 -07:00
|
|
|
U64 const totalSizeToLoad = UTIL_getTotalFileSize(fileNamesTable, nbFiles);
|
2015-12-15 17:37:24 -08:00
|
|
|
|
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) {
|
2017-10-17 16:14:25 -07:00
|
|
|
U64 const dictFileSize = UTIL_getFileSize(dictFileName);
|
|
|
|
if (dictFileSize > 64 MB)
|
|
|
|
EXM_THROW(10, "dictionary file %s too large", dictFileName);
|
2015-12-17 16:26:48 -08:00
|
|
|
dictBufferSize = (size_t)dictFileSize;
|
|
|
|
dictBuffer = malloc(dictBufferSize);
|
2017-10-17 16:14:25 -07:00
|
|
|
if (dictBuffer==NULL)
|
|
|
|
EXM_THROW(11, "not enough memory for dictionary (%u bytes)",
|
|
|
|
(U32)dictBufferSize);
|
2015-12-17 16:26:48 -08:00
|
|
|
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 */
|
2017-11-17 00:22:55 -08:00
|
|
|
if (g_separateFiles) {
|
|
|
|
const BYTE* srcPtr = (const BYTE*)srcBuffer;
|
|
|
|
U32 fileNb;
|
|
|
|
for (fileNb=0; fileNb<nbFiles; fileNb++) {
|
|
|
|
size_t const fileSize = fileSizes[fileNb];
|
|
|
|
BMK_benchCLevel(srcPtr, fileSize,
|
|
|
|
fileNamesTable[fileNb], cLevel, cLevelLast,
|
|
|
|
fileSizes+fileNb, 1,
|
|
|
|
dictBuffer, dictBufferSize, compressionParams);
|
|
|
|
srcPtr += fileSize;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
char mfName[20] = {0};
|
|
|
|
snprintf (mfName, sizeof(mfName), " %u files", nbFiles);
|
|
|
|
{ const char* const displayName = (nbFiles > 1) ? mfName : fileNamesTable[0];
|
|
|
|
BMK_benchCLevel(srcBuffer, benchedSize,
|
|
|
|
displayName, cLevel, cLevelLast,
|
|
|
|
fileSizes, nbFiles,
|
|
|
|
dictBuffer, dictBufferSize, compressionParams);
|
|
|
|
} }
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-20 14:48:09 -08:00
|
|
|
static void BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility,
|
|
|
|
const ZSTD_compressionParameters* compressionParams)
|
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;
|
2016-05-20 02:24:35 -07:00
|
|
|
void* const srcBuffer = malloc(benchedSize);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* 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));
|
2017-11-17 00:02:37 -08:00
|
|
|
BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1, NULL, 0, compressionParams);
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-17 01:21:40 -08:00
|
|
|
int BMK_benchFiles(const char** fileNamesTable, unsigned nbFiles,
|
2017-11-17 00:02:37 -08:00
|
|
|
const char* dictFileName,
|
|
|
|
int cLevel, int cLevelLast,
|
2017-11-17 01:21:40 -08:00
|
|
|
const ZSTD_compressionParameters* compressionParams)
|
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
|
|
|
|
2016-11-23 12:45:29 -08:00
|
|
|
if (cLevel > ZSTD_maxCLevel()) cLevel = ZSTD_maxCLevel();
|
|
|
|
if (cLevelLast > ZSTD_maxCLevel()) cLevelLast = ZSTD_maxCLevel();
|
2016-11-21 07:37:56 -08:00
|
|
|
if (cLevelLast < cLevel) cLevelLast = cLevel;
|
2017-11-17 00:02:37 -08:00
|
|
|
if (cLevelLast > cLevel)
|
|
|
|
DISPLAYLEVEL(2, "Benchmarking levels from %d to %d\n", cLevel, cLevelLast);
|
2016-11-21 07:37:56 -08:00
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
if (nbFiles == 0)
|
2017-11-17 00:02:37 -08:00
|
|
|
BMK_syntheticTest(cLevel, cLevelLast, compressibility, compressionParams);
|
2015-01-23 16:58:16 -08:00
|
|
|
else
|
2017-11-17 00:02:37 -08:00
|
|
|
BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel, cLevelLast, compressionParams);
|
2015-01-23 16:58:16 -08:00
|
|
|
return 0;
|
|
|
|
}
|