Bitcoin Forum
June 16, 2024, 04:01:07 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: October 13, 2014, 04:44:38 PM
Does anyone think/thought about using sse/avx technology in ccminer ? sp_ ?

I know that ccminer spends a little time @CPU comparing to GPU but still there is a room for improvment.
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 14, 2014, 05:33:58 PM
what is
Code:
const int throughput = 256*256*8;
in the ccminer code
and why it is what it is ?
I mean 256x256x8 ?

thanks.

Same thing as writing = 524288;

256*256*8 just makes it easier from a dev standpoint to understand where the number came from.

throughput is usually the 2nd parameter passed to most functions that use it (threads).

Carlo

thanks. but where it comes from ? why it is not 1024x1024x64 ?
is it e.g. maximum x-, y-, or z-dimension of a grid of thread blocks or something like that ? hardware related ?
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 14, 2014, 05:17:15 PM
what is
Code:
const int throughput = 256*256*8;
in the ccminer code
and why it is what it is ?
I mean 256x256x8 ?

thanks.
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 08, 2014, 08:39:55 AM

Any build instructions for a noob available?
I only started working with linux in the last month or so. Got the ./autogen && configure && make methods pretty much sorted.
This is new to me using a "Unix Makefile"

Thanks in advance Smiley

you need cuda6.0
install jansson = https://jansson.readthedocs.org/en/2.6/gettingstarted.html#compiling-and-installing-jansson
export LD_LIBRARY_PATH="/usr/local/lib"

the just "make" in the bbr-cudaminer dir

look at my instructions too
https://bitcointalk.org/index.php?topic=167229.msg8195127#msg8195127
5  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 07, 2014, 10:51:24 AM

Total: £3310 / $5574.64, or 3 months wages xD

Looks like u are not a big fan of BTC. U should put that amount in BTC too. U are in crypto forum  Cool

Long live fiat.

bigjme: wish you 1/3 month wages ;-)
6  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 07, 2014, 06:06:50 AM
Questions for developers:
1. why memory for hash is not allocated in GPU shared memory but in global ?
2. can OpenMP be used to parallelize tasks on CPU ? e.g. validation.
3. did anyone thought of splitting communication host<->GPU into 2 separate threads ? basically one thread constantly and asynchronously reads data from stratum/pool and copies it to an array located in GPU, GPU kernel does all calculations and save it to an array @GPU, second thread constantly and asynchronously reads calculated data from an array @GPU to an array @host, validates them @CPU and sends it over the network to the pool. the idea is to avoid GPU kernel from waiting for host.

what more experienced developers think about those ideas ? I am lousy programmer so do not expect proof of concept from my side soon :-(
7  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 05, 2014, 12:40:39 PM
Experts and experienced programmers,

I want to add some effort to ccminer development. Can you help me and point where to start ? I have some C/C++ experience but have never used CUDA.

Thanks in advance.
8  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 05, 2014, 11:24:09 AM

If you want quick compilation (for compute_50) modify Makefile.am: change all compute_30/sm_30 into compute50/sm_50 and get rid of compute_35/sm35 strings.
Thanks to that compilation takes ca 15 minutes but ccminer will work only on maxwell cards with compute 5.0.


That's a great tip - so much quicker! Thanks

 Smiley
just added link to OC howto: http://www.overclock.net/t/504832/how-to-nvidia-overclocking-in-linux
9  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 05, 2014, 10:53:56 AM
bigjme,

What do you have in store for cudamining.cc as some of the next features?

Can we get a CUDA Utils/Other page?

We could put:
1) Link to drivers and miner version needed
2) OC utils here plus some cool stuff like
3) Links to things like CCManager and KB's Profit Calc

Yes. Split screen must be now in category "cool stuff like CCManager anf Profit Calc"

MAYBE. Smiley

I think it would be great to have a link at the top of the RELEASE page for the miners.   It might be a "util" but it works with the miners so it goes in both groups IMHO.  It should work with EVERY current miner release so it sort of defies category.  It used to be a miner but now is even better with the current implementation.  So maybe the current release could be on the "utils" page but a hard coded link is on the release page with a brief description and link to the utils page?!?!

Sort of best of both worlds.

What do you guys think?

HEY! don't tell me how to code Wink

drop me a PM with an image of what you mean so i get a proper idea, adding it in paint will do..... i guess  Roll Eyes

Lazy Ass!

We don't care about no stinking framework.  We just want Utils page.

Oh and how to compile under LINUX FAQ too. Smiley

Hey im all up for incentive donations.... anyone?..... no?  Sad
I will get it added once i know what people want. The compiling under linux... not so easy as i don't have a linux system now Sad

A start for 'Compile under Linux FAQ':

Based on Linux Mint (Ubuntu clone) x86-64:
- install >340 driver from nvidia or your distro repository
- install nvidia_uvm driver from your distro repository
- install CUDA toolkit 6.0 from nvidia
- downloaded current ccminer source from github (e.g. cbuchner1, djm34, tsiv)
- autoconfig.sh
- configure --with-cuda=/usr/local/cuda-6.0
- make -j <number of your CPU cores> (e.g. make -j8)
- export LD_LIBRARY_PATH=/usr/local/cuda-6.0/lib64
- export PATH=$PATH:/usr/local/cuda-6.0/bin
- ccminer -a x11 -benchmark

In case of runtime errors make sure:
- nvidia and nvidia_uvm modules loaded into kernel you can add 'nvidia_uvm' string to /etc/modules to have nvidia_uvm loaded automatically during start
- /dev/nvidia, /dev/nvidia0 exist. Should be created by kernel modules
- /dev/nvidia_uvm exists. Can be created with:
sudo mknod -m 660 /dev/nvidia-uvm c 250 0
sudo chmod o+rw /dev/nvidia-uvm

If you want quick compilation (for compute_50) modify Makefile.am: change all compute_30/sm_30 into compute50/sm_50 and get rid of compute_35/sm35 strings. It has to be done before running autoconfig.sh.
Thanks to that compilation takes ca 15 minutes but ccminer will work only on maxwell cards with compute 5.0.

Link to good OC @Linux howto:
http://www.overclock.net/t/504832/how-to-nvidia-overclocking-in-linux
10  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 05, 2014, 08:17:12 AM
Any ideas on how to monitor hash rate with ccminer running in background on linux?

I have a switching program that moves pools by stopping and starting ccminer. I don't have any display output though (eg; stdin and stderr both go to /dev/null)

Is there way to monitor what the cards are doing in terms of hash rate and temperature?

redirect stdout+stdin to a file instead /dev/null. you can truncate the file periodically to avoid excesive growth.
11  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 05, 2014, 07:47:49 AM
Hi Guys,
I use ccminer on a linux machine with 4 off GTX 750 Ti (no OC)

My hash rates are all in the right ball park but always lower than others report.
Can someone summarise the best versions of CUDA and drivers to compile new ccminer versions on linux?

I am using:
cuda_6.0.37
NVIDIA-Linux-x86_64-340.17

ccminer source was taken from djm34's fork on 11th July.
# ccminer --version
     *** ccMiner for nVidia GPUs by Christian Buchner and Christian H. ***
                This is version 1.2 (beta)
     based on pooler-cpuminer 2.3.2 (c) 2010 Jeff Garzik, 2012 pooler
     based on pooler-cpuminer extension for HVC from
          https://github.com/heavycoin/cpuminer-heavycoin
         and
          http://hvc.1gh.com/
   Cuda additions Copyright 2014 Christian Buchner, Christian H.
     LTC donation address: LKS1WDKGED647msBQfLBHV3Ls8sveGncnm
     BTC donation address: 16hJF5mceSojnTD3ZTUDqdRhDyPJzoRakM
     YAC donation address: Y87sptDEcpLkLeAuex6qZioDbvy1qXZEj4
ccminer 2014.06.15
libcurl/7.22.0 GnuTLS/2.12.14 zlib/1.2.3.4 libidn/1.23 librtmp/2.3

Thanks

Linux is always slower than windows but more responsive with running ccminer though. I have both OSs on the same hardware and linux do ca 5% less hashes. I use Linux Mint x86-64, CUDA 6.0 and 340.2x (do not remember last digit) driver.
12  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: August 01, 2014, 04:36:45 PM
I am stuck with ccminer compilation @linux (linux mint actually). Please help me.

- installed 340.24 driver from xedgers repo
- installed CUDA toolkit 6.0 from nvidia
- downloaded current ccminer source from github (once cbuchner1, once djm34)
- autoconfig.sh
- configure --with-cuda=/usr/local/cuda-6.0
- make -j8
- export LD_LIBRARY_PATH=/usr/local/cuda-6.0/lib64
- export PATH=$PATH:/usr/local/cuda-6.0/bin
- ccminer -a x11 -benchmark with or without exiting X

