2015-01-23 16:58:16 -08:00
|
|
|
/*
|
|
|
|
bench.c - Demo module to benchmark open-source compression algorithms
|
|
|
|
Copyright (C) Yann Collet 2012-2015
|
|
|
|
|
|
|
|
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 :
|
|
|
|
- zstd source repository : https://github.com/Cyan4973/zstd
|
|
|
|
- ztsd public forum : https://groups.google.com/forum/#!forum/lz4c
|
|
|
|
*/
|
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* **************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Compiler Options
|
2015-10-22 07:31:46 -07:00
|
|
|
****************************************/
|
2015-01-23 16:58:16 -08:00
|
|
|
/* Disable some Visual warning messages */
|
2015-12-15 17:44:56 -08:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
# define _CRT_SECURE_NO_WARNINGS /* fopen */
|
|
|
|
# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */
|
|
|
|
#endif
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* Unix Large Files support (>4GB) */
|
2015-01-23 16:58:16 -08:00
|
|
|
#define _FILE_OFFSET_BITS 64
|
2015-10-22 07:31:46 -07:00
|
|
|
#if (defined(__sun__) && (!defined(__LP64__))) /* Sun Solaris 32-bits requires specific definitions */
|
2015-01-23 16:58:16 -08:00
|
|
|
# define _LARGEFILE_SOURCE
|
2015-10-22 07:31:46 -07:00
|
|
|
#elif ! defined(__LP64__) /* No point defining Large file for 64 bit */
|
2015-01-23 16:58:16 -08:00
|
|
|
# define _LARGEFILE64_SOURCE
|
|
|
|
#endif
|
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* S_ISREG & gettimeofday() are not supported by MSVC */
|
2015-01-23 16:58:16 -08:00
|
|
|
#if defined(_MSC_VER) || defined(_WIN32)
|
|
|
|
# define BMK_LEGACY_TIMER 1
|
|
|
|
#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
|
|
|
***************************************/
|
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 */
|
|
|
|
#include <sys/types.h> /* stat64 */
|
|
|
|
#include <sys/stat.h> /* stat64 */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-22 08:55:40 -07:00
|
|
|
/* Use ftime() if gettimeofday() is not available */
|
2015-01-23 16:58:16 -08:00
|
|
|
#if defined(BMK_LEGACY_TIMER)
|
2015-11-30 16:31:17 -08:00
|
|
|
# include <sys/timeb.h> /* timeb, ftime */
|
2015-01-23 16:58:16 -08:00
|
|
|
#else
|
2015-11-30 16:31:17 -08:00
|
|
|
# include <sys/time.h> /* gettimeofday */
|
2015-01-23 16:58:16 -08:00
|
|
|
#endif
|
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
#include "mem.h"
|
2015-12-17 16:26:48 -08:00
|
|
|
#include "zstd_static.h"
|
2015-01-23 16:58:16 -08:00
|
|
|
#include "xxhash.h"
|
2015-11-30 16:31:17 -08:00
|
|
|
#include "datagen.h" /* RDG_genBuffer */
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* *************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Compiler specifics
|
2015-10-22 07:31:46 -07:00
|
|
|
***************************************/
|
2015-01-23 16:58:16 -08:00
|
|
|
#if !defined(S_ISREG)
|
|
|
|
# define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
|
|
|
|
#endif
|
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define snprintf sprintf_s
|
|
|
|
#endif
|
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
|
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
|
|
|
***************************************/
|
2015-01-23 16:58:16 -08:00
|
|
|
#define NBLOOPS 3
|
|
|
|
#define TIMELOOP 2500
|
|
|
|
|
|
|
|
#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
|
|
|
#define DEFAULT_CHUNKSIZE (4 MB)
|
|
|
|
|
|
|
|
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
|
|
|
***************************************/
|
2015-01-23 16:58:16 -08:00
|
|
|
static int nbIterations = NBLOOPS;
|
2015-10-21 00:22:25 -07:00
|
|
|
static size_t g_blockSize = 0;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
void BMK_SetNbIterations(int nbLoops)
|
|
|
|
{
|
|
|
|
nbIterations = nbLoops;
|
|
|
|
DISPLAY("- %i iterations -\n", nbIterations);
|
|
|
|
}
|
|
|
|
|
2015-10-21 00:22:25 -07:00
|
|
|
void BMK_SetBlockSize(size_t blockSize)
|
|
|
|
{
|
|
|
|
g_blockSize = blockSize;
|
|
|
|
DISPLAY("using blocks of size %u KB \n", (U32)(blockSize>>10));
|
|
|
|
}
|
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-22 07:31:46 -07:00
|
|
|
/* ********************************************************
|
2015-01-23 16:58:16 -08:00
|
|
|
* Private functions
|
2015-10-22 07:31:46 -07:00
|
|
|
**********************************************************/
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
#if defined(BMK_LEGACY_TIMER)
|
|
|
|
|
|
|
|
static int BMK_GetMilliStart(void)
|
|
|
|
{
|
|
|
|
/* Based on Legacy ftime()
|
|
|
|
* Rolls over every ~ 12.1 days (0x100000/24/60/60)
|
|
|
|
* Use GetMilliSpan to correct for rollover */
|
|
|
|
struct timeb tb;
|
|
|
|
int nCount;
|
|
|
|
ftime( &tb );
|
|
|
|
nCount = (int) (tb.millitm + (tb.time & 0xfffff) * 1000);
|
|
|
|
return nCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static int BMK_GetMilliStart(void)
|
|
|
|
{
|
|
|
|
/* Based on newer gettimeofday()
|
|
|
|
* Use GetMilliSpan to correct for rollover */
|
|
|
|
struct timeval tv;
|
|
|
|
int nCount;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
nCount = (int) (tv.tv_usec/1000 + (tv.tv_sec & 0xfffff) * 1000);
|
|
|
|
return nCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
static int BMK_GetMilliSpan( int nTimeStart )
|
|
|
|
{
|
|
|
|
int nSpan = BMK_GetMilliStart() - nTimeStart;
|
|
|
|
if ( nSpan < 0 )
|
|
|
|
nSpan += 0x100000 * 1000;
|
|
|
|
return nSpan;
|
|
|
|
}
|
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
static U64 BMK_getFileSize(const char* infilename)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
struct _stat64 statbuf;
|
|
|
|
r = _stat64(infilename, &statbuf);
|
|
|
|
#else
|
|
|
|
struct stat statbuf;
|
|
|
|
r = stat(infilename, &statbuf);
|
|
|
|
#endif
|
|
|
|
if (r || !S_ISREG(statbuf.st_mode)) return 0; /* No good... */
|
|
|
|
return (U64)statbuf.st_size;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2015-10-31 04:57:14 -07:00
|
|
|
#define MIN(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,
|
|
|
|
const char* displayName, int cLevel,
|
2015-12-17 16:26:48 -08:00
|
|
|
const size_t* fileSizes, U32 nbFiles,
|
|
|
|
const void* dictBuffer, size_t dictBufferSize)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2015-11-04 08:52:18 -08:00
|
|
|
const size_t blockSize = (g_blockSize ? g_blockSize : srcSize) + (!srcSize); /* avoid div by 0 */
|
2015-12-15 17:37:24 -08:00
|
|
|
const U32 maxNbBlocks = (U32) ((srcSize + (blockSize-1)) / blockSize) + nbFiles;
|
2016-01-20 06:39:06 -08:00
|
|
|
size_t largestBlockSize = 0;
|
2015-12-15 17:37:24 -08:00
|
|
|
blockParam_t* const blockTable = (blockParam_t*) malloc(maxNbBlocks * sizeof(blockParam_t));
|
2015-12-16 15:07:10 -08:00
|
|
|
const size_t 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();
|
2015-12-15 17:37:24 -08:00
|
|
|
U64 crcOrig = XXH64(srcBuffer, srcSize, 0);
|
|
|
|
U32 nbBlocks = 0;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-29 11:10:54 -07:00
|
|
|
/* init */
|
2015-12-15 17:37:24 -08:00
|
|
|
if (strlen(displayName)>17) displayName += strlen(displayName)-17; /* can only display 17 characters */
|
2015-10-29 11:10:54 -07:00
|
|
|
|
2015-01-23 16:58:16 -08:00
|
|
|
/* Memory allocation & restrictions */
|
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
|
|
|
|
2015-10-21 00:22:25 -07:00
|
|
|
/* Init blockTable data */
|
|
|
|
{
|
2015-12-15 17:37:24 -08:00
|
|
|
U32 fileNb;
|
|
|
|
const char* srcPtr = (const char*)srcBuffer;
|
2015-10-21 00:22:25 -07:00
|
|
|
char* cPtr = (char*)compressedBuffer;
|
|
|
|
char* resPtr = (char*)resultBuffer;
|
2015-12-15 17:37:24 -08:00
|
|
|
for (fileNb=0; fileNb<nbFiles; fileNb++)
|
2015-10-21 00:22:25 -07:00
|
|
|
{
|
2015-12-15 18:01:03 -08:00
|
|
|
size_t remaining = fileSizes[fileNb];
|
|
|
|
U32 nbBlocksforThisFile = (U32)((remaining + (blockSize-1)) / blockSize);
|
2015-12-15 17:37:24 -08:00
|
|
|
U32 blockEnd = nbBlocks + nbBlocksforThisFile;
|
|
|
|
for ( ; nbBlocks<blockEnd; nbBlocks++)
|
|
|
|
{
|
|
|
|
size_t thisBlockSize = MIN(remaining, blockSize);
|
|
|
|
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-20 06:39:06 -08:00
|
|
|
if (thisBlockSize > largestBlockSize) largestBlockSize = thisBlockSize;
|
2015-12-15 17:37:24 -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 */
|
|
|
|
{
|
|
|
|
int loopNb;
|
|
|
|
size_t cSize = 0;
|
|
|
|
double fastestC = 100000000., fastestD = 100000000.;
|
|
|
|
double ratio = 0.;
|
|
|
|
U64 crcCheck = 0;
|
|
|
|
|
|
|
|
DISPLAY("\r%79s\r", "");
|
|
|
|
for (loopNb = 1; loopNb <= nbIterations; loopNb++)
|
|
|
|
{
|
|
|
|
int nbLoops;
|
|
|
|
int milliTime;
|
2015-10-21 00:22:25 -07:00
|
|
|
U32 blockNb;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* Compression */
|
2015-12-15 17:37:24 -08:00
|
|
|
DISPLAY("%2i-%-17.17s :%10u ->\r", loopNb, displayName, (U32)srcSize);
|
2015-01-23 16:58:16 -08:00
|
|
|
memset(compressedBuffer, 0xE5, maxCompressedSize);
|
|
|
|
|
|
|
|
nbLoops = 0;
|
|
|
|
milliTime = BMK_GetMilliStart();
|
|
|
|
while (BMK_GetMilliStart() == milliTime);
|
|
|
|
milliTime = BMK_GetMilliStart();
|
2016-01-27 15:18:06 -08:00
|
|
|
while (BMK_GetMilliSpan(milliTime) < TIMELOOP) {
|
2016-01-26 07:31:22 -08:00
|
|
|
ZSTD_compressBegin_advanced(refCtx, dictBuffer, dictBufferSize, ZSTD_getParams(cLevel, dictBufferSize+largestBlockSize));
|
2016-01-27 15:18:06 -08:00
|
|
|
//ZSTD_compressBegin_advanced(refCtx, dictBuffer, dictBufferSize, ZSTD_getParams(cLevel, 0));
|
|
|
|
for (blockNb=0; blockNb<nbBlocks; blockNb++) {
|
2016-01-26 06:58:49 -08:00
|
|
|
ZSTD_copyCCtx(ctx, refCtx);
|
2016-01-14 10:13:22 -08:00
|
|
|
size_t rSize = ZSTD_compressContinue(ctx,
|
|
|
|
blockTable[blockNb].cPtr, blockTable[blockNb].cRoom,
|
|
|
|
blockTable[blockNb].srcPtr,blockTable[blockNb].srcSize);
|
|
|
|
if (ZSTD_isError(rSize)) EXM_THROW(1, "ZSTD_compressContinue() failed : %s", ZSTD_getErrorName(rSize));
|
|
|
|
blockTable[blockNb].cSize = rSize;
|
|
|
|
rSize = ZSTD_compressEnd(ctx,
|
|
|
|
blockTable[blockNb].cPtr + rSize,
|
|
|
|
blockTable[blockNb].cRoom - rSize);
|
|
|
|
if (ZSTD_isError(rSize)) EXM_THROW(2, "ZSTD_compressEnd() failed : %s", ZSTD_getErrorName(rSize));
|
|
|
|
blockTable[blockNb].cSize += rSize;
|
2016-01-27 15:18:06 -08:00
|
|
|
|
|
|
|
if (blockNb==999999999)
|
|
|
|
printf("%4u : %6u => %6u bytes (%08X) \n",
|
|
|
|
blockNb, (U32)blockTable[blockNb].srcSize, (U32)blockTable[blockNb].cSize, XXH32(blockTable[blockNb].cPtr, blockTable[blockNb].cSize, 0));
|
2016-01-14 10:13:22 -08:00
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
nbLoops++;
|
|
|
|
}
|
|
|
|
milliTime = BMK_GetMilliSpan(milliTime);
|
|
|
|
|
2015-10-21 00:22:25 -07:00
|
|
|
cSize = 0;
|
|
|
|
for (blockNb=0; blockNb<nbBlocks; blockNb++)
|
|
|
|
cSize += blockTable[blockNb].cSize;
|
2015-01-23 16:58:16 -08:00
|
|
|
if ((double)milliTime < fastestC*nbLoops) fastestC = (double)milliTime / nbLoops;
|
2015-10-29 08:49:43 -07:00
|
|
|
ratio = (double)srcSize / (double)cSize;
|
2015-12-15 17:37:24 -08:00
|
|
|
DISPLAY("%2i-%-17.17s :%10i ->%10i (%5.3f),%6.1f MB/s\r", loopNb, displayName, (int)srcSize, (int)cSize, ratio, (double)srcSize / fastestC / 1000.);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-10-29 08:49:43 -07: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
|
|
|
|
|
|
|
nbLoops = 0;
|
|
|
|
milliTime = BMK_GetMilliStart();
|
|
|
|
while (BMK_GetMilliStart() == milliTime);
|
|
|
|
milliTime = BMK_GetMilliStart();
|
2016-01-26 06:58:49 -08:00
|
|
|
|
|
|
|
ZSTD_decompressBegin_usingDict(refDCtx, dictBuffer, dictBufferSize);
|
2016-01-25 18:14:20 -08:00
|
|
|
for ( ; BMK_GetMilliSpan(milliTime) < TIMELOOP; nbLoops++) {
|
|
|
|
for (blockNb=0; blockNb<nbBlocks; blockNb++) {
|
2016-01-26 06:58:49 -08:00
|
|
|
size_t regenSize;
|
|
|
|
|
|
|
|
regenSize = ZSTD_decompress_usingPreparedDCtx(dctx, refDCtx,
|
2016-01-25 18:14:20 -08:00
|
|
|
blockTable[blockNb].resPtr, blockTable[blockNb].srcSize,
|
2016-01-26 06:58:49 -08:00
|
|
|
blockTable[blockNb].cPtr, blockTable[blockNb].cSize);
|
|
|
|
|
|
|
|
if (ZSTD_isError(regenSize))
|
2016-01-27 15:18:06 -08:00
|
|
|
EXM_THROW(3, "ZSTD_decompress_usingPreparedDCtx() failed on block %u : %s",
|
|
|
|
blockNb, ZSTD_getErrorName(regenSize));
|
2016-01-26 06:58:49 -08:00
|
|
|
blockTable[blockNb].resSize = regenSize;
|
2016-01-25 18:14:20 -08:00
|
|
|
} }
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2016-01-26 06:58:49 -08:00
|
|
|
milliTime = BMK_GetMilliSpan(milliTime);
|
2015-01-23 16:58:16 -08:00
|
|
|
if ((double)milliTime < fastestD*nbLoops) fastestD = (double)milliTime / nbLoops;
|
2015-12-15 17:37:24 -08:00
|
|
|
DISPLAY("%2i-%-17.17s :%10i ->%10i (%5.3f),%6.1f MB/s ,%6.1f MB/s\r", loopNb, displayName, (int)srcSize, (int)cSize, ratio, (double)srcSize / fastestC / 1000., (double)srcSize / fastestD / 1000.);
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
/* CRC Checking */
|
|
|
|
crcCheck = XXH64(resultBuffer, srcSize, 0);
|
2016-01-26 06:58:49 -08:00
|
|
|
if (crcOrig!=crcCheck) {
|
2016-01-20 17:21:17 -08:00
|
|
|
size_t u;
|
2015-12-15 17:37:24 -08:00
|
|
|
DISPLAY("\n!!! WARNING !!! %14s : Invalid Checksum : %x != %x\n", displayName, (unsigned)crcOrig, (unsigned)crcCheck);
|
2016-01-26 06:58:49 -08:00
|
|
|
for (u=0; u<srcSize; u++) {
|
|
|
|
if (((const BYTE*)srcBuffer)[u] != ((const BYTE*)resultBuffer)[u]) {
|
2016-01-23 10:28:41 -08:00
|
|
|
U32 segNb, bNb, pos;
|
2016-01-20 17:21:17 -08:00
|
|
|
size_t bacc = 0;
|
|
|
|
printf("Decoding error at pos %u ", (U32)u);
|
2016-01-26 06:58:49 -08:00
|
|
|
for (segNb = 0; segNb < nbBlocks; segNb++) {
|
2016-01-23 10:28:41 -08:00
|
|
|
if (bacc + blockTable[segNb].srcSize > u) break;
|
|
|
|
bacc += blockTable[segNb].srcSize;
|
2016-01-20 17:21:17 -08:00
|
|
|
}
|
2016-01-23 10:28:41 -08:00
|
|
|
pos = (U32)(u - bacc);
|
|
|
|
bNb = pos / (128 KB);
|
2016-01-27 15:18:06 -08:00
|
|
|
printf("(block %u, sub %u, pos %u) \n", segNb, bNb, pos);
|
2015-01-23 16:58:16 -08:00
|
|
|
break;
|
2016-01-27 15:18:06 -08:00
|
|
|
}
|
|
|
|
if (u==srcSize-1) { /* should never happen */
|
|
|
|
printf("no difference detected\n");
|
2016-01-26 06:58:49 -08:00
|
|
|
} }
|
2015-01-23 16:58:16 -08:00
|
|
|
break;
|
|
|
|
}
|
2015-07-25 16:23:57 -07:00
|
|
|
#endif
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (crcOrig == crcCheck)
|
2015-12-15 17:37:24 -08:00
|
|
|
DISPLAY("%2i-%-17.17s :%10i ->%10i (%5.3f),%6.1f MB/s ,%6.1f MB/s \n", cLevel, displayName, (int)srcSize, (int)cSize, ratio, (double)srcSize / fastestC / 1000., (double)srcSize / fastestD / 1000.);
|
2015-12-17 16:26:48 -08:00
|
|
|
else
|
2016-01-27 15:18:06 -08:00
|
|
|
DISPLAY("%2i-\n", cLevel);
|
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(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)
|
|
|
|
{
|
|
|
|
size_t step = 64 MB;
|
|
|
|
BYTE* testmem = NULL;
|
|
|
|
|
|
|
|
requiredMem = (((requiredMem >> 26) + 1) << 26);
|
|
|
|
requiredMem += 2 * step;
|
2015-11-03 00:49:30 -08:00
|
|
|
if (requiredMem > maxMemory) requiredMem = maxMemory;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
|
|
|
while (!testmem)
|
|
|
|
{
|
|
|
|
requiredMem -= step;
|
|
|
|
testmem = (BYTE*)malloc((size_t)requiredMem);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(testmem);
|
|
|
|
return (size_t)(requiredMem - step);
|
|
|
|
}
|
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
static void BMK_benchCLevel(void* srcBuffer, size_t benchedSize,
|
|
|
|
const char* displayName, int cLevel,
|
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
|
|
|
{
|
2015-12-15 17:37:24 -08:00
|
|
|
if (cLevel < 0)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2015-12-15 17:37:24 -08:00
|
|
|
int l;
|
|
|
|
for (l=1; l <= -cLevel; l++)
|
2015-12-17 16:26:48 -08:00
|
|
|
BMK_benchMem(srcBuffer, benchedSize,
|
|
|
|
displayName, l,
|
|
|
|
fileSizes, nbFiles,
|
|
|
|
dictBuffer, dictBufferSize);
|
2015-12-15 17:37:24 -08:00
|
|
|
return;
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
2015-12-17 16:26:48 -08:00
|
|
|
BMK_benchMem(srcBuffer, benchedSize,
|
|
|
|
displayName, cLevel,
|
|
|
|
fileSizes, nbFiles,
|
|
|
|
dictBuffer, dictBufferSize);
|
2015-12-15 17:37:24 -08:00
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
static U64 BMK_getTotalFileSize(const char** fileNamesTable, unsigned nbFiles)
|
|
|
|
{
|
|
|
|
U64 total = 0;
|
|
|
|
unsigned n;
|
|
|
|
for (n=0; n<nbFiles; n++)
|
|
|
|
total += BMK_getFileSize(fileNamesTable[n]);
|
|
|
|
return total;
|
|
|
|
}
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-12-15 18:01:03 -08:00
|
|
|
static void BMK_loadFiles(void* buffer, size_t bufferSize,
|
|
|
|
size_t* fileSizes,
|
|
|
|
const char** fileNamesTable, unsigned nbFiles)
|
2015-12-15 17:37:24 -08:00
|
|
|
{
|
|
|
|
BYTE* buff = (BYTE*)buffer;
|
|
|
|
size_t pos = 0;
|
|
|
|
unsigned n;
|
2015-01-23 16:58:16 -08:00
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
for (n=0; n<nbFiles; n++)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
2015-12-15 17:37:24 -08:00
|
|
|
size_t readSize;
|
|
|
|
U64 fileSize = BMK_getFileSize(fileNamesTable[n]);
|
|
|
|
FILE* f = fopen(fileNamesTable[n], "rb");
|
|
|
|
if (f==NULL) EXM_THROW(10, "impossible to open file %s", fileNamesTable[n]);
|
|
|
|
DISPLAYLEVEL(2, "Loading %s... \r", fileNamesTable[n]);
|
|
|
|
if (fileSize > bufferSize-pos) fileSize = bufferSize-pos;
|
|
|
|
readSize = fread(buff+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;
|
2015-12-15 17:37:24 -08:00
|
|
|
fclose(f);
|
2015-01-23 16:58:16 -08:00
|
|
|
}
|
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,
|
|
|
|
const char* dictFileName, int cLevel)
|
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));
|
2015-12-15 17:37:24 -08:00
|
|
|
U64 totalSizeToLoad = BMK_getTotalFileSize(fileNamesTable, nbFiles);
|
|
|
|
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 */
|
|
|
|
if (dictFileName != NULL)
|
|
|
|
{
|
|
|
|
U64 dictFileSize = BMK_getFileSize(dictFileName);
|
|
|
|
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,
|
|
|
|
displayName, cLevel,
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-15 17:37:24 -08:00
|
|
|
static void BMK_syntheticTest(int cLevel, 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));
|
2015-12-17 16:26:48 -08:00
|
|
|
BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, &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,
|
|
|
|
const char* dictFileName, int cLevel)
|
2015-01-23 16:58:16 -08:00
|
|
|
{
|
|
|
|
double compressibility = (double)g_compressibilityDefault / 100;
|
|
|
|
|
|
|
|
if (nbFiles == 0)
|
|
|
|
BMK_syntheticTest(cLevel, compressibility);
|
|
|
|
else
|
2015-12-17 16:26:48 -08:00
|
|
|
BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel);
|
2015-01-23 16:58:16 -08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|