wlav
wlav
Thanks! To use that, I'll need to be a few steps further along (both Numpy -> some array class w/o copy and use of C++ objects in the Numba trace...
I'm finding the original to be faster than hwy, most of the time, even though the latter is multithreaded, the former always single? Only every once in a while does...
The Python code picks the second ctor, whereas the C++ call picks the first. To select the first also in Python, `cppyy.gbl.V(0, cppyy.gbl.std.move(cppyy.gbl.mpq_class()))` does the trick. The problem appears to...
I'm willing to bet that it's not due to mpl.h per se, but a mismatch between the version of gcc enabled when building the precompiled header (which brings in that...
There's a big conference in a week from now (ask Bert, he's organizing ;) ), so I'm slow to respond for a while longer. Just want to note that `libstdc++.so`...
For issues b/c of the libstdc++ version, this is probably relevant: https://github.com/wlav/cppyy/issues/97#issuecomment-1263443183. With the specific solution being to create a `~/.condarc`: ``` channels: [conda-forge] pip_interop_enabled: true channel_priority: strict ``` to...
Looks like some callee returns `(void*)-1` as an error code, with the caller not handling said error. Probably b/c it's expecting a pointer and hence only checking for `nullptr`. Listing...
Just a note that I'm not ignoring this, I'm just swamped at the moment (paper deadline).
Yes, won best paper award. :) Just back from the conference, but got the C there. :/ Recovering and only just coming back online. Have to revive my Windows machine,...
There is no relation between the template factory object and the instantiated class. In theory, it could have been a metaclass relation, but those are needed/used already for efficient access...