Magnus Ulimoen

Results 23 issues of Magnus Ulimoen

The following snippet fails when executing with miri on the latest nightly ```rust use ndarray::*; fn main() { let a1 = arr2(&[[1.0, 2.0], [3.0, 4.0]]); let a2 = arr2(&[[2.0, 3.0],...

This is a discussion issue for how to handle unsorted indices in arrays and matrices. The situation as it is today is relaxed, we try to avoid it, having unsorted...

In order to get all items of an object, we need to call `H5Literate`. The current API only exposes this as `member_names` (`attr_names` in #64), where we collect all items...

This adds a feature toggle to allow more recent versions of hdf5, 1.12.1 or 1.13.1. Crate size is 9.2M, should still be small enough to be uploaded to crates.io.

Expands on the idea of @ajtribick in #204 Builds on top of #207 since this will require some new feature flags

This exposes the new chunk iterator in hdf5 1.13 Builds on top of #207, will be rebased once that is merged

Fixes error messages not being silenced in a multi-threaded setting as mentioned in https://github.com/aldanor/hdf5-rust/issues/155#issuecomment-1090189833

The behaviour in `h5py` is to raise an error when trying to apply chunking/compression filters to dataset. This PR adds the same behaviour. Fixes #212