1
0
Fork 0
forked from lthn/blockchain

progpow 0.9.2 -> 0.9.3

This commit is contained in:
sowle 2019-03-27 22:33:35 +03:00
parent ce9990b722
commit 9548a92448

View file

@ -14,11 +14,11 @@ namespace progpow
{
using namespace ethash; // Include ethash namespace.
constexpr int period_length = 50;
constexpr int period_length = 10;
constexpr uint32_t num_regs = 32;
constexpr size_t num_lanes = 16;
constexpr int num_cache_accesses = 12;
constexpr int num_math_operations = 20;
constexpr int num_cache_accesses = 11;
constexpr int num_math_operations = 18;
constexpr size_t l1_cache_size = 16 * 1024;
constexpr size_t l1_cache_num_items = l1_cache_size / sizeof(uint32_t);