![]() |
|
|
#23 | |
|
Sep 2009
2·1,039 Posts |
Quote:
Chris |
|
|
|
|
|
|
#24 | |
|
"Mike"
Aug 2002
25·257 Posts |
Quote:
|
|
|
|
|
|
|
#25 |
|
Jan 2014
2·73 Posts |
That is correct: It has only one fan.
|
|
|
|
|
|
#26 |
|
Sep 2009
2×1,039 Posts |
OK , that explains it.
My GTX 560 Ti has two fans in the body, but nvidia-smi only reports one speed. I assume they both turn at the same speed. Chris |
|
|
|
|
|
#27 | |
|
May 2013
East. Always East.
11·157 Posts |
Quote:
A fairly common doodad for builders is a case fan Y-splitter cable (especially with CPU heatsinks designed for two fans) and some bad manufacturers didn't think to cut one the rotation speed wire on one of the ends. Unless the rotations are in perfect synchronization (+/- impossible) the RPMs add up and cause some serious confusion for the motherboard and user who see a fan spinning at 4000 RPM. And then the good manufacturers who remove the third pin get flack from the self-proclaimed gurus about having missing pins ![]() (Lots of dumb mistakes like that on Newegg from "5/5 tech knowledge" users... my favourite is a guy who "tested hundreds of fans in his life and has a masters in fluid dynamics complaining that there's no arrow showing you the direction of flow) |
|
|
|
|
|
|
#28 |
|
Jan 2014
2×73 Posts |
I am still having the issue with cudalucas stalling on this machine after a while (several hours).
mfaktc is running fine on the same card other chip (GTX590 with two chips). Swapping processes between chips does not help. Current setup: Linux 3.11.0-18-generic (Ubuntu) | NVIDIA-SMI 334.21 Driver Version: 334.21 | both mfaktc and CUDAlucas compiled with nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2013 NVIDIA Corporation Built on Sat_Jan_25_17:33:19_PST_2014 Cuda compilation tools, release 6.0, V6.0.1 |
|
|
|
|
|
#29 |
|
"Preben Soeberg"
Nov 2013
Thailand
810 Posts |
I have had this problem for long time and I have a good hint on what is triggering it.
I have have very bad connection to the Internet, and the problem ocurred "only" when Chromium or Firefox (and to some extent my computer; it helped to throw out the crappy kmail) became unresponsive because of failing connection. Got new phone lines drawn and no problems since then. I made a script to run mfaktc under: Code:
#!/usr/bin/sh
./mfaktc&
B=`nvidia-smi -q -d TEMPERATURE|grep Gpu|cut -c39,40`
while true; do
A=$B; sleep 30
B=`nvidia-smi -q -d TEMPERATURE|grep Gpu|cut -c39,40`
C=`expr \( $A - $B \)`
if [ $C -ge 3 -o $B -lt 50 ]; then
kill `ps -e |grep mfaktc|grep -v sh|cut -d\ -f1`
wait
./mfaktc&
fi
done
|
|
|
|
|
|
#30 |
|
"Preben Soeberg"
Nov 2013
Thailand
810 Posts |
Sorry, I posted the code above without testing enough.
This time it is better tested. Code:
#!/usr/bin/sh
# If this script is named other than mfaktc.sh,
# the script below should be changed accordingly.
# It is assumed that the only process named mfaktc is
# the one started by this script.
# The temperature limits used here seems to work fine
# down to 30 seconds sleep time under 35 C environment
# temperature. Tested on a GTX 780 @ 1006 Mhz.
# Using the programs cut and tr is chosen for lean-ness.
# awk (gawk) could be used instead of cut/tr.
# Also sed could be used instead of tr.
# "man kill" states that kill can be used to find the
# pid of a named process. If somebody can make that to work,
# the script could be simplified a little.
echo `date` > start.log
./mfaktc&
B=`nvidia-smi -q -d TEMPERATURE|grep Gpu|cut -c39,40`
while true; do
A=$B; sleep 120
B=`nvidia-smi -q -d TEMPERATURE|grep Gpu|cut -c39,40`
C=`expr \( $A - $B \)`
if [ $C -ge 3 -o $B -lt 50 ]; then
PID=`ps -e |grep mfaktc|grep -v sh|cut -c1-5|tr ' ' '0'`
if [ $PID ]; then kill $PID; sleep 2; fi
PID=`ps -e |grep mfaktc|grep -v sh|cut -c1-5|tr ' ' '0'`
if [ $PID ]; then kill $PID; fi
wait
echo `date` > start.log
./mfaktc&
fi
done
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Trouble restarting large job | fivemack | Msieve | 4 | 2018-01-04 01:13 |
| assignment restarting prob | isaac1204 | Information & Answers | 2 | 2017-07-20 17:26 |
| restarting nfs linear algebra | cubaq | YAFU | 2 | 2017-04-02 11:35 |
| Well hung parliaments | davieddy | Soap Box | 0 | 2010-08-23 13:43 |
| Stop p95 or llr before restarting? | Joshua2 | Software | 6 | 2005-05-16 16:36 |