Author

Topic: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] - page 193. (Read 3426932 times)

hero member
Activity: 868
Merit: 1000
if mining were very profitable like a few months ago, i bet they will some donation. But right now, mining is hard. And it gets harder every month due to scam and general lost of interest on alt coin. I still remember the time where u can mine Jackpot coin and sell for a very good profit for many days. A few more months back mining at multipool with x11 is also very profitable and we can see more than 1000 BTC volume on mintpal easily on many coins as if BTC were free. But right now,  Every month, it just get harder and harder.
legendary
Activity: 3248
Merit: 1070
i wonder why people still want to write on this topic .The dev now only thinks about $ and not releasing his private miner.Why do you even still thank him and want to donate btc?Just donate to new devs who releases xmr and new coin algorithms

donation make sense only if the coin i'm mining is profitable, or will implode some day, otherwise, there is no point, i can just ignore that coin...

i don't want to be rude, but it simply don't make sense to me...

Amph
bigjme
Bombadil
cayars
Cbuchner1
djm34
tsiv
zelante

Is it possible you all can post a donation(s) address either in your sig or on the CudaMining page somewhere?


in my case i did little things, and my sig is full, but if you really want to donate i can provide an address
legendary
Activity: 1400
Merit: 1000
Amph
bigjme
Bombadil
cayars
Cbuchner1
djm34
tsiv
zelante

Is it possible you all can post a donation(s) address either in your sig or on the CudaMining page somewhere?
member
Activity: 112
Merit: 10
Very Good one (Work separately from the miner)
A little suggestion from me, would it be ok to have pool (-o) and user (-u) to display within your (upper part of) splitscreen ?

Edit- I got some error and it only lets me close the splitscreen.
(splitscreen with nvminer 7b)

Updated binary. Add pool and user to info screen.
Try this version https://github.com/zelante/ccminer/releases/download/v2.0.2/splitscreen_v2.0.2_alfa.zip

EDIT:

With last nvminer v1.2U-D7b - 29-07-2014 - work good for me.


Zelante thanks for your work...can you post your JPC adress??  i want to send u a donation Smiley
full member
Activity: 266
Merit: 100
Very Good one (Work separately from the miner)
A little suggestion from me, would it be ok to have pool (-o) and user (-u) to display within your (upper part of) splitscreen ?

Edit- I got some error and it only lets me close the splitscreen.
(splitscreen with nvminer 7b)

Updated binary. Add pool and user to info screen.
Try this version https://github.com/zelante/ccminer/releases/download/v2.0.2/splitscreen_v2.0.2_alfa.zip

EDIT:

With last nvminer v1.2U-D7b - 29-07-2014 - work good for me.

Great job. However I would advice to clearly state that some quotation marks in the config line are required to make it absolutely clear.

Anyways, here is a screenshot of mine. Two cards are not showing proper information:

full member
Activity: 263
Merit: 100
Very Good one (Work separately from the miner)
A little suggestion from me, would it be ok to have pool (-o) and user (-u) to display within your (upper part of) splitscreen ?

Edit- I got some error and it only lets me close the splitscreen.
(splitscreen with nvminer 7b)

Updated binary. Add pool and user to info screen.
Try this version https://github.com/zelante/ccminer/releases/download/v2.0.2/splitscreen_v2.0.2_alfa.zip

EDIT:

With last nvminer v1.2U-D7b - 29-07-2014 - work good for me.


Works great for me with the exception that its not showing any graphic card info..  like mhz/mem etc etc.  It's only showing hash rate

can you search for the file nvapi.dll on your drive c: ? it must be in your windows\system32
legendary
Activity: 2002
Merit: 1051
ICO? Not even once.
i wonder why people still want to write on this topic .The dev now only thinks about $ and not releasing his private miner.Why do you even still thank him and want to donate btc?Just donate to new devs who releases xmr and new coin algorithms

Out of respect and gratitude. The devs are under no obligation to open source their work but they usually do. I feel like I owe a lot for the devs here (especially Christian) as their work earned me quite a bit of money. I haven't donated much yet (come on GTX 800 series Cheesy), but I won't forget to do so.
newbie
Activity: 55
Merit: 0
Very Good one (Work separately from the miner)
A little suggestion from me, would it be ok to have pool (-o) and user (-u) to display within your (upper part of) splitscreen ?

Edit- I got some error and it only lets me close the splitscreen.
(splitscreen with nvminer 7b)

Updated binary. Add pool and user to info screen.
Try this version https://github.com/zelante/ccminer/releases/download/v2.0.2/splitscreen_v2.0.2_alfa.zip

EDIT:

With last nvminer v1.2U-D7b - 29-07-2014 - work good for me.
http://www.image-share.com/upload/2646/177.jpg

Works great for me with the exception that its not showing any graphic card info..  like mhz/mem etc etc.  It's only showing hash rate
legendary
Activity: 3164
Merit: 1003
I can't get above 87% efficiency with nvMiner on doom with 750 ti's.

I've tried creating a loop.bat with a killtimer of 60, and I still get around 95%.  Keep in mind that the cards are not overclocked.  Anyone have any ideas?

no but can i see your bat restart i cant get one going   please  Smiley
EDIT:i definitely need a bat restart on this coin

Here's one that was posted on cryptomining blog a few weeks ago. Might be overly elaborate for some, but gets the job done.

