interfector18
interfector18
I use PyTorch to mess around and test some ideas from time to time. I say it's a good idea. How would the implementation look like, a plugin, a separate...
This is a gcc specific compiler bug [105545](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105545), multiple other projects are affected. Seems to be triggered when doing tree optimizations. Official suggestions is to just disable `-Werror`, as this...
I don't know how relevant this is to your problem @mf523, but I've recently run into a problem with `#include` order between Qt 6.1.2 and PyTorch 1.9.0. Placing `#include `...
I agree with all of the above, in the C++ community, performance can hardly be overstated and any framework worth consideration has to be performant. Thus the conversation shifts to...
I'm of the opinion `getQuery()` should be used to and parse the parameters with a custom function. As there are many different ways people encode the query string in the...
I've gotten this to work. What I've done is just recompile with onnxruntime 1.20.1.  As can be seen from the image, tensorrt still doesn't work for me. But the...
I don't know, if there are, they were installed by the aur package.
My best guess is `CARES_STATICLIB` should be defined, because I'm guessing it was compiled statically, but when trantor includes `ares.h` it's not defined and it goes down the path of...
> @interfector18 , You are right, the CARES_STATICLIB macro fixes errors of c-ares library. but there are some other compilation erros of libpq and openssl, they maybe caused by the...
It seems to me there is a missing include, as non `__imp_` symbols are always defined, and `__imp_` symbols just link to them, and also a vcpkg issue between pq...