CryptoGraphics / VerthashMiner

GPU miner for the Verthash algorithm
GNU General Public License v3.0
75 stars 38 forks source link

2 miners on 1 PC #29

Open aim67 opened 3 years ago

aim67 commented 3 years ago

hello. I run two instances of the miner with different values -d 0,1,2,3 and -d 4,5,6,7 image What is the problem? miners use the same ID. but they work.

CryptoGraphics commented 3 years ago

Hello. That's correct. Miner uses it's own virtual device list(Selected devices). cl_device(0) = worker(0). First instance uses devices 0,1,2,3 and creates 4 workers(0,1,2,3). Second instance uses devices 4,5,6,7 and creates 4 workers too(0,1,2,3). I'll look into a possibility to rename these to "workers" in future releases.

aimsml commented 3 years ago

Hello. That's correct. Miner uses it's own virtual device list(Selected devices). cl_device(0) = worker(0). First instance uses devices 0,1,2,3 and creates 4 workers(0,1,2,3). Second instance uses devices 4,5,6,7 and creates 4 workers too(0,1,2,3). I'll look into a possibility to rename these to "workers" in future releases.

Tks.