Skip to content

Commit

Permalink
Merge pull request #84 from legend-exp/dev
Browse files Browse the repository at this point in the history
Switch to LZF as default HDF5 compression
  • Loading branch information
gipert authored Apr 26, 2024
2 parents b4e312e + 3e5b619 commit 04897fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lgdo/lh5/_serializers/write/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

log = logging.getLogger(__name__)

DEFAULT_HDF5_SETTINGS: dict[str, ...] = {"shuffle": True, "compression": "gzip"}
DEFAULT_HDF5_SETTINGS: dict[str, ...] = {"shuffle": True, "compression": "lzf"}


def _h5_write_array(
Expand Down

0 comments on commit 04897fd

Please sign in to comment.