mersenneforum.org  

Go Back   mersenneforum.org > Great Internet Mersenne Prime Search > Hardware > GPU Computing

Reply
 
Thread Tools
Old 2015-01-25, 08:08   #2443
kladner
 
kladner's Avatar
 
"Kieren"
Jul 2011
In My Own Galaxy!

100111101011102 Posts
Default

Since this falls under the hardware heading, I thought I'd drop it here, with a shout out to LaurV.

Here, and here are two pairs of EVGA water cooled 580s.

Just saying.....
kladner is offline   Reply With Quote
Old 2015-01-25, 08:54   #2444
LaurV
Romulan Interpreter
 
LaurV's Avatar
 
Jun 2011
Thailand

3·3,221 Posts
Default

Quote:
Originally Posted by kladner View Post
with a shout out to LaurV. Here, and here are two pairs of EVGA water cooled 580s.
Just saying.....
There is only one pair, sold by the same guy, once piece by piece (at one link) and then both together (second link). But the same pair.
OTOH, I still have one pair of 580's full water cooled in the drawers, under the desk, for which no mobo/cpu/box is yet available (have the 1.2KW power supply, new, tho). If I buy one more mobo/box I risk that mrs LaurV moves me into the garden... I am seriously thinking to give them away, if someone can find a good home for them. By good home I mean cheap electricity, and TF or LL production for at least a while....
LaurV is offline   Reply With Quote
Old 2015-01-25, 14:38   #2445
Gordon
 
Gordon's Avatar
 
Nov 2008

1111101012 Posts
Default

Quote:
Originally Posted by LaurV View Post
There is only one pair, sold by the same guy, once piece by piece (at one link) and then both together (second link). But the same pair.
OTOH, I still have one pair of 580's full water cooled in the drawers, under the desk, for which no mobo/cpu/box is yet available (have the 1.2KW power supply, new, tho). If I buy one more mobo/box I risk that mrs LaurV moves me into the garden... I am seriously thinking to give them away, if someone can find a good home for them. By good home I mean cheap electricity, and TF or LL production for at least a while....
I had a 580 which died, haven't replaced it yet and when I do it won't be another 580.

580 - 244w - 433 days/day
980 - 165w - 523 days/day

I could even run two 960's for the electricity of one 580 and get an extra 80 days/day

Oh yes, forgot to mention the 580 sounds like a jet aircraft taking off and they are all quite old now...
Gordon is offline   Reply With Quote
Old 2015-01-25, 18:35   #2446
Xyzzy
 
Xyzzy's Avatar
 
"Mike"
Aug 2002

5·17·97 Posts
Default

Quote:
Originally Posted by Gordon View Post
980 - 165w - 523 days/day
You should be able to get ~550 to 625 a day with a 980.

We have posted wattage and performance figures here: http://www.mersenneforum.org/showthread.php?t=19910
Xyzzy is offline   Reply With Quote
Old 2015-01-25, 20:19   #2447
Mark Rose
 
Mark Rose's Avatar
 
"/X\(‘-‘)/X\"
Jan 2013

1011011100102 Posts
Default

Quote:
Originally Posted by LaurV View Post
There is only one pair, sold by the same guy, once piece by piece (at one link) and then both together (second link). But the same pair.
OTOH, I still have one pair of 580's full water cooled in the drawers, under the desk, for which no mobo/cpu/box is yet available (have the 1.2KW power supply, new, tho). If I buy one more mobo/box I risk that mrs LaurV moves me into the garden... I am seriously thinking to give them away, if someone can find a good home for them. By good home I mean cheap electricity, and TF or LL production for at least a while....
I've always wanted to try water cooling...
Mark Rose is offline   Reply With Quote
Old 2015-01-28, 20:59   #2448
TheJudger
 
TheJudger's Avatar
 
"Oliver"
Mar 2005
Germany

100010101112 Posts
Default

