Skip to content
This repository was archived by the owner on Apr 24, 2022. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9e74b19

Browse files
committedJun 23, 2018
Some more gpuN instead of gpu/N
Extend commit ff4dbfbedbe2a6ec9f1d1f682d6cac259d63d359
1 parent 33eb2bf commit 9e74b19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎libethcore/Miner.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class Miner: public Worker
235235
void update_temperature(unsigned temperature)
236236
{
237237
/*
238-
cnote << "Setting temp" << temperature << " for gpu/" << index <<
238+
cnote << "Setting temp" << temperature << " for gpu" << index <<
239239
" tstop=" << farm.get_tstop() << " tstart=" << farm.get_tstart();
240240
*/
241241
bool _wait_for_tstart_temp = m_wait_for_tstart_temp.load(std::memory_order_relaxed);
@@ -244,14 +244,14 @@ class Miner: public Worker
244244
unsigned tstop = farm.get_tstop();
245245
if (tstop && temperature >= tstop)
246246
{
247-
cwarn << "Pause mining on gpu/" << index << " : temperature " << temperature << " is above --tstop " << tstop;
247+
cwarn << "Pause mining on gpu" << index << " : temperature " << temperature << " is above --tstop " << tstop;
248248
m_wait_for_tstart_temp.store(true, std::memory_order_relaxed);
249249
}
250250
} else {
251251
unsigned tstart = farm.get_tstart();
252252
if (tstart && temperature <= tstart)
253253
{
254-
cnote << "(Re)starting mining on gpu/" << index << " : temperature " << temperature << " is now below --tstart " << tstart;
254+
cnote << "(Re)starting mining on gpu" << index << " : temperature " << temperature << " is now below --tstart " << tstart;
255255
m_wait_for_tstart_temp.store(false, std::memory_order_relaxed);
256256
}
257257
}

0 commit comments

Comments
 (0)
This repository has been archived.