From 986f614bed5d05b44070e752ee4925998347aaf7 Mon Sep 17 00:00:00 2001 From: x Date: Thu, 19 Dec 2019 18:45:14 +0100 Subject: [PATCH] IcBench: Integer Compression codecs --- plugins.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins.cc b/plugins.cc index 5a1b32f..8474859 100644 --- a/plugins.cc +++ b/plugins.cc @@ -207,6 +207,13 @@ enum { #endif P_QMX, + #if defined(VTENC) +#define C_VTENC CODEC1 + #else +#define C_VTENC 0 + #endif + P_VTENC, + #ifdef __ARM_NEON #define C_SIMDCOMP128 0 #else @@ -325,6 +332,7 @@ struct codecs codecs[] = { { C_STREAMVBYTE, "Streamvbyte", "https://github.com/lemire/streamvbyte" }, { C_VARINTG8IU, "VarintG8IU", "https://github.com/lemire/FastPFor" }, { C_ZLIB, "zlib", "http://zlib.net\thttps://github.com/madler/zlib" }, + { C_VTENC, "VTEnc", "VTENC" }, { C_MEMCPY, "memcpy/copy", "--------------------------------------" }, { -1 } };