EvgeniyKorepov / TonMinerPro

TON cuda and opencl miner
14 stars 3 forks source link

How to choose the optimal boost factor? #1

Open junhoi-pk opened 2 years ago

junhoi-pk commented 2 years ago

How to choose the optimal boost factor?

EvgeniyKorepov commented 2 years ago

You can use cmd files

#benchmark_cuda.cmd
#benchmark_opencl.cmd

Change them for your card you want to test, specify the platform and device ID. They can be seen in the application, ID column (for example 0:3), the first digit is the platform, the second is the GPU ID. The longer the timeout, the more accurate the test result.

@echo off
::----------------------------------------------------------
:: GPU platform
SET PLATFORM_ID=0
:: GPU
SET GPU_ID=0
:: Time to test each boost factor (seconds)
SET TIMEOUT=10
::----------------------------------------------------------
pow-miner-cuda-20211230.1.exe -vv -B -p %PLATFORM_ID% -g %GPU_ID% -t %TIMEOUT% kQBWkNKqzCAwA9vjMwRmg7aY75Rf8lByPA9zKXoqGkHi8SM7 229760179690128740373110445116482216837 5391989333430127958933403017403926134727428884508114496220722049840 10000000000

pause

Files #benchmark_cuda.cmd and #benchmark_opencl.cmd must be in the folder with the miner.

Now I am working on a separate application for finding the optimal boost factor. Some values outside the list add +10% to the hashrate. I'll try to post it in the next few days.

EvgeniyKorepov commented 2 years ago

I made a page with information about the cards, their current hashrate and set boost factor. Perhaps this will help you choose the right option. https://korepov.com/ton/minerpro/boostfactor.php

ssdd28561 commented 2 years ago

boost factor

Readme, table with examples and the GUI say "bost factor", while the link url, benchmarks etc say "boost factor". Is it intentional or just a typo?

EvgeniyKorepov commented 2 years ago

Readme, table with examples and the GUI say "bost factor", while the link url, benchmarks etc say "boost factor". Is it intentional or just a typo?

Thank you for your attention! It is necessary to stop writing code at night)) I fixed it on the site, in the application - I will fix it in the next release.