Skip to content

Commit

Permalink
Version + docco bump
Browse files Browse the repository at this point in the history
  • Loading branch information
3rdIteration committed Jul 12, 2020
1 parent 30092c7 commit 28ccd32
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion btcrecover/addressset.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# along with this program. If not, see http://www.gnu.org/licenses/


__version__ = "1.2.0-CryptoGuide"
__version__ = "1.3.0-CryptoGuide"

import struct, base64, io, mmap, ast, itertools, sys, gc, glob, math
from os import path
Expand Down
2 changes: 1 addition & 1 deletion btcrecover/btcrpass.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# TODO: put everything in a class?
# TODO: pythonize comments/documentation

__version__ = "1.2.0-Cryptoguide"
__version__ = "1.3.0-Cryptoguide"
__ordering_version__ = b"0.6.4" # must be updated whenever password ordering changes
disable_security_warnings = True

Expand Down
2 changes: 1 addition & 1 deletion btcrecover/btcrseed.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# TODO: finish pythonizing comments/documentation

__version__ = "1.2.0-CryptoGuide"
__version__ = "1.3.0-CryptoGuide"

disable_security_warnings = True

Expand Down
24 changes: 12 additions & 12 deletions docs/GPU_Acceleration.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ The performance increase that this offers depends on the type of wallet you are

For the sake of comparison, the CPU vs GPU performance for an i7-8750 vs an NVidia 1660ti, for a variety of wallets is generally:

| Recovery Type | CPU Performance (kp/s) | GPU Performance (kp/s) |
|---|---|---|
| Bitcoin Core (JTR Kernel) | 0.07 | 6.75 |
| Bitcoin Core (OpenCL_Brute) | 0.07 | 0.95 |
| Blockchain.com Main Password | 1 | 10 |
| Blockchain.com Second Password | 0.39 | 15.5 |
| Electrum 2 Wallet Password | 4.5 | 21 |
| BIP39 12 Word Seed | 33 | 134 |
| BIP39 12 Word Seed (Tokenlist) | 33 | 130 |
| BIP39 24 Word Seed | 160 | 180 |
| BIP39 24 Word Seed (Tokenlist) | 140 | 160 |
| Electrum Seed | 200 | 366 |
| Recovery Type | CPU Performance (kp/s) | GPU Performance (kp/s) | GPU speed boost vs CPU |
|---|---|---|---|
| Bitcoin Core (JTR Kernel) | 0.07 | 6.75 | 96x |
| Bitcoin Core (OpenCL_Brute) | 0.07 | 0.95 | 14x |
| Blockchain.com Main Password | 1 | 10 | 10x |
| Blockchain.com Second Password | 0.39 | 15.5 | 40x |
| Electrum 2 Wallet Password | 4.5 | 21 | 4.5x |
| BIP39 12 Word Seed | 33 | 134 | 4.3x |
| BIP39 12 Word Seed (Tokenlist) | 33 | 130 | 4x |
| BIP39 24 Word Seed | 160 | 180 | 1.15x |
| BIP39 24 Word Seed (Tokenlist) | 140 | 160 | 1.15x |
| Electrum Seed | 200 | 366 | 1.8x |

**Don't simply assume that enabling GPU/OpenCL will give a speed boost at this point, especially if you have a very high end CPU and low end GPU... Test your command both with and without OpenCL/GPU and use the --no-eta and --performance arguments to evaluate performance**

Expand Down

0 comments on commit 28ccd32

Please sign in to comment.