Skip to content

Commit 8846d62

Browse files
committed
chore: make SyncCodecPipeline the default for benchmarking
This branch exists to run CI benchmarks against SyncCodecPipeline. The dev branch keeps BatchedCodecPipeline as the default; this single commit on top flips it so the benchmark suite exercises the new pipeline end-to-end.
1 parent a84a15a commit 8846d62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/zarr/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def enable_gpu(self) -> ConfigSet:
104104
"threading": {"max_workers": None},
105105
"json_indent": 2,
106106
"codec_pipeline": {
107-
"path": "zarr.core.codec_pipeline.BatchedCodecPipeline",
107+
"path": "zarr.core.codec_pipeline.SyncCodecPipeline",
108108
"batch_size": 1,
109109
},
110110
"codecs": {

tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_config_defaults_set() -> None:
6161
"threading": {"max_workers": None},
6262
"json_indent": 2,
6363
"codec_pipeline": {
64-
"path": "zarr.core.codec_pipeline.BatchedCodecPipeline",
64+
"path": "zarr.core.codec_pipeline.SyncCodecPipeline",
6565
"batch_size": 1,
6666
},
6767
"codecs": {

0 commit comments

Comments
 (0)