mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-01-31 10:30:52 +00:00
29 lines
536 B
C++
29 lines
536 B
C++
#include <iostream>
|
|
#include <vector>
|
|
|
|
#include "bench.h"
|
|
#include "crypto/scrypt.h"
|
|
#include "uint256.h"
|
|
#include "utiltime.h"
|
|
#include "utilstrencodings.h"
|
|
|
|
// 80 bytes input, size of CPureBlockHeader
|
|
static const uint64_t BUFFER_SIZE = 80;
|
|
|
|
static void Scrypt(benchmark::State& state)
|
|
{
|
|
uint256 output;
|
|
std::vector<char> in(BUFFER_SIZE, 0);
|
|
|
|
#ifdef USE_SSE2
|
|
scrypt_detect_sse2();
|
|
#endif // USE_SSE2
|
|
|
|
while (state.KeepRunning())
|
|
{
|
|
scrypt_1024_1_1_256(in.data(), BEGIN(output));
|
|
}
|
|
}
|
|
|
|
BENCHMARK(Scrypt);
|