You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This hobby project undertakes the quixotic task of maintaining a modern Bitcoin miner for programmable compute
3
+
This hobby project maintained by [Justin T. Arthur](https://github.com/JustinTArthur)undertakes the quixotic task of maintaining a modern Bitcoin miner for programmable compute
4
4
devices like GPUs. It was forked from the PyOpenCL Bitcoin Miner (poclbm), a project authored by
5
-
[m0mchil](https://github.com/m0mchil/) and contributors.
5
+
[m0mchil](https://github.com/m0mchil) and contributors.
6
6
7
7
It features an OpenCL Kernel that has incorporated ideas or code from:
If your work is represented herein and I didn't give you credit, please let me know. At the moment, I reserve no rights
15
15
to the mining driver or the OpenCL kernel. They were derived from public domain works.
16
16
17
+
## New in Version 1.0.0
18
+
* First release following the fork from [m0mchil/poclbm](https://github.com/m0mchil/poclbm). ([diff](https://github.com/m0mchil/poclbm/compare/master...JustinTArthur:v1.0.0))
19
+
* Migrated code to Python 3. Requires Python 3.5+
20
+
* Fix kernel compilation error in clang-based OpenCL compilers like macOS OpenCL and
21
+
AMD ROCm.
22
+
* Fix for not submitting shares to stratum servers reporting pdifficulty when server-side pdifficulty is below 1. By [luke-jr](https://github.com/luke-jr).
23
+
* Minor performance improvements
24
+
17
25
## Economy
18
-
At the time of this writing, on-chip implementations of the Bitcoin mining solution algorithm will outperform this
19
-
software in time and joules expended. Under most economic conditions, mining blocks on a Bitcoin chain where
20
-
on-chip implementations are competing would be at tremendous waste of expended resources.
26
+
At the time of writing, on-chip implementations of the Bitcoin mining algorithm will outperform this
27
+
software in both time and joules expended. Under most conditions, mining blocks on a Bitcoin chain where
28
+
on-chip implementations are competing would be at a tremendous waste of expended resources.
group.add_option('--vv', dest='vectors', default=[], help='Specifies size of SIMD vectors per selected device. Only size 0 (no vectors) and 2 supported for now. Comma separated for each device. e.g. 0,2,2')
78
+
group.add_option('-v', '--vectors', dest='old_vectors', action='store_true', help='Use 2-item vectors for all devices.')
0 commit comments