blob: b545cb0076cb4e8d120161fe65bacf13c33c3a00 [file] [log] [blame]
Yann Collet4856a002015-01-24 01:58:16 +01001/*
Yann Collet99909862016-04-09 16:17:18 +02002 bench.c - open-source compression benchmark module
3 Copyright (C) Yann Collet 2012-2016
Yann Collet4856a002015-01-24 01:58:16 +01004
5 GPL v2 License
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 You can contact the author at :
Yann Collet99909862016-04-09 16:17:18 +020022 - zstd homepage : http://www.zstd.net
Yann Collet4856a002015-01-24 01:58:16 +010023 - zstd source repository : https://github.com/Cyan4973/zstd
Yann Collet4856a002015-01-24 01:58:16 +010024*/
25
Yann Colletf3eca252015-10-22 15:31:46 +010026/* *************************************
Yann Collet4856a002015-01-24 01:58:16 +010027* Includes
Yann Colletf3eca252015-10-22 15:31:46 +010028***************************************/
inikep957823f2016-05-25 15:30:55 +020029#include "util.h" /* Compiler options, UTIL_GetFileSize, UTIL_sleep */
Yann Collet4856a002015-01-24 01:58:16 +010030#include <stdlib.h> /* malloc, free */
31#include <string.h> /* memset */
Yann Colleteeb8ba12015-10-22 16:55:40 +010032#include <stdio.h> /* fprintf, fopen, ftello64 */
Yann Colletbf2bc112016-08-02 23:48:13 +020033#include <time.h> /* clock_t, clock, CLOCKS_PER_SEC */
inikep4c12f232016-03-29 14:52:13 +020034
Yann Colletf3eca252015-10-22 15:31:46 +010035#include "mem.h"
Yann Colletd3b7f8d2016-06-04 19:47:02 +020036#define ZSTD_STATIC_LINKING_ONLY
37#include "zstd.h"
inikep69fcd7c2016-04-28 12:23:33 +020038#include "datagen.h" /* RDG_genBuffer */
Yann Collet4856a002015-01-24 01:58:16 +010039#include "xxhash.h"
40
41
Yann Collet4856a002015-01-24 01:58:16 +010042
Yann Colletf3eca252015-10-22 15:31:46 +010043/* *************************************
Yann Collet4856a002015-01-24 01:58:16 +010044* Constants
Yann Colletf3eca252015-10-22 15:31:46 +010045***************************************/
inikepf2f59d72016-06-22 15:42:26 +020046#ifndef ZSTD_GIT_COMMIT
inikepd7d251c2016-06-22 16:13:25 +020047# define ZSTD_GIT_COMMIT_STRING ""
48#else
49# define ZSTD_GIT_COMMIT_STRING ZSTD_EXPAND_AND_QUOTE(ZSTD_GIT_COMMIT)
inikepf2f59d72016-06-22 15:42:26 +020050#endif
51
inikep83c76b42016-04-28 13:16:01 +020052#define NBLOOPS 3
53#define TIMELOOP_MICROSEC 1*1000000ULL /* 1 second */
54#define ACTIVEPERIOD_MICROSEC 70*1000000ULL /* 70 seconds */
55#define COOLPERIOD_SEC 10
Yann Collet4856a002015-01-24 01:58:16 +010056
57#define KB *(1 <<10)
58#define MB *(1 <<20)
59#define GB *(1U<<30)
60
Yann Colletd062f132015-12-01 01:31:17 +010061static const size_t maxMemory = (sizeof(size_t)==4) ? (2 GB - 64 MB) : (size_t)(1ULL << ((sizeof(size_t)*8)-31));
Yann Collet4856a002015-01-24 01:58:16 +010062
63static U32 g_compressibilityDefault = 50;
Yann Collet4856a002015-01-24 01:58:16 +010064
65
Yann Colletf3eca252015-10-22 15:31:46 +010066/* *************************************
Yann Colleted699e62015-12-16 02:37:24 +010067* console display
Yann Colletf3eca252015-10-22 15:31:46 +010068***************************************/
Yann Colleted699e62015-12-16 02:37:24 +010069#define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
70#define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
71static U32 g_displayLevel = 2; /* 0 : no display; 1: errors; 2 : + result + interaction + warnings; 3 : + progression; 4 : + information */
72
Yann Colletbf2bc112016-08-02 23:48:13 +020073#define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
74 if ((clock() - g_time > refreshRate) || (g_displayLevel>=4)) \
75 { g_time = clock(); DISPLAY(__VA_ARGS__); \
76 if (g_displayLevel>=4) fflush(stdout); } }
77static const clock_t refreshRate = CLOCKS_PER_SEC * 15 / 100;
78static clock_t g_time = 0;
79
Yann Colleted699e62015-12-16 02:37:24 +010080
81/* *************************************
82* Exceptions
83***************************************/
84#ifndef DEBUG
85# define DEBUG 0
86#endif
87#define DEBUGOUTPUT(...) if (DEBUG) DISPLAY(__VA_ARGS__);
88#define EXM_THROW(error, ...) \
89{ \
90 DEBUGOUTPUT("Error defined at %s, line %i : \n", __FILE__, __LINE__); \
91 DISPLAYLEVEL(1, "Error %i : ", error); \
92 DISPLAYLEVEL(1, __VA_ARGS__); \
93 DISPLAYLEVEL(1, "\n"); \
94 exit(error); \
95}
Yann Collet4856a002015-01-24 01:58:16 +010096
97
Yann Colletf3eca252015-10-22 15:31:46 +010098/* *************************************
Yann Collet4856a002015-01-24 01:58:16 +010099* Benchmark Parameters
Yann Colletf3eca252015-10-22 15:31:46 +0100100***************************************/
Yann Collet1d1ae402016-03-17 19:51:02 +0100101static U32 g_nbIterations = NBLOOPS;
Yann Collet1c00dc32015-10-21 08:22:25 +0100102static size_t g_blockSize = 0;
inikepeaba91a2016-03-23 20:30:26 +0100103int g_additionalParam = 0;
Yann Collet4856a002015-01-24 01:58:16 +0100104
inikep4e26bb62016-03-14 12:48:51 +0100105void BMK_setNotificationLevel(unsigned level) { g_displayLevel=level; }
106
inikepeaba91a2016-03-23 20:30:26 +0100107void BMK_setAdditionalParam(int additionalParam) { g_additionalParam=additionalParam; }
108
Yann Collet1d1ae402016-03-17 19:51:02 +0100109void BMK_SetNbIterations(unsigned nbLoops)
Yann Collet4856a002015-01-24 01:58:16 +0100110{
Yann Collet1d1ae402016-03-17 19:51:02 +0100111 g_nbIterations = nbLoops;
Yann Colletde4c04f2016-08-02 11:27:05 +0200112 DISPLAYLEVEL(3, "- test >= %i seconds per compression / decompression -\n", g_nbIterations);
Yann Collet4856a002015-01-24 01:58:16 +0100113}
114
Yann Collet1c00dc32015-10-21 08:22:25 +0100115void BMK_SetBlockSize(size_t blockSize)
116{
117 g_blockSize = blockSize;
inikep4e26bb62016-03-14 12:48:51 +0100118 DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
Yann Collet1c00dc32015-10-21 08:22:25 +0100119}
120
Yann Collet4856a002015-01-24 01:58:16 +0100121
Yann Colletf3eca252015-10-22 15:31:46 +0100122/* ********************************************************
Yann Collet4856a002015-01-24 01:58:16 +0100123* Bench functions
Yann Colletf3eca252015-10-22 15:31:46 +0100124**********************************************************/
Yann Collet1c00dc32015-10-21 08:22:25 +0100125typedef struct
Yann Collet4856a002015-01-24 01:58:16 +0100126{
Yann Colleted699e62015-12-16 02:37:24 +0100127 const char* srcPtr;
Yann Collet1c00dc32015-10-21 08:22:25 +0100128 size_t srcSize;
129 char* cPtr;
130 size_t cRoom;
131 size_t cSize;
132 char* resPtr;
133 size_t resSize;
134} blockParam_t;
135
inikep4e26bb62016-03-14 12:48:51 +0100136typedef struct
137{
inikepc034b732016-03-14 13:13:42 +0100138 double ratio;
inikep4e26bb62016-03-14 12:48:51 +0100139 size_t cSize;
inikepc034b732016-03-14 13:13:42 +0100140 double cSpeed;
141 double dSpeed;
inikep4e26bb62016-03-14 12:48:51 +0100142} benchResult_t;
143
Yann Collet99909862016-04-09 16:17:18 +0200144
Yann Colletbe2010e2015-10-31 12:57:14 +0100145#define MIN(a,b) ((a)<(b) ? (a) : (b))
Yann Collet2ce49232016-02-02 14:36:49 +0100146#define MAX(a,b) ((a)>(b) ? (a) : (b))
Yann Collet1c00dc32015-10-21 08:22:25 +0100147
Yann Colleted699e62015-12-16 02:37:24 +0100148static int BMK_benchMem(const void* srcBuffer, size_t srcSize,
inikep472638c2016-03-23 12:28:28 +0100149 const char* displayName, int cLevel,
Yann Collet31683c02015-12-18 01:26:48 +0100150 const size_t* fileSizes, U32 nbFiles,
inikep4e26bb62016-03-14 12:48:51 +0100151 const void* dictBuffer, size_t dictBufferSize, benchResult_t *result)
Yann Collet1c00dc32015-10-21 08:22:25 +0100152{
Yann Collet3c242e72016-07-13 14:56:24 +0200153 size_t const blockSize = (g_blockSize>=32 ? g_blockSize : srcSize) + (!srcSize) /* avoid div by 0 */ ;
Yann Colletd64f4352016-03-21 00:07:42 +0100154 U32 const maxNbBlocks = (U32) ((srcSize + (blockSize-1)) / blockSize) + nbFiles;
Yann Colleted699e62015-12-16 02:37:24 +0100155 blockParam_t* const blockTable = (blockParam_t*) malloc(maxNbBlocks * sizeof(blockParam_t));
Yann Colletb9151402016-03-26 17:18:11 +0100156 size_t const maxCompressedSize = ZSTD_compressBound(srcSize) + (maxNbBlocks * 1024); /* add some room for safety */
Yann Collet1c00dc32015-10-21 08:22:25 +0100157 void* const compressedBuffer = malloc(maxCompressedSize);
158 void* const resultBuffer = malloc(srcSize);
Yann Collet3c242e72016-07-13 14:56:24 +0200159 ZSTD_CCtx* const ctx = ZSTD_createCCtx();
160 ZSTD_DCtx* const dctx = ZSTD_createDCtx();
Yann Colletde406ee2016-03-20 15:46:10 +0100161 U32 nbBlocks;
inikep83c76b42016-04-28 13:16:01 +0200162 UTIL_time_t ticksPerSecond;
Yann Colletde406ee2016-03-20 15:46:10 +0100163
164 /* checks */
Yann Colletec224d22016-06-27 13:39:30 +0200165 if (!compressedBuffer || !resultBuffer || !blockTable || !ctx || !dctx)
Yann Collet3d2cd7f2016-06-27 15:12:26 +0200166 EXM_THROW(31, "allocation error : not enough memory");
Yann Collet4856a002015-01-24 01:58:16 +0100167
Yann Collet4856a002015-01-24 01:58:16 +0100168 /* init */
169 if (strlen(displayName)>17) displayName += strlen(displayName)-17; /* can only display 17 characters */
inikepaaaf9232016-05-09 16:19:25 +0200170 UTIL_initTimer(&ticksPerSecond);
inikep4c12f232016-03-29 14:52:13 +0200171
Yann Collet1c00dc32015-10-21 08:22:25 +0100172 /* Init blockTable data */
Yann Colletde406ee2016-03-20 15:46:10 +0100173 { const char* srcPtr = (const char*)srcBuffer;
Yann Collet1c00dc32015-10-21 08:22:25 +0100174 char* cPtr = (char*)compressedBuffer;
175 char* resPtr = (char*)resultBuffer;
Yann Collet699b14d2016-03-17 19:37:33 +0100176 U32 fileNb;
Yann Colletde406ee2016-03-20 15:46:10 +0100177 for (nbBlocks=0, fileNb=0; fileNb<nbFiles; fileNb++) {
Yann Collet70611352015-12-16 03:01:03 +0100178 size_t remaining = fileSizes[fileNb];
Yann Collet699b14d2016-03-17 19:37:33 +0100179 U32 const nbBlocksforThisFile = (U32)((remaining + (blockSize-1)) / blockSize);
180 U32 const blockEnd = nbBlocks + nbBlocksforThisFile;
Yann Colletfd416f12016-01-30 03:14:15 +0100181 for ( ; nbBlocks<blockEnd; nbBlocks++) {
Yann Colletde406ee2016-03-20 15:46:10 +0100182 size_t const thisBlockSize = MIN(remaining, blockSize);
Yann Colleted699e62015-12-16 02:37:24 +0100183 blockTable[nbBlocks].srcPtr = srcPtr;
184 blockTable[nbBlocks].cPtr = cPtr;
185 blockTable[nbBlocks].resPtr = resPtr;
186 blockTable[nbBlocks].srcSize = thisBlockSize;
187 blockTable[nbBlocks].cRoom = ZSTD_compressBound(thisBlockSize);
188 srcPtr += thisBlockSize;
189 cPtr += blockTable[nbBlocks].cRoom;
190 resPtr += thisBlockSize;
191 remaining -= thisBlockSize;
Yann Colletfd416f12016-01-30 03:14:15 +0100192 } } }
Yann Collet1c00dc32015-10-21 08:22:25 +0100193
Yann Collet4856a002015-01-24 01:58:16 +0100194 /* warmimg up memory */
Yann Colletd062f132015-12-01 01:31:17 +0100195 RDG_genBuffer(compressedBuffer, maxCompressedSize, 0.10, 0.50, 1);
Yann Collet4856a002015-01-24 01:58:16 +0100196
197 /* Bench */
inikep6d157f12016-04-15 16:54:11 +0200198 { U64 fastestC = (U64)(-1LL), fastestD = (U64)(-1LL);
Yann Colletb9151402016-03-26 17:18:11 +0100199 U64 const crcOrig = XXH64(srcBuffer, srcSize, 0);
inikep83c76b42016-04-28 13:16:01 +0200200 UTIL_time_t coolTime;
Yann Colleta9febe82016-08-01 13:37:17 +0200201 U64 const maxTime = (g_nbIterations * TIMELOOP_MICROSEC) + 100;
202 U64 totalCTime=0, totalDTime=0;
203 U32 cCompleted=0, dCompleted=0;
204# define NB_MARKS 4
205 const char* const marks[NB_MARKS] = { " |", " /", " =", "\\" };
206 U32 markNb = 0;
inikep19bd48f2016-04-04 12:10:00 +0200207 size_t cSize = 0;
208 double ratio = 0.;
Yann Collet4856a002015-01-24 01:58:16 +0100209
inikepaaaf9232016-05-09 16:19:25 +0200210 UTIL_getTime(&coolTime);
inikep4e26bb62016-03-14 12:48:51 +0100211 DISPLAYLEVEL(2, "\r%79s\r", "");
Yann Colleta9febe82016-08-01 13:37:17 +0200212 while (!cCompleted | !dCompleted) {
inikep83c76b42016-04-28 13:16:01 +0200213 UTIL_time_t clockStart;
214 U64 clockLoop = g_nbIterations ? TIMELOOP_MICROSEC : 1;
Yann Collet4856a002015-01-24 01:58:16 +0100215
Yann Collet27d3dad2016-03-11 13:41:20 +0100216 /* overheat protection */
inikep83c76b42016-04-28 13:16:01 +0200217 if (UTIL_clockSpanMicro(coolTime, ticksPerSecond) > ACTIVEPERIOD_MICROSEC) {
Yann Collet235911e2016-07-31 01:32:48 +0200218 DISPLAYLEVEL(2, "\rcooling down ... \r");
inikep83c76b42016-04-28 13:16:01 +0200219 UTIL_sleep(COOLPERIOD_SEC);
inikepaaaf9232016-05-09 16:19:25 +0200220 UTIL_getTime(&coolTime);
Yann Collet27d3dad2016-03-11 13:41:20 +0100221 }
Yann Collet4856a002015-01-24 01:58:16 +0100222
223 /* Compression */
Yann Colleta9febe82016-08-01 13:37:17 +0200224 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize);
225 if (!cCompleted) memset(compressedBuffer, 0xE5, maxCompressedSize); /* warm up and erase result buffer */
Yann Collet4856a002015-01-24 01:58:16 +0100226
Yann Collet3d2cd7f2016-06-27 15:12:26 +0200227 UTIL_sleepMilli(1); /* give processor time to other processes */
inikep83c76b42016-04-28 13:16:01 +0200228 UTIL_waitForNextTick(ticksPerSecond);
inikepaaaf9232016-05-09 16:19:25 +0200229 UTIL_getTime(&clockStart);
Yann Colletde406ee2016-03-20 15:46:10 +0100230
Yann Colleta9febe82016-08-01 13:37:17 +0200231 if (!cCompleted) { /* still some time to do compression tests */
Yann Collet3c242e72016-07-13 14:56:24 +0200232 ZSTD_parameters const zparams = ZSTD_getParams(cLevel, blockSize, dictBufferSize);
Yann Collet3d2cd7f2016-06-27 15:12:26 +0200233 ZSTD_customMem const cmem = { NULL, NULL, NULL };
234 U32 nbLoops = 0;
235 ZSTD_CDict* cdict = ZSTD_createCDict_advanced(dictBuffer, dictBufferSize, zparams, cmem);
Yann Collet3c242e72016-07-13 14:56:24 +0200236 if (cdict==NULL) EXM_THROW(1, "ZSTD_createCDict_advanced() allocation failure");
inikepc5e1d292016-04-19 09:37:59 +0200237 do {
Yann Colleta5b66e32016-03-26 01:48:27 +0100238 U32 blockNb;
Yann Colleta5b66e32016-03-26 01:48:27 +0100239 for (blockNb=0; blockNb<nbBlocks; blockNb++) {
Yann Colletee1a0842016-06-07 01:40:49 +0200240 size_t const rSize = ZSTD_compress_usingCDict(ctx,
Yann Colleta5b66e32016-03-26 01:48:27 +0100241 blockTable[blockNb].cPtr, blockTable[blockNb].cRoom,
Yann Colletee1a0842016-06-07 01:40:49 +0200242 blockTable[blockNb].srcPtr,blockTable[blockNb].srcSize,
243 cdict);
Yann Collet4c56f4a2016-06-27 13:36:54 +0200244 if (ZSTD_isError(rSize)) EXM_THROW(1, "ZSTD_compress_usingCDict() failed : %s", ZSTD_getErrorName(rSize));
Yann Colleta5b66e32016-03-26 01:48:27 +0100245 blockTable[blockNb].cSize = rSize;
inikepc5e1d292016-04-19 09:37:59 +0200246 }
247 nbLoops++;
inikep83c76b42016-04-28 13:16:01 +0200248 } while (UTIL_clockSpanMicro(clockStart, ticksPerSecond) < clockLoop);
Yann Colletee1a0842016-06-07 01:40:49 +0200249 ZSTD_freeCDict(cdict);
inikep83c76b42016-04-28 13:16:01 +0200250 { U64 const clockSpan = UTIL_clockSpanMicro(clockStart, ticksPerSecond);
inikep6d157f12016-04-15 16:54:11 +0200251 if (clockSpan < fastestC*nbLoops) fastestC = clockSpan / nbLoops;
Yann Colleta9febe82016-08-01 13:37:17 +0200252 totalCTime += clockSpan;
253 cCompleted = totalCTime>maxTime;
Yann Colletde406ee2016-03-20 15:46:10 +0100254 } }
Yann Collet4856a002015-01-24 01:58:16 +0100255
Yann Collet1c00dc32015-10-21 08:22:25 +0100256 cSize = 0;
Yann Colletde406ee2016-03-20 15:46:10 +0100257 { U32 blockNb; for (blockNb=0; blockNb<nbBlocks; blockNb++) cSize += blockTable[blockNb].cSize; }
Yann Collet2acb5d32015-10-29 16:49:43 +0100258 ratio = (double)srcSize / (double)cSize;
Yann Colleta9febe82016-08-01 13:37:17 +0200259 markNb = (markNb+1) % NB_MARKS;
260 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s\r",
261 marks[markNb], displayName, (U32)srcSize, (U32)cSize, ratio,
inikep06f793a2016-03-29 11:17:58 +0200262 (double)srcSize / fastestC );
Yann Collet4856a002015-01-24 01:58:16 +0100263
Yann Colleta5b66e32016-03-26 01:48:27 +0100264 (void)fastestD; (void)crcOrig; /* unused when decompression disabled */
Yann Collete93d6ce2016-01-31 00:58:06 +0100265#if 1
Yann Collet4856a002015-01-24 01:58:16 +0100266 /* Decompression */
Yann Collet7b51a292016-01-26 15:58:49 +0100267 memset(resultBuffer, 0xD6, srcSize); /* warm result buffer */
Yann Collet4856a002015-01-24 01:58:16 +0100268
inikep83c76b42016-04-28 13:16:01 +0200269 UTIL_sleepMilli(1); /* give processor time to other processes */
270 UTIL_waitForNextTick(ticksPerSecond);
inikepaaaf9232016-05-09 16:19:25 +0200271 UTIL_getTime(&clockStart);
Yann Collet7b51a292016-01-26 15:58:49 +0100272
Yann Colleta9febe82016-08-01 13:37:17 +0200273 if (!dCompleted) {
274 U32 nbLoops = 0;
Yann Colletee1a0842016-06-07 01:40:49 +0200275 ZSTD_DDict* ddict = ZSTD_createDDict(dictBuffer, dictBufferSize);
276 if (!ddict) EXM_THROW(2, "ZSTD_createDDict() allocation failure");
inikepc5e1d292016-04-19 09:37:59 +0200277 do {
Yann Colleta5b66e32016-03-26 01:48:27 +0100278 U32 blockNb;
Yann Colleta5b66e32016-03-26 01:48:27 +0100279 for (blockNb=0; blockNb<nbBlocks; blockNb++) {
Yann Colletee1a0842016-06-07 01:40:49 +0200280 size_t const regenSize = ZSTD_decompress_usingDDict(dctx,
Yann Colleta5b66e32016-03-26 01:48:27 +0100281 blockTable[blockNb].resPtr, blockTable[blockNb].srcSize,
Yann Colletee1a0842016-06-07 01:40:49 +0200282 blockTable[blockNb].cPtr, blockTable[blockNb].cSize,
283 ddict);
Yann Colleta5b66e32016-03-26 01:48:27 +0100284 if (ZSTD_isError(regenSize)) {
Yann Collet4c56f4a2016-06-27 13:36:54 +0200285 DISPLAY("ZSTD_decompress_usingDDict() failed on block %u : %s \n",
Yann Colleta5b66e32016-03-26 01:48:27 +0100286 blockNb, ZSTD_getErrorName(regenSize));
inikep19bd48f2016-04-04 12:10:00 +0200287 clockLoop = 0; /* force immediate test end */
Yann Colleta5b66e32016-03-26 01:48:27 +0100288 break;
289 }
290 blockTable[blockNb].resSize = regenSize;
inikepc5e1d292016-04-19 09:37:59 +0200291 }
292 nbLoops++;
inikep83c76b42016-04-28 13:16:01 +0200293 } while (UTIL_clockSpanMicro(clockStart, ticksPerSecond) < clockLoop);
Yann Colletee1a0842016-06-07 01:40:49 +0200294 ZSTD_freeDDict(ddict);
inikep83c76b42016-04-28 13:16:01 +0200295 { U64 const clockSpan = UTIL_clockSpanMicro(clockStart, ticksPerSecond);
inikep6d157f12016-04-15 16:54:11 +0200296 if (clockSpan < fastestD*nbLoops) fastestD = clockSpan / nbLoops;
Yann Colleta9febe82016-08-01 13:37:17 +0200297 totalDTime += clockSpan;
298 dCompleted = totalDTime>maxTime;
Yann Collet7b51a292016-01-26 15:58:49 +0100299 } }
300
Yann Colleta9febe82016-08-01 13:37:17 +0200301 markNb = (markNb+1) % NB_MARKS;
302 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->%10u (%5.3f),%6.1f MB/s ,%6.1f MB/s\r",
303 marks[markNb], displayName, (U32)srcSize, (U32)cSize, ratio,
inikep06f793a2016-03-29 11:17:58 +0200304 (double)srcSize / fastestC,
305 (double)srcSize / fastestD );
Yann Collet4856a002015-01-24 01:58:16 +0100306
307 /* CRC Checking */
Yann Collete162ace2016-05-20 11:24:35 +0200308 { U64 const crcCheck = XXH64(resultBuffer, srcSize, 0);
Yann Colleta5b66e32016-03-26 01:48:27 +0100309 if (crcOrig!=crcCheck) {
310 size_t u;
311 DISPLAY("!!! WARNING !!! %14s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOrig, (unsigned)crcCheck);
312 for (u=0; u<srcSize; u++) {
313 if (((const BYTE*)srcBuffer)[u] != ((const BYTE*)resultBuffer)[u]) {
314 U32 segNb, bNb, pos;
315 size_t bacc = 0;
316 DISPLAY("Decoding error at pos %u ", (U32)u);
317 for (segNb = 0; segNb < nbBlocks; segNb++) {
318 if (bacc + blockTable[segNb].srcSize > u) break;
319 bacc += blockTable[segNb].srcSize;
320 }
321 pos = (U32)(u - bacc);
322 bNb = pos / (128 KB);
323 DISPLAY("(block %u, sub %u, pos %u) \n", segNb, bNb, pos);
324 break;
Yann Collet03a6dab2016-01-21 02:21:17 +0100325 }
Yann Colleta5b66e32016-03-26 01:48:27 +0100326 if (u==srcSize-1) { /* should never happen */
327 DISPLAY("no difference detected\n");
328 } }
329 break;
330 } } /* CRC Checking */
Yann Collete8c6bb12015-07-26 00:23:57 +0100331#endif
Yann Colletde406ee2016-03-20 15:46:10 +0100332 } /* for (testNb = 1; testNb <= (g_nbIterations + !g_nbIterations); testNb++) */
Yann Collet4856a002015-01-24 01:58:16 +0100333
Yann Collete162ace2016-05-20 11:24:35 +0200334 result->ratio = ratio;
335 result->cSize = cSize;
336 result->cSpeed = (double)srcSize / fastestC;
337 result->dSpeed = (double)srcSize / fastestD;
inikep2872b6f2016-03-22 14:38:34 +0100338 DISPLAYLEVEL(2, "%2i#\n", cLevel);
Yann Colletde406ee2016-03-20 15:46:10 +0100339 } /* Bench */
Yann Collet4856a002015-01-24 01:58:16 +0100340
Yann Colleted699e62015-12-16 02:37:24 +0100341 /* clean up */
inikep0bd0fae2016-05-05 13:10:57 +0200342 free(blockTable);
Yann Collet4856a002015-01-24 01:58:16 +0100343 free(compressedBuffer);
344 free(resultBuffer);
Yann Collet31683c02015-12-18 01:26:48 +0100345 ZSTD_freeCCtx(ctx);
346 ZSTD_freeDCtx(dctx);
Yann Collet4856a002015-01-24 01:58:16 +0100347 return 0;
348}
349
350
Yann Collet4856a002015-01-24 01:58:16 +0100351static size_t BMK_findMaxMem(U64 requiredMem)
352{
Yann Colletde406ee2016-03-20 15:46:10 +0100353 size_t const step = 64 MB;
Yann Collet4856a002015-01-24 01:58:16 +0100354 BYTE* testmem = NULL;
355
356 requiredMem = (((requiredMem >> 26) + 1) << 26);
Yann Colletde406ee2016-03-20 15:46:10 +0100357 requiredMem += step;
Yann Collet050efba2015-11-03 09:49:30 +0100358 if (requiredMem > maxMemory) requiredMem = maxMemory;
Yann Collet4856a002015-01-24 01:58:16 +0100359
Yann Colletde406ee2016-03-20 15:46:10 +0100360 do {
Yann Collet4856a002015-01-24 01:58:16 +0100361 testmem = (BYTE*)malloc((size_t)requiredMem);
Yann Colletde406ee2016-03-20 15:46:10 +0100362 requiredMem -= step;
363 } while (!testmem);
364
Yann Collet4856a002015-01-24 01:58:16 +0100365 free(testmem);
Yann Colletde406ee2016-03-20 15:46:10 +0100366 return (size_t)(requiredMem);
Yann Collet4856a002015-01-24 01:58:16 +0100367}
368
Yann Colleted699e62015-12-16 02:37:24 +0100369static void BMK_benchCLevel(void* srcBuffer, size_t benchedSize,
inikepeaba91a2016-03-23 20:30:26 +0100370 const char* displayName, int cLevel, int cLevelLast,
Yann Collet31683c02015-12-18 01:26:48 +0100371 const size_t* fileSizes, unsigned nbFiles,
372 const void* dictBuffer, size_t dictBufferSize)
Yann Collet4856a002015-01-24 01:58:16 +0100373{
Yann Collet235911e2016-07-31 01:32:48 +0200374 benchResult_t result;
inikepe9554b72016-03-14 18:10:30 +0100375 int l;
inikep4e26bb62016-03-14 12:48:51 +0100376
inikepe9554b72016-03-14 18:10:30 +0100377 const char* pch = strrchr(displayName, '\\'); /* Windows */
378 if (!pch) pch = strrchr(displayName, '/'); /* Linux */
379 if (pch) displayName = pch+1;
inikep4e26bb62016-03-14 12:48:51 +0100380
inikepea4ee3e2016-04-25 13:09:06 +0200381 SET_HIGH_PRIORITY;
382
inikepe9554b72016-03-14 18:10:30 +0100383 memset(&result, 0, sizeof(result));
inikep5fdd0b42016-03-14 19:51:11 +0100384
inikepeaba91a2016-03-23 20:30:26 +0100385 if (g_displayLevel == 1 && !g_additionalParam)
inikepd7d251c2016-06-22 16:13:25 +0200386 DISPLAY("bench %s %s: input %u bytes, %i iterations, %u KB blocks\n", ZSTD_VERSION_STRING, ZSTD_GIT_COMMIT_STRING, (U32)benchedSize, g_nbIterations, (U32)(g_blockSize>>10));
inikepe9554b72016-03-14 18:10:30 +0100387
388 if (cLevelLast < cLevel) cLevelLast = cLevel;
389
Yann Collet99909862016-04-09 16:17:18 +0200390 for (l=cLevel; l <= cLevelLast; l++) {
inikepe9554b72016-03-14 18:10:30 +0100391 BMK_benchMem(srcBuffer, benchedSize,
inikep472638c2016-03-23 12:28:28 +0100392 displayName, l,
inikepe9554b72016-03-14 18:10:30 +0100393 fileSizes, nbFiles,
394 dictBuffer, dictBufferSize, &result);
395 if (g_displayLevel == 1) {
inikepeaba91a2016-03-23 20:30:26 +0100396 if (g_additionalParam)
inikep38654982016-04-21 12:18:47 +0200397 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);
inikepd700a1a2016-03-15 12:18:44 +0100398 else
inikep38654982016-04-21 12:18:47 +0200399 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);
Yann Collet99909862016-04-09 16:17:18 +0200400 } }
Yann Colleted699e62015-12-16 02:37:24 +0100401}
402
Yann Colleted699e62015-12-16 02:37:24 +0100403
Yann Colleta5b66e32016-03-26 01:48:27 +0100404/*! BMK_loadFiles() :
405 Loads `buffer` with content of files listed within `fileNamesTable`.
406 At most, fills `buffer` entirely */
Yann Collet70611352015-12-16 03:01:03 +0100407static void BMK_loadFiles(void* buffer, size_t bufferSize,
408 size_t* fileSizes,
Yann Colleta5b66e32016-03-26 01:48:27 +0100409 const char** fileNamesTable, unsigned nbFiles)
Yann Colleted699e62015-12-16 02:37:24 +0100410{
inikepc0d5f4e2016-04-13 10:48:04 +0200411 size_t pos = 0, totalSize = 0;
Yann Collet699b14d2016-03-17 19:37:33 +0100412 unsigned n;
Yann Colletfd416f12016-01-30 03:14:15 +0100413 for (n=0; n<nbFiles; n++) {
Yann Collete162ace2016-05-20 11:24:35 +0200414 FILE* f;
inikep69fcd7c2016-04-28 12:23:33 +0200415 U64 fileSize = UTIL_getFileSize(fileNamesTable[n]);
416 if (UTIL_isDirectory(fileNamesTable[n])) {
inikepc0d5f4e2016-04-13 10:48:04 +0200417 DISPLAYLEVEL(2, "Ignoring %s directory... \n", fileNamesTable[n]);
inikepbab43172016-04-29 15:19:40 +0200418 fileSizes[n] = 0;
inikepc0d5f4e2016-04-13 10:48:04 +0200419 continue;
420 }
inikepea4ee3e2016-04-25 13:09:06 +0200421 f = fopen(fileNamesTable[n], "rb");
Yann Colleted699e62015-12-16 02:37:24 +0100422 if (f==NULL) EXM_THROW(10, "impossible to open file %s", fileNamesTable[n]);
Yann Colletbf2bc112016-08-02 23:48:13 +0200423 DISPLAYUPDATE(2, "Loading %s... \r", fileNamesTable[n]);
Yann Colleta5b66e32016-03-26 01:48:27 +0100424 if (fileSize > bufferSize-pos) fileSize = bufferSize-pos, nbFiles=n; /* buffer too small - stop after this file */
425 { size_t const readSize = fread(((char*)buffer)+pos, 1, (size_t)fileSize, f);
426 if (readSize != (size_t)fileSize) EXM_THROW(11, "could not read %s", fileNamesTable[n]);
427 pos += readSize; }
Yann Colleta52c98d2015-12-16 03:12:31 +0100428 fileSizes[n] = (size_t)fileSize;
inikepc0d5f4e2016-04-13 10:48:04 +0200429 totalSize += (size_t)fileSize;
Yann Colleted699e62015-12-16 02:37:24 +0100430 fclose(f);
431 }
Yann Collet6f9c0562016-05-01 10:26:30 +0200432
inikepc0d5f4e2016-04-13 10:48:04 +0200433 if (totalSize == 0) EXM_THROW(12, "no data to bench");
Yann Colleted699e62015-12-16 02:37:24 +0100434}
435
Yann Collet31683c02015-12-18 01:26:48 +0100436static void BMK_benchFileTable(const char** fileNamesTable, unsigned nbFiles,
inikepeaba91a2016-03-23 20:30:26 +0100437 const char* dictFileName, int cLevel, int cLevelLast)
Yann Colleted699e62015-12-16 02:37:24 +0100438{
439 void* srcBuffer;
440 size_t benchedSize;
Yann Collet31683c02015-12-18 01:26:48 +0100441 void* dictBuffer = NULL;
442 size_t dictBufferSize = 0;
443 size_t* fileSizes = (size_t*)malloc(nbFiles * sizeof(size_t));
Yann Collete162ace2016-05-20 11:24:35 +0200444 U64 const totalSizeToLoad = UTIL_getTotalFileSize(fileNamesTable, nbFiles);
Yann Colleted699e62015-12-16 02:37:24 +0100445 char mfName[20] = {0};
Yann Colleted699e62015-12-16 02:37:24 +0100446
Yann Collet31683c02015-12-18 01:26:48 +0100447 if (!fileSizes) EXM_THROW(12, "not enough memory for fileSizes");
448
449 /* Load dictionary */
Yann Colletfd416f12016-01-30 03:14:15 +0100450 if (dictFileName != NULL) {
inikep69fcd7c2016-04-28 12:23:33 +0200451 U64 dictFileSize = UTIL_getFileSize(dictFileName);
Yann Collet31683c02015-12-18 01:26:48 +0100452 if (dictFileSize > 64 MB) EXM_THROW(10, "dictionary file %s too large", dictFileName);
453 dictBufferSize = (size_t)dictFileSize;
454 dictBuffer = malloc(dictBufferSize);
455 if (dictBuffer==NULL) EXM_THROW(11, "not enough memory for dictionary (%u bytes)", (U32)dictBufferSize);
456 BMK_loadFiles(dictBuffer, dictBufferSize, fileSizes, &dictFileName, 1);
457 }
458
Yann Colleted699e62015-12-16 02:37:24 +0100459 /* Memory allocation & restrictions */
460 benchedSize = BMK_findMaxMem(totalSizeToLoad * 3) / 3;
461 if ((U64)benchedSize > totalSizeToLoad) benchedSize = (size_t)totalSizeToLoad;
462 if (benchedSize < totalSizeToLoad)
463 DISPLAY("Not enough memory; testing %u MB only...\n", (U32)(benchedSize >> 20));
464 srcBuffer = malloc(benchedSize);
465 if (!srcBuffer) EXM_THROW(12, "not enough memory");
466
467 /* Load input buffer */
Yann Collet70611352015-12-16 03:01:03 +0100468 BMK_loadFiles(srcBuffer, benchedSize, fileSizes, fileNamesTable, nbFiles);
Yann Colleted699e62015-12-16 02:37:24 +0100469
470 /* Bench */
471 snprintf (mfName, sizeof(mfName), " %u files", nbFiles);
Yann Collete162ace2016-05-20 11:24:35 +0200472 { const char* displayName = (nbFiles > 1) ? mfName : fileNamesTable[0];
473 BMK_benchCLevel(srcBuffer, benchedSize,
474 displayName, cLevel, cLevelLast,
475 fileSizes, nbFiles,
476 dictBuffer, dictBufferSize);
477 }
Yann Collet4856a002015-01-24 01:58:16 +0100478
Yann Colleteeb8ba12015-10-22 16:55:40 +0100479 /* clean up */
Yann Collet4856a002015-01-24 01:58:16 +0100480 free(srcBuffer);
Yann Collet31683c02015-12-18 01:26:48 +0100481 free(dictBuffer);
Yann Collet70611352015-12-16 03:01:03 +0100482 free(fileSizes);
Yann Collet4856a002015-01-24 01:58:16 +0100483}
484
485
inikepeaba91a2016-03-23 20:30:26 +0100486static void BMK_syntheticTest(int cLevel, int cLevelLast, double compressibility)
Yann Collet4856a002015-01-24 01:58:16 +0100487{
Yann Colleted699e62015-12-16 02:37:24 +0100488 char name[20] = {0};
Yann Collet4856a002015-01-24 01:58:16 +0100489 size_t benchedSize = 10000000;
Yann Collete162ace2016-05-20 11:24:35 +0200490 void* const srcBuffer = malloc(benchedSize);
Yann Collet4856a002015-01-24 01:58:16 +0100491
Yann Collet4856a002015-01-24 01:58:16 +0100492 /* Memory allocation */
Yann Colleted699e62015-12-16 02:37:24 +0100493 if (!srcBuffer) EXM_THROW(21, "not enough memory");
Yann Collet4856a002015-01-24 01:58:16 +0100494
495 /* Fill input buffer */
Yann Colletd062f132015-12-01 01:31:17 +0100496 RDG_genBuffer(srcBuffer, benchedSize, compressibility, 0.0, 0);
Yann Collet4856a002015-01-24 01:58:16 +0100497
498 /* Bench */
Yann Colleted699e62015-12-16 02:37:24 +0100499 snprintf (name, sizeof(name), "Synthetic %2u%%", (unsigned)(compressibility*100));
inikepeaba91a2016-03-23 20:30:26 +0100500 BMK_benchCLevel(srcBuffer, benchedSize, name, cLevel, cLevelLast, &benchedSize, 1, NULL, 0);
Yann Collet4856a002015-01-24 01:58:16 +0100501
Yann Colleted699e62015-12-16 02:37:24 +0100502 /* clean up */
Yann Collet4856a002015-01-24 01:58:16 +0100503 free(srcBuffer);
Yann Collet4856a002015-01-24 01:58:16 +0100504}
505
506
Yann Collet31683c02015-12-18 01:26:48 +0100507int BMK_benchFiles(const char** fileNamesTable, unsigned nbFiles,
inikep957823f2016-05-25 15:30:55 +0200508 const char* dictFileName, int cLevel, int cLevelLast)
Yann Collet4856a002015-01-24 01:58:16 +0100509{
Yann Collet699b14d2016-03-17 19:37:33 +0100510 double const compressibility = (double)g_compressibilityDefault / 100;
Yann Collet4856a002015-01-24 01:58:16 +0100511
512 if (nbFiles == 0)
inikepeaba91a2016-03-23 20:30:26 +0100513 BMK_syntheticTest(cLevel, cLevelLast, compressibility);
Yann Collet4856a002015-01-24 01:58:16 +0100514 else
inikepeaba91a2016-03-23 20:30:26 +0100515 BMK_benchFileTable(fileNamesTable, nbFiles, dictFileName, cLevel, cLevelLast);
Yann Collet4856a002015-01-24 01:58:16 +0100516 return 0;
517}