From 9548a92448d754d8145aee443ef82488e3bca784 Mon Sep 17 00:00:00 2001 From: sowle Date: Wed, 27 Mar 2019 22:33:35 +0300 Subject: [PATCH] progpow 0.9.2 -> 0.9.3 --- contrib/ethereum/libethash/ethash/progpow.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/ethereum/libethash/ethash/progpow.hpp b/contrib/ethereum/libethash/ethash/progpow.hpp index 8add7d4d..f7768778 100644 --- a/contrib/ethereum/libethash/ethash/progpow.hpp +++ b/contrib/ethereum/libethash/ethash/progpow.hpp @@ -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);