jatinchowdhury18

Results 238 comments of jatinchowdhury18

Thanks for the contribution! That said, I was actually planning to rework the way that the tests access the relevant data. Basically, the idea would be to define the RTNeural...

Yeah, using CTest is a good suggestion as well. I believe CTest also provides a way to run tests in parallel which could help speed up the CI pipelines in...

So I ended up setting up CTest with individual test commands (not the `all` command), and that seems to be working well (#112). I haven't tried doing the JSON dump...

Yes, I would definitely like to support Rust, though from doing a bit of research, it seems like it may be a somewhat daunting task! For the dynamically implemented layers...

> I've put something together rather quickly today to test with some vst in rust I have https://github.com/rcelha/rtneural-rs > > I haven't tested it for real-time stuff yet tho This...

Hello! A couple of the operators that you've mentioned (e.g. Elu and Softmax) are currently implemented in RTNeural. You've mentioned a lot of operators, so I'll try to split them...

Hi Janos, Thanks for the question. The version of Eigen currently in RTNeural is commit 59b3ef5409452095e27e8d39a2ca81139bb8c971 from the main [Eigen repo](https://gitlab.com/libeigen/eigen). I can't remember off the top of my head...

> Thanks for the quick response and the clarification. Looking at the Eigen repo, it seems that eigen uses these .9x version numbers to indicate that they are somewhere in...

Hello! The benchmarks included in the repository here are run regularly as part of the repository CI pipeline. Here is the [latest result](https://github.com/jatinchowdhury18/RTNeural/actions/runs/8009716804/job/21879023880#step:14:6) from the CI benchmarks using the Eigen...

Hello! So the "root" of the problem here is a bit of a "compatibility" problem between TensorFlow and RTNeural. In TensorFlow (and I think PyTorch as well), the GRU and...