Spaarsh

Results 15 comments of Spaarsh

Hey all! I subscribed to the thread because I am also doing research in async FL. Thought about giving my 2 cents on this. @WilliamLindskog In the entire Serverless FL...

@mekarpeles it is indeed a huge step towards making the platform more lively for new patrons. I was wondering if we could ask a patron at the time of signing...

I suppose that a yaml or json file is a good of adding new providers. We can also keep a field that asks if custom mappers are required (such as...

This is the issue I mentioned in the meet!

I would like to work on this issue. I plan to add a new `.cpp` and `.h` file to the `clang-tools-extra/clang-tidy/misc/` directory. I think all that is needed by the...

So I suppose I should write the check such that it warns a user trying to declare `constexpr` in a function with the same return datatype or warn the user...

Can I take this up? I shall add the new functions in a new file in crypto/xxhas.rs similar to the [crypto/sha224.rs](https://github.com/apache/datafusion/blob/main/datafusion/functions/src/crypto/sha224.rs) file and import them in the [crypto/mod.rs](https://github.com/apache/datafusion/blob/0283077c63d7b9a7464bc75f0686774cd5d10924/datafusion/functions/src/crypto/mod.rs#L65C1-L68C2) file. And...

> Perhaps consider adding a non cryptographic module and add wyhash as well (here some of the crates I've used for similar usecase but in polars: https://github.com/ion-elgreco/polars-hash/blob/main/polars_hash%2FCargo.toml) Sure. I'll take...

@HectorPascual is this the output that you expect? ```xxhash32 > SELECT xxhash32(column1) AS xxhash32_result FROM ( SELECT UNNEST(ARRAY[1, 2, 3, 4, 5]) AS column1 ) AS subquery; +-----------------+ | xxhash32_result...