bitcoin-core / secp256k1

Optimized C library for EC operations on curve secp256k1
MIT License
2.09k stars 1.01k forks source link

Intel ADX #285

Open gmaxwell opened 9 years ago

gmaxwell commented 9 years ago

https://en.wikipedia.org/wiki/Intel_ADX

theuni commented 9 years ago

Relevant, though not so much here as it is to Bitcoin, I have an implementation of sha256 in hash_impl.h using intrinsics for https://en.wikipedia.org/wiki/Intel_SHA_extensions, just waiting to get my hands on some actual hardware for testing/benchmarking. Works fine under their emulator.

To be fair though, it's basically just lifted from one of Intel's examples.