We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66433ae commit 5109383Copy full SHA for 5109383
src/pynxtools/dataconverter/chunk.py
@@ -17,6 +17,9 @@
17
#
18
"""Configuration defaults of the dataconverter."""
19
20
+import numpy as np
21
+
22
+from pynxtools.dataconverter.helpers import logger
23
24
# HDF5 data storage layout for HDF5 datasets is "contiguous" unless
25
# one wraps the payload for a dataconverter template into a dictionary with
@@ -72,13 +75,6 @@
72
75
73
76
CHUNK_CONFIG_DEFAULT = CHUNK_CONFIG_HFIVEPY
74
77
-import numpy as np
-
-# from pynxtools.dataconverter.chunk import CHUNK_CONFIG_DEFAULT
78
-from pynxtools.dataconverter.helpers import logger
79
80
-"""Utilities for overwriting h5py chunking heuristic to consider domain-specific access pattern."""
81
82
83
def prioritized_axes_heuristic(
84
data: np.ndarray,
0 commit comments