Code:
@echo off
echo -------------------------------------------------------------------
echo Simple script to restart your miner software after a period of time
echo -------------------------------------------------------------------
echo:
set executable=ccminer.exe
set commandline=-q -a x11 -o stratum+tcp://pool -u user -p pass
set runforseconds=7200
set restartinseconds=10
set /a counter=0
:start
start "Miner Window" %executable% %commandline%
echo:
echo The software will run for %runforseconds% seconds
timeout %runforseconds%
taskkill /f /im %executable%
echo:
echo Restarting the software in %restartinseconds% seconds (%counter%)
timeout %restartinseconds%
set /a counter+=1
echo:
echo:
goto start

thanks, ill do it   Smiley
newbie
Activity: 18
Merit: 0
I can't get above 87% efficiency with nvMiner on doom with 750 ti's.

I've tried creating a loop.bat with a killtimer of 60, and I still get around 95%.  Keep in mind that the cards are not overclocked.  Anyone have any ideas?

no but can i see your bat restart i cant get one going   please  Smiley
EDIT:i definitely need a bat restart on this coin

Here's one that was posted on cryptomining blog a few weeks ago. Might be overly elaborate for some, but gets the job done.

Code:
@echo off
echo -------------------------------------------------------------------
echo Simple script to restart your miner software after a period of time
echo -------------------------------------------------------------------
echo:
set executable=ccminer.exe
set commandline=-q -a x11 -o stratum+tcp://pool -u user -p pass
set runforseconds=7200
set restartinseconds=10
set /a counter=0
:start
start "Miner Window" %executable% %commandline%
echo:
echo The software will run for %runforseconds% seconds
timeout %runforseconds%
taskkill /f /im %executable%
echo:
echo Restarting the software in %restartinseconds% seconds (%counter%)
timeout %restartinseconds%
set /a counter+=1
echo:
echo:
goto start
full member
Activity: 263
Merit: 100
Very Good one (Work separately from the miner)
A little suggestion from me, would it be ok to have pool (-o) and user (-u) to display within your (upper part of) splitscreen ?

Edit- I got some error and it only lets me close the splitscreen.
(splitscreen with nvminer 7b)

Updated binary. Add pool and user to info screen.
Try this version https://github.com/zelante/ccminer/releases/download/v2.0.2/splitscreen_v2.0.2_alfa.zip

EDIT:

With last nvminer v1.2U-D7b - 29-07-2014 - work good for me.
legendary
Activity: 3164
Merit: 1003
I can't get above 87% efficiency with nvMiner on doom with 750 ti's.

I've tried creating a loop.bat with a killtimer of 60, and I still get around 95%.  Keep in mind that the cards are not overclocked.  Anyone have any ideas?

no but can i see your bat restart i cant get one going   please  Smiley
EDIT:i definitely need a bat restart on this coin
sr. member
Activity: 309
Merit: 250
I can't get above 87% efficiency with nvMiner on doom with 750 ti's.

I've tried creating a loop.bat with a killtimer of 60, and I still get around 95%.  Keep in mind that the cards are not overclocked.  Anyone have any ideas?

How much RAM do you have my friend?


12GB ram, 6 core 12 thread processor also..

OK well there goes that theory....I have the same problem BTW...thought it might have been bcuz I am using 4GB.. Huh
legendary
Activity: 1400
Merit: 1050
i wonder why people still want to write on this topic .The dev now only thinks about $ and not releasing his private miner.Why do you even still thank him and want to donate btc?Just donate to new devs who releases xmr and new coin algorithms
so and you are in crypto for ? Making free heat with free software (have you think about global warming how bad it is),
sorry... I just assumed you were using software to mine coins... (hence expecting to make money with softwares given freely with the hope that nobody will forgive how they get them... sorry if this sounds wrong to you...)
And yes if you use xmr algo donate to tsiv.

newbie
Activity: 55
Merit: 0
I can't get above 87% efficiency with nvMiner on doom with 750 ti's.

I've tried creating a loop.bat with a killtimer of 60, and I still get around 95%.  Keep in mind that the cards are not overclocked.  Anyone have any ideas?

How much RAM do you have my friend?


12GB ram, 6 core 12 thread processor also..
sr. member
Activity: 309
Merit: 250
I can't get above 87% efficiency with nvMiner on doom with 750 ti's.

I've tried creating a loop.bat with a killtimer of 60, and I still get around 95%.  Keep in mind that the cards are not overclocked.  Anyone have any ideas?

How much RAM do you have my friend?
legendary
Activity: 1400
Merit: 1050
I might sound a bit lame, but this is funny how often we get complaints and how little we get donation...  Grin
(I think we should charge for technical assistance, like any software company...)


So where's the donation address? I can only find the addresses of Christian and Christian in ccminer, when compiling your sources. Haven't found it on github either.
you can send to this address (BTC): 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
(or do you want for other currencies ?)

BTC is just fine.

Have you considered having the address in your signature, or promoting it otherwise if you'd like more donations and less complaints? Smiley


A couple of beers worth of donation for now, maybe more later if your source compiles on Linux next time Wink
0.08 BTC (Beers are expensive where I'm from).
Thanks a lot.
To be honest most of the time I just forget... (I guess having it in the signature would be better)
newbie
Activity: 55
Merit: 0
I can't get above 87% efficiency with nvMiner on doom with 750 ti's.

I've tried creating a loop.bat with a killtimer of 60, and I still get around 95%.  Keep in mind that the cards are not overclocked.  Anyone have any ideas?
newbie
Activity: 19
Merit: 0
i wonder why people still want to write on this topic .The dev now only thinks about $ and not releasing his private miner.Why do you even still thank him and want to donate btc?Just donate to new devs who releases xmr and new coin algorithms
Jump to: