This repository was archived by the owner on Apr 24, 2022. It is now read-only.
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ class Miner: public Worker
235
235
void update_temperature (unsigned temperature)
236
236
{
237
237
/*
238
- cnote << "Setting temp" << temperature << " for gpu/ " << index <<
238
+ cnote << "Setting temp" << temperature << " for gpu" << index <<
239
239
" tstop=" << farm.get_tstop() << " tstart=" << farm.get_tstart();
240
240
*/
241
241
bool _wait_for_tstart_temp = m_wait_for_tstart_temp.load (std::memory_order_relaxed);
@@ -244,14 +244,14 @@ class Miner: public Worker
244
244
unsigned tstop = farm.get_tstop ();
245
245
if (tstop && temperature >= tstop)
246
246
{
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;
248
248
m_wait_for_tstart_temp.store (true , std::memory_order_relaxed);
249
249
}
250
250
} else {
251
251
unsigned tstart = farm.get_tstart ();
252
252
if (tstart && temperature <= tstart)
253
253
{
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;
255
255
m_wait_for_tstart_temp.store (false , std::memory_order_relaxed);
256
256
}
257
257
}
You can’t perform that action at this time.
0 commit comments