We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9517b60 commit 8dddbcaCopy full SHA for 8dddbca
asv_bench/benchmarks/dataset_io.py
@@ -593,7 +593,7 @@ def load(self) -> tuple:
593
n_variables = 2000
594
595
# Important to have a shape and dtype for lazy loading.
596
- shape = (1,)
+ shape = (1000,)
597
dtype = np.dtype(int)
598
variables = {
599
f"long_variable_name_{v}": xr.Variable(
@@ -643,7 +643,7 @@ def open_dataset(
643
644
self.engine = PerformanceBackend
645
646
- @parameterized(["chunks"], ([None, {}]))
+ @parameterized(["chunks"], ([None, {}, {"time": 10}]))
647
def time_open_dataset(self, chunks):
648
"""
649
Time how fast xr.open_dataset is without the slow data reading part.
0 commit comments