Ralf Biedert
Ralf Biedert
Various notes to self: - the crate is not really dead, the cross-platform SIMD situation has just been a bit ... frustrating - once something like packed SIMD ever stabilizes...
Blocked by - [ ] Need high-performance matrix library that abstracts away sparse and dense (SIMD) matrices. - [ ] In turn blocked by [num-traits](https://github.com/rust-num/num-traits) abstraction to handle scalar and...
I had a branch with some progress on this before a small "SSD upgrade accident", basic idea was struct methods needed to be defined as traits, with annotations on traits...
Single field `#[repr(C)]` structs containing integer fields should generate these helpers: ```csharp public partial struct InstanceID : IComparable, IEquatable { public static InstanceID From(int id) { return new InstanceID {...
When working cross platform, in particular when producing a dylib from Rust and then again consuming it, the current resolution of `#[link(name = "mylib"]` is somewhat confusing. - If you...
### Background To use rayon in game engine code, I was [investigating why `ThreadPool::install` was allocating every invocation](https://github.com/rayon-rs/rayon/issues/666). It turned out there are two sources of allocation, - One was...
# Bug Report ## Environment Zola version: 0.16 ## Expected Behavior Running `zola serve` should serve the site. ## Current Behavior When running `zola serve` with the latest 0.16 I...
# Bug Report ## Environment Zola version: 0.13 ## Background I recently upgraded from Zola 0.9 to 0.13. Along the way Markdown processing must have changed: 0.9:  0.13: ...
# Bug Report ## Environment Zola version: `master` ## Expected Behavior Running `cargo run -- --root ..\..\cheats.rs build` should make it find short codes, and generally 'just work'. ## Current...