Justin Willmert
Justin Willmert
No, it's not the same since you can't use arbitrary Markdown and formatted paragraph text within the alt-text. The use of ``+`` (or `figure` environment with `\caption{...}` in LaTeX) also...
Oh, also with this PR: ```julia julia> using HDF5 julia> b = create_datatype(HDF5.H5T_ENUM, sizeof(Bool)) HDF5.h5t_enum_insert(b, "FALSE", false) HDF5.h5t_enum_insert(b, "TRUE", true) b HDF5.Datatype: H5T_ENUM { H5T_STD_I8LE; "FALSE" 0; "TRUE" 1; }...
Just out of curiosity: rebased on master (307e7dbe8367f573782dfc14c961de7cb64f7849), and running my timing script: ``` master precompile: 2.272 ± 0.0294 master pkg load: 0.624 ± 0.0097 master pkg test: 47.815 ±...
I'm not in a rush to merge this — was just rebasing some branches and thought I'd just leave a contextual breadcrumb. Invalidations aren't the thing that this is trying...
Yeah, its the very dynamic nature of operations like e.g. `read(::Dataset) -> ???` that is going to be the limiting case. I'm guessing something that will also help is using...
This is what I get on master, a rebased version of this PR, and then a branch where I've additionally removed the deprecations file. ``` master precompile: 2.378 ± 0.0274...
The section that describes [Reading and writing data](https://juliaio.github.io/HDF5.jl/stable/#Reading-and-writing-data) does mention `read`, though I see why it'd be easy to skim over that and not notice. ```julia h5open(file, "r") do fid...
From https://portal.hdfgroup.org/display/HDF5/H5L_CREATE_EXTERNAL: > Restriction: A file close degree property setting (H5P_SET_FCLOSE_DEGREE) in the external link file access property list or in the external link callback function will be ignored. A...
Trying that out doesn't actually work :-\
Can you show the output of `st -m` from the Pkg REPL? I'm going to guess you're using JLD with HDF5 v0.13.6 and HDF5_jll v1.12.0. I may have debugged a...