matthiasgeihs

Results 84 comments of matthiasgeihs

I don't think this works. You would need to hold enough space in the return value to hold the complete database. Reason: You may as well select the whole database,...

OK, just to be clear: So you actually expect the encrypted result to be large enough to hold the whole DB? Indeed, that seems to get impractical very quickly considering...

A middle ground could be accepting a cleartext `LIMIT` on every query: ``` SELECT * FROM table LIMIT 3 ``` https://www.w3schools.com/sql/sql_top.asp (Note that LIMIT seems to be MySQL syntax, whereas...

Would be nice to have this in the standard lib to make things possible like ```rust [v1, v2].concat().sorted() ```

Any news on this? It is still an issue, see [another playground example](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=d34e9ef939390a7f5d3ae1d074292754).

Makes sense. However, I would prefer not to have to convert between BigUint and BigInt back and forth. I simply want to compute the modular inverse of a BigUint, modulo...

OK, sounds like a decent workaround. Thanks! (With regards to the conversions: My concern there wasn't performance, but rather code readability.)

Thanks for the guidance. Created #8.

I think this issue can be closed? @ggerganov

Works now on https://github.com/ggerganov/ggml/commit/0a63fc0f6cb1915d1fa5c62c8f0f018d072253c9! 👍