Jeremy Kun
Jeremy Kun
Could you point me to some of those existing production applications, if you know them offhand?
I have disabled these tests internally because I couldn't figure it out. Still happening though.
I can enable INT128 but it seems I'm now running into this: https://quuxplusone.github.io/blog/2019/02/28/is-int128-integral/#relationship-to-integer-types-and-intmax_t ``` external/openfhe/src/core/lib/math/hal/bigintfxd/ubintfxd.cpp:121:13: error: no matching function for call to 'GetMSB' 121 | m_MSB = lbcrypto::GetMSB(val); | ^~~~~~~~~~~~~~~~...
I can enable 128-bit ints, though I ran into https://github.com/openfheorg/openfhe-development/issues/669 when trying to do that. Is there a particular place in the documentation that is intended to explain how the...
The main problem in #669 is that setting `HAVE_INT128` defined is not sufficient to make `std::is_integral` true for int128.
Also see: https://www.postgresql.org/docs/9.1/backup-dump.html pg_dump dbname | gzip > filename.gz Reload with: gunzip -c filename.gz | psql dbname or: cat filename.gz | gunzip | psql dbname
Also please squash the commits when you're ready. Thanks!
Variadic args seems hard in rust because rust doesn't have a splat operator to read in the variadic CLI arguments and convert them to a static function signature. I thought...
Main remaining problem is that the openfhe end_to_end tests don't build. heir-translate is apparently not able to load the Polynomial dialect's attributes, despite the fact that it's properly loaded upstream....