2025-03-01 16:38:11 +05:00
|
|
|
# yggm
|
|
|
|
### Yggdrasil address miner
|
2025-03-14 22:52:59 +05:00
|
|
|
# How to build for CPU
|
2025-03-01 16:38:11 +05:00
|
|
|
```sh
|
|
|
|
git clone https://rcxpony.name/rcxpony/yggm.git && cd yggm
|
|
|
|
cmake -B build && cmake --build build -j$(nproc)
|
2025-03-02 13:06:12 +01:00
|
|
|
build/yggm -t 10
|
2025-03-01 16:38:11 +05:00
|
|
|
```
|
2025-03-14 22:52:59 +05:00
|
|
|
# How to build for GPU
|
|
|
|
```sh
|
|
|
|
git clone https://rcxpony.name/rcxpony/yggm.git && cd yggm/build
|
|
|
|
make -j$(nproc)
|
|
|
|
./yggmcu -t 10
|
|
|
|
```
|
2025-03-09 20:43:23 +05:00
|
|
|
# ToDo
|
2025-03-13 19:48:51 +05:00
|
|
|
- [x] Cuda support (not optimized)
|
2025-03-09 20:43:23 +05:00
|
|
|
- [x] Support for avx2
|
|
|
|
- [ ] Support for sse4
|
|
|
|
#
|