Fabian Keller

Results 269 comments of Fabian Keller

My use case was to read multidimensional tensors, so this limitation is also quite a showstopper. Passing the shape information around separately is so ugly and error prone, considering that...

In case tougher reproductions are needed: In projects using [godot-rust](https://github.com/GodotNativeTools/godot-rust) I'm hitting 6 GB (often sending my machine into swap-freezes).

Note that the `architecture` file is typically user provided. In the impulse-tests it is implemented like that because it was most easy to support DSPs with arbitrary input/output channels. In...

I just wanted to start with UI work as well, and also noticed that the mutable borrow won't help in this case. @bkfox Thanks a lot for your work here,...

Good point, we probably should not lose object safety. I think a good trade-off would be to have a static `buildUserInterface` as a free floating function, and the trait impl...

@bkfox I think the best option is to use `where Self: Sized` annotations on static methods. This makes sure that the trait stays object safe, and the static functions are...

Short note for external readers, because some discussion have taken place internally on Slack: The proposed solution in #454 is now available on the `rust-wip` branch, which also includes the...

> i'd rather switch thos to a exception that clearly tells to use a better logging setup and a documented best practice for setup of logging > from my pov...

> whats preventing issuing a actual issue against ros? Nothing, but much like an operating system, ROS comes in [distributions](http://wiki.ros.org/Distributions) with slow release cycles. Usually robotic developers stay with one...

Thanks, this kind of information already helps a lot! Background: I was basically skimming over possibilities to do highly compact (which implies schema-based / non-self-describing) serialization, combined with some way...