François Bérenger
François Bérenger
Apparently, Argon2 won a password hashing open competition: https://password-hashing.net/
@hannesm might have an opinion
I am also not a crypto expert. I have read good things about scrypt in the past: https://www.tarsnap.com/scrypt.html " We estimate that on modern (2009) hardware, if 5 seconds are...
Some people wrote a multithread version of it: https://github.com/ocaml-bench/sandmark/blob/master/benchmarks/multicore-grammatrix/grammatrix_multicore.ml I have a parallel (multicore) version of it there: https://github.com/UnixJunkie/gram-matrix-bench/blob/master/src/gram.ml
My bench results can be seen there: https://github.com/UnixJunkie/gram-matrix-bench
The matrix is diagonal symmetric. Usually, I only compute one half plus the diagonal. Also, this matrix can be quite big quite fast, because of the dataset size.
Also, probably stupid question, can we read a file in Futhark, and write to one? I have read that there is no IO in the futhark doc, so I am...
Wow, amazing. Thanks for the pointers. I read that: "Simplicity. I think modern computers are too slow, too fragile, and too incorrect, and I believe the root cause is uncontrolled...
> Bi_outbuf.create_channel_writer Yes, I saw the make_room function can write to an output channel. Wouldn't it be possible to use a functor to have the read/write_untagged_\* functions either work with...