Bitcoin Forum
April 27, 2024, 11:05:02 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 »  All
  Print  
Author Topic: Generating Bitcoins with your video card (OpenCL/CUDA)  (Read 135330 times)
WARlrus
Member
**
Offline Offline

Activity: 110
Merit: 10


View Profile
July 13, 2010, 08:08:57 PM
 #21

Windows 7 64-bit
Dual NVIDIA GeForce 9800 GT

Can't wait to see this in action!

Virtual Rehab➣➣➣ Psychological Rehabilitation for Vulnerable Populations
1714259102
Hero Member
*
Offline Offline

Posts: 1714259102

View Profile Personal Message (Offline)

Ignore
1714259102
Reply with quote  #2

1714259102
Report to moderator
1714259102
Hero Member
*
Offline Offline

Posts: 1714259102

View Profile Personal Message (Offline)

Ignore
1714259102
Reply with quote  #2

1714259102
Report to moderator
I HATE TABLES I HATE TABLES I HA(╯°□°)╯︵ ┻━┻ TABLES I HATE TABLES I HATE TABLES
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714259102
Hero Member
*
Offline Offline

Posts: 1714259102

View Profile Personal Message (Offline)

Ignore
1714259102
Reply with quote  #2

1714259102
Report to moderator
1714259102
Hero Member
*
Offline Offline

Posts: 1714259102

View Profile Personal Message (Offline)

Ignore
1714259102
Reply with quote  #2

1714259102
Report to moderator
1714259102
Hero Member
*
Offline Offline

Posts: 1714259102

View Profile Personal Message (Offline)

Ignore
1714259102
Reply with quote  #2

1714259102
Report to moderator
StinkiePhish
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
July 13, 2010, 08:18:21 PM
 #22

I didn't realize that the Mac dmg was already posted to a different thread.

http://heliacal.net/~solar/bitcoin/Bitcoin-MacOSX-Intel-svn-75-opencl-2010-05-10.dmg

Looks like it is a little outdated.

Any chance of the opencl code being patched to the current SVN version?
sgtstein
Member
**
Offline Offline

Activity: 61
Merit: 10


View Profile
July 13, 2010, 08:32:22 PM
 #23

I didn't realize that the Mac dmg was already posted to a different thread.

http://heliacal.net/~solar/bitcoin/Bitcoin-MacOSX-Intel-svn-75-opencl-2010-05-10.dmg

Looks like it is a little outdated.

Any chance of the opencl code being patched to the current SVN version?

I can't patch it to the current as I have no way of testing it. Though, if I can determine how to disassemble his I might be able to get a leg up on working off the SVN and making a new one.
Ground Loop
Member
**
Offline Offline

Activity: 111
Merit: 10


View Profile
July 13, 2010, 09:38:04 PM
 #24

I didn't realize that the Mac dmg was already posted to a different thread.

Thanks for the link StinkiePhish!  I installed it on my Macbook Pro (GeForce GT 330M), and it runs/connects.
It says "Generating", but I suspect it's not.  The graphics card is still on the Intel integrated chip.

I forced it over to the NVidia, but it still just says "Generating", with no khash/s readout.
Activity Monitor shows Bitcoin using 400% of the CPU, so I suspect nothing is going on the GPU.

Anyone else?

Bitcoin accepted here: 1HrAmQk9EuH3Ak6ugsw3qi3g23DG6YUNPq
Limb
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
July 14, 2010, 05:03:06 AM
 #25

I didn't realize that the Mac dmg was already posted to a different thread.

Thanks for the link StinkiePhish!  I installed it on my Macbook Pro (GeForce GT 330M), and it runs/connects.
It says "Generating", but I suspect it's not.  The graphics card is still on the Intel integrated chip.

I forced it over to the NVidia, but it still just says "Generating", with no khash/s readout.
Activity Monitor shows Bitcoin using 400% of the CPU, so I suspect nothing is going on the GPU.

Anyone else?

Run
Code:
tail -f ~/Library/Application\ Support/Bitcoin/debug.log

You'll see if its using your card as an extra thread, will also show it initializing the OpenCL program.
adavid
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
July 14, 2010, 12:05:21 PM
 #26

Mac OS X 10.6.4
NVIDIA GeForce GT 330M

I tried the version posted and I was wondering if there would be the possibility to do generation only with the GPU (0 CPU threads and 1 GPU thread).

If the code would be checked-in somewhere, I'd be happy to check out and make other tweaks.
Kalidratorma
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
July 14, 2010, 02:21:49 PM
 #27

Windows XP SP3 32-bit
GeForce 9600 GT 512Mb

Happy to try experimental code.
Ground Loop
Member
**
Offline Offline

Activity: 111
Merit: 10


View Profile
July 14, 2010, 11:06:01 PM
 #28

Run
Code:
tail -f ~/Library/Application\ Support/Bitcoin/debug.log

You'll see if its using your card as an extra thread, will also show it initializing the OpenCL program.


Excellent info, Limb!  It seems the OpenCL doesn't automatically 'kick in' the NVidia graphics core. It stays on Intel.  I'm not sure how the OS auto-switches, but whatever it's looking for, bitcoin doesn't trip it.

When Intel is selected, the relevant portion seems to be:
Code:
GetAvailableDevices():  Found 1 OpenCL platform(s)
ThreadOpenConnections started
ThreadMessageHandler started
GetAvailableDevices():  Checking OpenCL platform 'Apple' (index 0)
proxy connecting
proxy connected
GetAvailableDevices():  Found 0 devices on platform 'Apple' (index 0)
4 processors

