Francesco Biscani
Francesco Biscani
@astrojuanlu now here.
I am actually working on GODOT/GODOTPY :) Yes the plan would be to add a ``setup.py``. There's some extra steps to make the sdist work (e.g., need to add a...
It seems to me that `sizeof` strides are safer on the C++ side from issues of undefined behaviour (e.g., unaligned memory access). On the other hand, it sounds like bytes-based...
Hi @thehans, those functions are not in mppp because I haven't had much use for them so far. It should not be an issue to add them for the next...
@thehans just a quick update. I haven't had much time to look into this feature in the last couple of months, so I think it is unlikely it will end...
Hi @benruijl . The ``_rq`` literal is implemented via a C function from the GCC quadmath library: https://gcc.gnu.org/onlinedocs/libquadmath/strtoflt128.html#strtoflt128 In order to have the conversion done at compile time, one would...
What type of operations would you like to be benchmarked for the rational type?
Ok, so benchmarking arithmetic operations against GMP's rational. What kind of limb/bit sizes are you normally using for numerator/denominator? Do your numbers usually fit, say, in 128bit of storage or...
Hi @chatziko, that is indeed a good suggestion. I would be willing to incorporate explicit support for armadillo's types directly within mp++, perhaps in the form of a header in...
Yes, disallowing implicit conversions was a conscious design decision from the very beginning. I find them complex to reason about and generally speaking I try not to rely on/use them...