KarelPeeters
KarelPeeters
Unfortunately `const fn` is not quite as stable as I thought, for example trait bounds aren't yet supported in stable (https://github.com/rust-lang/rfcs/pull/2632). I think this issue will have to wait until...
I'm experiencing the exact same issue, and unfortunately `fix-high-cpu-usage` does not seem to help. For me the issue only happened over IPC when the process that sends data over the...
I can reproduce the issue from both python and rust by starting tev and then immediately connecting to it, for example in Python: ```python import subprocess import time import numpy...
Having a `Repeat` layer would also help with #115, since only the layers work with `torch.jit.script` for now.
I was just about to report this as well! For example, [yolov5n.onnx](https://github.com/ultralytics/yolov5/releases/download/v6.0/yolov5n.onnx) looks like this for me:  This width is somewhat justifiable since the final layers of the model...
Another related question: Is there an easy way to create instances of structs like `Sphere` without having to specify the dummy fields all the time? Or should I just write...
@Eliah-Lakhin I could do that but then I might forget to initialize any fields I might add in the future, but it looks like that's indeed the best solution for...
I also noticed we're missing custom implementations of `fold`, `try_fold`, `nth`, `advance_by` etc, but I'm not sure if they are worth the added bloat. Let me know if you want...
I'm not so sure about this PR any more, some important issues were raised. I didn't even think of the different-size-different-elements problem, because it doesn't really matter for my use...
Okay I looked around a bit on GitHub, this search query is the best I could come up with: [`zip_eq language:Rust -simultaneously`](https://github.com/search?o=desc&p=2&q=zip_eq+language%3ARust+-simultaneously&s=indexed&type=Code) (the `-simultaneously` filters out the file that declares...