"Unable to query CUDA driver version! Is an nVidia driver installed?"
:-(

/dev/nvidia* exists

any ideas what I did wrong ?

OK, I figured it out myself. Here is what is needed in order to have ccminer working @linux once you have compiled the ccminer.
#1 except nvidia module nvidia_uvm module needs to be loaded in the kernel. you can do it adding 'nvidia_uvm' string to /etc/modules (@linux mint) and nvidia_uvm will be loaded automatically. nvidia_uvm is a separate package @linux mint.
#2 /dev/nvidia_uvm device needs to be created and accessible to 'others'. you can do it this way:
Code:
sudo mknod -m 660 /dev/nvidia-uvm c 250 0
sudo chmod o+rw /dev/nvidia-uvm
and you can run ccminer as a user - not root.

if you want quick compilation modify Makefile.am: change all compute_30/sm_30 into compute50/sm_50 and get rid of compute_35/sm35 strings. thanks to that compilation takes ca 15 minutes but ccminer will work only on maxwell cards with compute 5.0.

in my case I get ca 2300kh/s instead of 2600 @win8 for x11 algo. but @win I add 100MHz to GPU.
13  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: July 31, 2014, 07:41:40 PM
I am stuck with ccminer compilation @linux (linux mint actually). Please help me.

- installed 340.24 driver from xedgers repo
- installed CUDA toolkit 6.0 from nvidia
- downloaded current ccminer source from github (once cbuchner1, once djm34)
- autoconfig.sh
- configure --with-cuda=/usr/local/cuda-6.0
- make -j8
- export LD_LIBRARY_PATH=/usr/local/cuda-6.0/lib64
- export PATH=$PATH:/usr/local/cuda-6.0/bin
- ccminer -a x11 -benchmark with or without exiting X

"Unable to query CUDA driver version! Is an nVidia driver installed?"
:-(

/dev/nvidia* exists

any ideas what I did wrong ?
14  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: July 31, 2014, 09:26:20 AM
I really need some help here regarding my hashrate. I am not getting what is claimed with my 750 Tis

Cayars has very kindly proposed his help but was unable to this date to connect to my rig. Any other devs out here who would have time to help me out please?

Here is my issue. On whichever miner I use be it ccminer or nvminer I get lower hashrates than expected. For example on x11 I get ~2.300 Kh instead of the ~2.600Kh claimed. On dmd-gr I get ~7.000 Kh instead of the 7.800 Kh claimed. So one and so forth.

I am on Win 7 64x. Currently running nvMiner (v1.2U-D7b - 29-07-2014) with latest drivers 340.52. I had the same issue with previous beta drivers 340.43 and also previous miner versions, so it doesn't seem a driver related issue.

Thanks for any help.

I use ccminer compiled by crypto mining blog. it's hashrate depends a little on cpu/motherboard (pc in general) speed not only the graphics card. e.g.
@intel2core duo x11 hashrate is ca 100kh/s lower than on intel i7.
so
@intel2core it is 2500-2600 when @i7 it is >2600.
15  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: July 31, 2014, 08:44:15 AM
Sorry for little ot,
but which card is better?
I would like to hear your opinions, before buy.
ASUS GTX750TI-OC-2GD5 or MSI N750Ti TF 2GD5/OC Gaming ?
Or which type exactly have best hashrate?
And other question is it possible to run 6 cards on win7?
If there is some thread related to this topic (750ti mining setup),
can you post a link?
Thank you.

I bought 5 MSI cards because were the cheapest. I have been using them for mining for ca 4 months 24/7 with no problems at all. hashrates:
x11 ca 2500-2600
x13 ca 1900-2000
@win7
16  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: July 30, 2014, 01:54:23 PM
Nice to read your posts pros! I envy your programming skills  Wink

I got enough of Windows-nothing-having-OS and want to switch to Linux. I plan to use Linux Mint what is your opinion ? Maybe other distro is better for mining ? I cannot use KopiemTu because I am selling my hashing power to NiceHash with my own multialgo script.

I am looking for how-to regarding ccMiner/nvMiner compilation @Linux but cannot find any. Can someone share his experience ?

Thanks in advance.


nvMiner is Win-only, I think. ccminer compilation is slow, but dead simple.

heh, dead simple for who did it once ;-)

I know I need CUDA Dev Kit. I want to use 6.5 to have faster compilation and newest nVidia driver: 340.52. What repository should I use ? djm34 or cbuchner1 ? djm34 implemeted many of recent improvments so I guess I should use his repo. Am I right ?
17  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: July 30, 2014, 01:42:56 PM
Nice to read your posts pros! I envy your programming skills  Wink

I got enough of Windows-nothing-having-OS and want to switch to Linux. I plan to use Linux Mint what is your opinion ? Maybe other distro is better for mining ? I cannot use KopiemTu because I am selling my hashing power to NiceHash with my own multialgo script.

I am looking for how-to regarding ccMiner/nvMiner compilation @Linux but cannot find any. Can someone share his experience ?

Thanks in advance.
18  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: July 29, 2014, 12:26:16 PM
hello!

can anyone tell me the hashrate of gtx 760 ? e.g. for x11 and x13.

thanks.
19  Alternate cryptocurrencies / Altcoin Discussion / Re: What three altcoins do you have the majority of your money in? on: April 17, 2014, 02:09:03 PM
BC - it's gonna be huge
20  Economy / Economics / Re: eBay to allow settlements in crypto on: April 17, 2014, 01:47:01 PM
well maybe this is an opportunity for next ebay ? or ebay replacement ?

hey google ! wake up ! do something !
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!