Mark Kittisopikul
Mark Kittisopikul
Incremental parsing support has been ported upstream from Cling to Clang. This should be helpful to support REPL applications. https://root.cern/blog/cling-in-llvm/ https://reviews.llvm.org/D96033
Report via Slack: https://julialang.slack.com/archives/C6A044SQH/p1655221621792669 > I am having a problem with the Interpolations.jl package. Trying to do a periodic cubic spline interpolation results in the following: ``` julia> itp =...
I would like to start working towards a 1.0 release of this package. There is a lot of work to do, but it is time to start enumerating what needs...
Clang.jl is able to read C headers and automatically generate Julia bindings. Following the instructions at https://juliainterop.github.io/Clang.jl/stable/ , I have generated a module `LibHDF5`. As-is, I believe this is useful...
When running long jobs, I'm occasionally running into this traces like this. What I think is happening is that the finalizer is running to close out a property while another...
In working through #979 I discovered that our `H5O_info[1]_t` definition is incorrect. https://cs.github.com/HDFGroup/hdf5/blob/c064d3481b582653c1e0d0043a17527fd73e8c4d/src/H5Opublic.h#L1690 ```C typedef struct H5O_info1_t { unsigned long fileno; /**< File number that object is located in */...
read_attribute(attr::Attribute, memtype::Datatype, buf) should be read_attribute! https://github.com/JuliaIO/HDF5.jl/blob/78903b674ae53369db500b6081a5caf0415174d2/src/attributes.jl#L70
Should `HDF5.Dataset` be an `AbstractArray`? Alternatively, should we build a wrapper? ```julia julia> struct DatasetArrayWrapper{T, N} DatasetArrayWrapper(parent::HDF5.Dataset) = DatasetArrayWrapper{eltype(parent), ndims(parent)}(parent) DatasetArrayWrapper julia> Base.size(w::DatasetArrayWrapper) = size(w.parent) julia> Base.getindex(w::DatasetArrayWrapper, I...) = getindex(w.parent,...