Shane Peelar
Shane Peelar
One more thing: is `malign-data` documented in detail anywhere? I can't find much in the official GCC docs. I see references to Clear Linux using `-malign-data=abi` at one point. If...
Well, I don't want to use `-funroll-loops` and friends because those override the compiler's judgement. Even when you add in `--param max-unroll-times=2 --param inline-unit-growth=5`, you're still telling the compiler to...
Wow, you're fast!! I will see about getting these finished in the coming days, thanks for your patience :)
Happy Thanksgiving! Hah, I'm glad I wrote tests. Found a few soundness issues thanks to the Miri CI we have here. You bet I'll be running that locally now too...
Thanks very much for your comments @BoxyUwU -- this is a learning experience in Rust for me and I'll work at addressing yours (and the rest of @alice-i-cecile 's )...
Next up on my list is to get one of the Bevy examples going with batched queries (in a very limited way) to demonstrate batched queries a bit better. Thanks...
> @InBetweenNames can you please mark in the PR description that this `Fixes #6161` so that it gets auto-closed when this is merged? I'll give this a review soon. This...
Alright, managed to get this ported over to the new GAT way of doing things and simplified a lot in the process. However, the per-component alignment feature isn't implemented yet....
I took a little detour to try out what this would look like if `generic_const_exprs` were stable, and it's actually really nice: ```rust q.for_each_mut_batched::( |(mut position, velocity)| { //Scalar path...
Bad news :( ... even with the `typenum` hackery, it seems this can't be done on stable as it's not possible to get the size of a type `T` as...