2017-08-18 23:52:05 +00:00
|
|
|
/*
|
2016-08-30 17:04:33 +00:00
|
|
|
* Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
2017-08-18 23:52:05 +00: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 07:09:23 +00:00
|
|
|
* You may select, at your option, one of the above-listed licenses.
|
2016-08-30 17:04:33 +00:00
|
|
|
*/
|
2015-01-24 00:58:16 +00:00
|
|
|
|
|
|
|
|
2016-05-31 00:29:45 +00:00
|
|
|
#ifndef BENCH_H_121279284357
|
|
|
|
#define BENCH_H_121279284357
|
2015-01-24 00:58:16 +00:00
|
|
|
|
2016-12-07 00:49:23 +00:00
|
|
|
#include <stddef.h> /* size_t */
|
2016-12-13 12:03:41 +00:00
|
|
|
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_compressionParameters */
|
|
|
|
#include "zstd.h" /* ZSTD_compressionParameters */
|
2015-01-24 00:58:16 +00:00
|
|
|
|
2017-11-17 09:21:40 +00:00
|
|
|
int BMK_benchFiles(const char** fileNamesTable, unsigned nbFiles, const char* dictFileName,
|
|
|
|
int cLevel, int cLevelLast, const ZSTD_compressionParameters* compressionParams);
|
2015-01-24 00:58:16 +00:00
|
|
|
|
|
|
|
/* Set Parameters */
|
2017-01-20 00:59:56 +00:00
|
|
|
void BMK_setNbSeconds(unsigned nbLoops);
|
|
|
|
void BMK_setBlockSize(size_t blockSize);
|
2018-02-02 03:29:30 +00:00
|
|
|
void BMK_setNbWorkers(unsigned nbWorkers);
|
2017-11-17 08:02:37 +00:00
|
|
|
void BMK_setRealTime(unsigned priority);
|
2016-03-14 11:48:51 +00:00
|
|
|
void BMK_setNotificationLevel(unsigned level);
|
2017-11-17 08:22:55 +00:00
|
|
|
void BMK_setSeparateFiles(unsigned separate);
|
2016-12-28 15:11:09 +00:00
|
|
|
void BMK_setAdditionalParam(int additionalParam);
|
|
|
|
void BMK_setDecodeOnlyMode(unsigned decodeFlag);
|
2017-07-28 22:51:33 +00:00
|
|
|
void BMK_setLdmFlag(unsigned ldmFlag);
|
2017-09-01 21:52:51 +00:00
|
|
|
void BMK_setLdmMinMatch(unsigned ldmMinMatch);
|
|
|
|
void BMK_setLdmHashLog(unsigned ldmHashLog);
|
2017-09-03 04:10:36 +00:00
|
|
|
void BMK_setLdmBucketSizeLog(unsigned ldmBucketSizeLog);
|
2017-09-01 21:52:51 +00:00
|
|
|
void BMK_setLdmHashEveryLog(unsigned ldmHashEveryLog);
|
2015-01-24 00:58:16 +00:00
|
|
|
|
2016-12-07 00:49:23 +00:00
|
|
|
#endif /* BENCH_H_121279284357 */
|