We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c50d426 commit 57afd74Copy full SHA for 57afd74
1 file changed
include/ethash/progpow.hpp
@@ -17,13 +17,13 @@ using namespace ethash; // Include ethash namespace.
17
18
/// The ProgPoW algorithm revision implemented as specified in the spec
19
/// https://github.com/ifdefelse/ProgPOW#change-history.
20
-constexpr auto revision = "0.9.2";
+constexpr auto revision = "0.9.3";
21
22
-constexpr int period_length = 50;
+constexpr int period_length = 10;
23
constexpr uint32_t num_regs = 32;
24
constexpr size_t num_lanes = 16;
25
-constexpr int num_cache_accesses = 12;
26
-constexpr int num_math_operations = 20;
+constexpr int num_cache_accesses = 11;
+constexpr int num_math_operations = 18;
27
constexpr size_t l1_cache_size = 16 * 1024;
28
constexpr size_t l1_cache_num_items = l1_cache_size / sizeof(uint32_t);
29
0 commit comments