sam.gas
- AI vs Cybersecurity: Which Path to Choose?Oct 28, 2024
Got inspired by a post about the advantages of AI for new generations. AI's got flaws, and bad actors are adapting. So, which field is better for business? AI or Cybersecurity?
- Cyclone the Next Level CPU SolverDec 26, 2021
Sounds like a mishap during copy/pasting! You probably missed the <array> header. Here’s the corrected version again: https://github.com/NoMachine1/Cyclone I’m hitting about ~380M keys/s here.
- Cyclone the Next Level CPU SolverDec 26, 2021
You can use files from Cyclone’s github, the script will work with it.
- Cyclone the Next Level CPU SolverDec 25, 2021
AMD Ryzen Threadripper PRO 7985WX. But it’s not just puzzles, I'm doing a lot more with it.
- Cyclone the Next Level CPU SolverDec 23, 2021
I’m getting around ~190 Mkey/s directly searching Hash160 targets in pure random mode. https://github.com/NoMachine1/Cyclone
- Cyclone the Next Level CPU SolverDec 23, 2021
If you wanna see notable speed ups, implementing the whole SECP256K1 curve from scratch using AVX2 would be essential. Could mean 2x to 5x faster. Plus, assembly could help even more. Just optimizing hashing alone won't…
- Cyclone the Next Level CPU SolverDec 22, 2021
Hey! Nothing really beats this: https://github.com/JayDDee/cpuminer-opt/tree/master/algo/ripemd (ripemd) https://github.com/JayDDee/cpuminer-opt/tree/master/algo/sha (sha) It supports 4-way, 8-way, avx2/avx512.... Been…
- Fast CPU Points Generation LibraryMay 1, 2021
Definitely! The inversion tree is parallelized, allowing SIMD optimizations. Field multiplications can run in parallel, making it quicker to create and break down the inverses.
- Pollard Rho Algorithm Speedy ImplementationFeb 2, 2018
You could set up a Memory-Mapped DP System with a Bloom filter in RAM and a memory-mapped DP table on disk. Just be ready for the massive size of those tables.
- Pollard Rho Algorithm Speedy ImplementationJan 30, 2018
Cool but where's the part for loading DP.bin with load-dp coming from? I added a new command-line option to specify a DP.bin file. If you use load-dp, it'll load from there instead of generating. Plus, everything else…