When I force the NVidia, we have ignition!
Code:
GetAvailableDevices():  Found 1 devices on platform 'Apple' (index 0)
Printing info for device index 0  Vendor: NVIDIA  Device: GeForce GT 330M
...
Device 'GeForce GT 330M (NVIDIA)' : CL_KERNEL_WORK_GROUP_SIZE : 192
Device successfully initialized!  (GeForce GT 330M (NVIDIA))

It runs one bitminer thread on OpenCL, and three on the CPU.
Code:
**Perf - thread 1 : 1128k iter/sec
**Perf - thread 2 : 296k iter/sec
**Perf - thread 3 : 293k iter/sec
**Perf - thread 4 : 296k iter/sec
**Perf - total : 2013k iter/sec (4 threads)

I've never seen the MBP fan this excited. Smiley


Bitcoin accepted here: 1HrAmQk9EuH3Ak6ugsw3qi3g23DG6YUNPq
laszlo (OP)
Full Member
***
Offline Offline

Activity: 199
Merit: 2072


View Profile
July 15, 2010, 02:01:19 AM
 #29

Yea, I tried that too, after seeing it at 90C temps for a while I decided to not generate with my MBP Smiley

It's great that it's working for you - I'm not sure if it's possible to ask the OS to switch to the high performance video automatically, as far as I know you have to go to the power settings and tweak it manually, like you did.

BC: 157fRrqAKrDyGHr1Bx3yDxeMv8Rh45aUet
mcdett
Full Member
***
Offline Offline

Activity: 157
Merit: 100



View Profile
July 15, 2010, 04:24:36 PM
 #30

The cooling fans are working hard on my 13 MBP

OSX 10.6.4 - NVIDIA GeForce 9400M

**Perf - thread 1 : 519k iter/sec
**Perf - thread 2 : 317k iter/sec
**Perf - thread 3 : 315k iter/sec
**Perf - total : 1151k iter/sec (3 threads)

Running the original bitcoin I was getting around 6-800k iter/sec
Ground Loop
Member
**
Offline Offline

Activity: 111
Merit: 10


View Profile
July 18, 2010, 05:58:10 PM
 #31

OpenCL bitcoin crashes with a Bus Error on a 27" iMac (ATI Radeon).

Anyone get it to work on a current-gen iMac?

Bitcoin accepted here: 1HrAmQk9EuH3Ak6ugsw3qi3g23DG6YUNPq
Leonassan
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
July 19, 2010, 07:46:56 PM
 #32

I'm interested
Windows 7 Ultimate 64
NVidia GTX295
em3rgentOrdr
Sr. Member
****
Offline Offline

Activity: 434
Merit: 251


youtube.com/ericfontainejazz now accepts bitcoin


View Profile WWW
July 20, 2010, 11:33:22 AM
 #33

I would very much like OpenCL/Cuda code to generate bitcoins with my GPU:

GF9800gx2 (http://www.nvidia.com/object/product_geforce_9800_gx2_us.html)
Ubuntu 10.04

"We will not find a solution to political problems in cryptography, but we can win a major battle in the arms race and gain a new territory of freedom for several years.

Governments are good at cutting off the heads of a centrally controlled networks, but pure P2P networks are holding their own."
Olipro
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
July 20, 2010, 10:02:07 PM
Last edit: July 20, 2010, 11:25:43 PM by Olipro
 #34

szia lászló

Intel Core 2 Quad Q9550 8GB DDR3-1333 RAM
Nvidia Geforce 9800GT Golden Sample
Server 2008 R2 (x64)


erdekelne a programod, de sokkal jobban erdekelne a forraskod.
I'm interested, I'd be twice as interested in the source code though.
TryBitCoin
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
July 21, 2010, 10:25:29 AM
Last edit: September 07, 2011, 10:08:08 AM by TryBitCoin
 #35

del
aaaxxx
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
July 21, 2010, 10:55:54 PM
 #36

Windows 7 Ultimate 64Bit

CPU: AMD Athlon 64 X2 5200+ 2.71GHz
DDR2 3GB 245MHz
GPU: Palit 8600GT DDR2 1GB
dougztr
Newbie
*
Offline Offline

Activity: 5
Merit: 0



View Profile
July 23, 2010, 08:40:53 AM
 #37

I have Windows Vista 64 and an ATI Radeon HD 4830

Also, I have a working 0.3.2 Gentoo Linux version which I compiled from source. I have ATI Stream SDK installed so I have a fully working OpenCL developer kit, the only thing I'm lacking is some sources to add in OpenCL support.

I'd be happy to work on the Linux version.
em3rgentOrdr
Sr. Member
****
Offline Offline

Activity: 434
Merit: 251


youtube.com/ericfontainejazz now accepts bitcoin


View Profile WWW
July 28, 2010, 10:37:53 AM
 #38

Anyone know when this OpenCL/CUDA code will be released?  Are there any development versions of this OpenCL/CUDA source code out yet?

"We will not find a solution to political problems in cryptography, but we can win a major battle in the arms race and gain a new territory of freedom for several years.

Governments are good at cutting off the heads of a centrally controlled networks, but pure P2P networks are holding their own."
knightmb
Sr. Member
****
Offline Offline

Activity: 308
Merit: 256



View Profile WWW
July 28, 2010, 03:22:47 PM
 #39

As far as I can tell, nothing else has been done. Seems to only work on a few select Mac at the moment and even then appears to be a little unstable.

Timekoin - The World's Most Energy Efficient Encrypted Digital Currency
ledskof
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
July 28, 2010, 07:01:26 PM
 #40

Intel Core i7 965
12 GB DDR3
Nvidia GTX480
Windows 7 64bit
Funtoo Linux 64bit
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!