Compute Capability 3.7 anyone? Seems I was right, Tesla K80 is 3.7. So K80 is not Titan Z?!
K80 has two chips with 2496 cores each (13 * 192), AFAIK the chip doesn't have more, but I'm not sure. At least it shouln't be a GK110(b) like Tesla K20/K40, GTX 780 (Ti), GTX Titan (Black).
Code:
CUDA device info
  name                      Tesla K40m
  compute capability        3.5
  max threads per block     1024
  max shared memory per MP  49152 byte
  number of multiprocessors 15
  CUDA cores per MP         192
  CUDA cores - total        2880
vs.
Code:
CUDA device info
  name                      Tesla K80
  compute capability        3.7
  max threads per block     1024
  max shared memory per MP  114688 byte
  number of multiprocessors 13
  CUDA cores per MP         192
  CUDA cores - total        2496
More shared memory and (not visible in mfaktc output) double amount of registers per multiprocessor. Shared memory is 64kiB - 16kiB = 48kiB for 3.5 and 128kiB - 16kiB = 112kiB for 3.7.
So either they had those extra registers and shared memory unused all the time for other products or they really built a new chip just for Tesla K80. While chipmakers tend to built as few as possible chips this makes we wonder... AFAIK nvidia sells
  • lots of Geforces
  • some Quadros
  • very few Teslas
(relative numbers)
And the new chip is a Kepler architecture, not Maxwell... I'm really curios!

Oliver
TheJudger is offline   Reply With Quote
Old 2015-01-28, 21:28   #2449
tha
 
tha's Avatar
 
Dec 2002

5×163 Posts
Default

I extracted mfaktc 0.20 to a directory. As far as I can tell there is no need to recompile any source. If I enter

./mfaktc.exe -h

it returns

error while loading shared libraries: libcudart.so.4: cannot open shared object file: No such file or directory

That file is in the subdirectory 'lib'. What is the advised way to proceed?
tha is offline   Reply With Quote
Old 2015-01-28, 21:33   #2450
Mark Rose
 
Mark Rose's Avatar
 
"/X\(‘-‘)/X\"
Jan 2013

2×5×293 Posts
Default

Quote:
Originally Posted by tha View Post
I extracted mfaktc 0.20 to a directory. As far as I can tell there is no need to recompile any source. If I enter

./mfaktc.exe -h

it returns

error while loading shared libraries: libcudart.so.4: cannot open shared object file: No such file or directory

That file is in the subdirectory 'lib'. What is the advised way to proceed?
try running sudo ldconfig

if that fails, make sure that libcudart.so.4 is found in one of the directories listed in the files under /etc/ld.so.conf.d and if not add the missing directory, and then run sudo ldconfig again.

Last fiddled with by Mark Rose on 2015-01-28 at 21:33
Mark Rose is offline   Reply With Quote
Old 2015-01-28, 21:33   #2451
TheJudger
 
TheJudger's Avatar
 
"Oliver"
Mar 2005
Germany

21278 Posts
Default

tha:
Code:
LD_LIBRARY_PATH="./lib/" ./mfaktc.exe -h
TheJudger is offline   Reply With Quote
Old 2015-01-28, 21:58   #2452
tha
 
tha's Avatar
 
Dec 2002

5×163 Posts
Default

works like a charm.
tha is offline   Reply With Quote
Old 2015-01-28, 22:22   #2453
tha
 
tha's Avatar
 
Dec 2002

32F16 Posts
Default

- What does the -v(erbose) option do, I did not notice a difference between 0 and 1?
- How do I limit the output to say once per 20% progress instead of 0,1%?
tha is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
mfakto: an OpenCL program for Mersenne prefactoring Bdot GPU Computing 1676 2021-06-30 21:23
The P-1 factoring CUDA program firejuggler GPU Computing 753 2020-12-12 18:07
gr-mfaktc: a CUDA program for generalized repunits prefactoring MrRepunit GPU Computing 32 2020-11-11 19:56
mfaktc 0.21 - CUDA runtime wrong keisentraut Software 2 2020-08-18 07:03
World's second-dumbest CUDA program fivemack Programming 112 2015-02-12 22:51

All times are UTC. The time now is 04:41.


Fri Aug 6 04:41:49 UTC 2021 up 13 days, 23:10, 1 user, load averages: 1.99, 2.51, 3.50

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.