Juniper Tyree

Results 292 comments of Juniper Tyree

I also just stumbled across this issue

> > know the data indices as part of the entire dataset (essentially not just in the chunk but with the chunk's offset) > > This is not possible today...

That would probably be an even better approach. A codec could report that it needs additional stencil elements in different dimensions. Codecs that come before in the pipeline could then...

In my usecase, the compressor needs to analyse relationships between neighbouring elements. If we don’t use a stencil, there will be artefacts at the chunk boundaries. Once I can share...

What's the status of this PR?

I briefly tried the threading approach by only minimally modifying the generated trait methods, which was only seems possible with lots of handwavy unsafe code. It looks like I might...

> One option I've considered in the past is that this could be done on a per-method basis. For example most trait methods could take `&mut self` but they could...

It seems like the core module linker provides host functions access to a caller struct (https://docs.rs/wasmtime/latest/wasmtime/struct.Caller.html), which allows looking up exports, here: https://docs.rs/wasmtime/latest/wasmtime/struct.Linker.html#method.func_new But the component linker only provides the...

> Thanks for detailing a bit more, I can definitely see how this is tricky. From a WIT perspective what you're describing is not possible to do because imports cannot...

This is unfortunately `serde`'s fault and `ron` cannot do anything about it. When a struct contains any flattened fields, `serde` serializes it as a map (since serializing a struct requires...