Skip to content

Commit 57afd74

Browse files
authored
Update to 0.9.3 version
ifdefelse/ProgPOW@90f38e4
1 parent c50d426 commit 57afd74

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

include/ethash/progpow.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ using namespace ethash; // Include ethash namespace.
1717

1818
/// The ProgPoW algorithm revision implemented as specified in the spec
1919
/// https://github.com/ifdefelse/ProgPOW#change-history.
20-
constexpr auto revision = "0.9.2";
20+
constexpr auto revision = "0.9.3";
2121

22-
constexpr int period_length = 50;
22+
constexpr int period_length = 10;
2323
constexpr uint32_t num_regs = 32;
2424
constexpr size_t num_lanes = 16;
25-
constexpr int num_cache_accesses = 12;
26-
constexpr int num_math_operations = 20;
25+
constexpr int num_cache_accesses = 11;
26+
constexpr int num_math_operations = 18;
2727
constexpr size_t l1_cache_size = 16 * 1024;
2828
constexpr size_t l1_cache_num_items = l1_cache_size / sizeof(uint32_t);
2929

0 commit comments

Comments
 (0)