Commit 23133cdb authored by Felix Handte's avatar Felix Handte Committed by Facebook GitHub Bot

Back out "Change Context Pool Stripes from 4 to 128"

Summary:
Original commit changeset: 7b10cb9dd2c4

`configerator_proxy2` reports a big memory regression. Reverting until we understand what's going on and have a plan to address it.

(Note: this ignores all push blocking failures!)

Differential Revision: D30401909

fbshipit-source-id: 28443ba08b75c634021965319fead2f8a36b7235
parent 8522192e
...@@ -65,13 +65,13 @@ using ZSTD_CCtx_Pool = CompressionCoreLocalContextPool< ...@@ -65,13 +65,13 @@ using ZSTD_CCtx_Pool = CompressionCoreLocalContextPool<
ZSTD_CCtx_Creator, ZSTD_CCtx_Creator,
ZSTD_CCtx_Deleter, ZSTD_CCtx_Deleter,
ZSTD_CCtx_Resetter, ZSTD_CCtx_Resetter,
128>; 4>;
using ZSTD_DCtx_Pool = CompressionCoreLocalContextPool< using ZSTD_DCtx_Pool = CompressionCoreLocalContextPool<
ZSTD_DCtx, ZSTD_DCtx,
ZSTD_DCtx_Creator, ZSTD_DCtx_Creator,
ZSTD_DCtx_Deleter, ZSTD_DCtx_Deleter,
ZSTD_DCtx_Resetter, ZSTD_DCtx_Resetter,
128>; 4>;
/** /**
* Returns a clean ZSTD_CCtx. * Returns a clean ZSTD_CCtx.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment