Bitcoin Forum
May 21, 2024, 10:05:39 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 [935] 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 ... 1135 »
  Print  
Author Topic: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]  (Read 3426873 times)
cbuchner1 (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 502


View Profile
July 30, 2014, 05:56:47 PM
 #18681

Speaking of Christian, he hasn't posted since July 12th.

Anybody heard from him in any way?

Just hoping everything is OK with him.

note quite okay, been sick for 2 weeks, but based on what I know it's not fatal. At least I've got that going for me. :-)
tbearhere
Legendary
*
Offline Offline

Activity: 3150
Merit: 1003



View Profile
July 30, 2014, 06:01:46 PM
Last edit: July 30, 2014, 06:50:09 PM by tbearhere
 #18682

ok same s#%!  Smiley  no doom



nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

that day when i got the virus after cleaning it up, CACH coin went to n15. before at n14 i was getting 7.5 kh/s per card with vista and windows 8.1
then a couple days after went back to CACH and 2cards on vista got 3.35 kh/s percard, but the 4 on windows 8.1 im only getting 2.3kh/s per.

but still no doom   Sad
EDIT:it wont work on vista either
no other batch file will work with that
DougB62
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500


Banned: For Your Protection


View Profile
July 30, 2014, 06:10:13 PM
 #18683

Speaking of Christian, he hasn't posted since July 12th.

Anybody heard from him in any way?

Just hoping everything is OK with him.

note quite okay, been sick for 2 weeks, but based on what I know it's not fatal. At least I've got that going for me. :-)

It's alive!!! That's a good thing.  Wink
cayars
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
July 30, 2014, 06:20:19 PM
 #18684

Speaking of Christian, he hasn't posted since July 12th.

Anybody heard from him in any way?

Just hoping everything is OK with him.

note quite okay, been sick for 2 weeks, but based on what I know it's not fatal. At least I've got that going for me. :-)

Good to hear from you.   We were starting to get worried.

PS you sure it's not a 2 week hang over?  LOL
bathrobehero
Legendary
*
Offline Offline

Activity: 2002
Merit: 1051


ICO? Not even once.


View Profile
July 30, 2014, 06:29:12 PM
 #18685

Speaking of Christian, he hasn't posted since July 12th.

Anybody heard from him in any way?

Just hoping everything is OK with him.

note quite okay, been sick for 2 weeks, but based on what I know it's not fatal. At least I've got that going for me. :-)

Get well!

Not your keys, not your coins!
sp_
Legendary
*
Offline Offline

Activity: 2912
Merit: 1087

Team Black developer


View Profile
July 30, 2014, 06:31:58 PM
 #18686

Take a look at this:

#define MULT2(a,j)\
    tmp = a[7+(8*j)];\
    a[7+(8*j)] = a[6+(8*j)];\
    a[6+(8*j)] = a[5+(8*j)];\
    a[5+(8*j)] = a[4+(8*j)];\
    a[4+(8*j)] = a[3+(8*j)] ^ tmp;\   (work is done)
    a[3+(8*j)] = a[2+(8*j)] ^ tmp;\   (work is done)
    a[2+(8*j)] = a[1+(8*j)];\
    a[1+(8*j)] = a[0+(8*j)] ^ tmp;\   (work is done)
    a[0+(8*j)] = tmp;

3 out of 9 lines of code is doing work.

The luffa implementation is moving 32bit words around in the cache. Instead of moving the memory, scramble the memory.
Create an index with a modulo for every write. Rewrite the loop to use 64bit registers .
The modulo can be created with an andmask. since the border of each block is on 2^n boundaries.

3-4 times the speed.

why not testing your suggestion ? It is only one algo to change.

There is a difference between those who compile algorithms and those who invent them.

Team Black Miner (ETHB3 ETH ETC VTC KAWPOW FIROPOW MEOWPOW + dual mining + tripple mining.. https://github.com/sp-hash/TeamBlackMiner
tbearhere
Legendary
*
Offline Offline

Activity: 3150
Merit: 1003



View Profile
July 30, 2014, 06:32:33 PM
Last edit: July 30, 2014, 07:00:25 PM by tbearhere
 #18687

Speaking of Christian, he hasn't posted since July 12th.

Anybody heard from him in any way?

Just hoping everything is OK with him.

note quite okay, been sick for 2 weeks, but based on what I know it's not fatal. At least I've got that going for me. :-)

Good to hear from you.   We were starting to get worried.

PS you sure it's not a 2 week hang over?  LOL

shhhhhhhhh hes compiling  asic to x11    
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
July 30, 2014, 06:55:37 PM
 #18688

Take a look at this:

#define MULT2(a,j)\
    tmp = a[7+(8*j)];\
    a[7+(8*j)] = a[6+(8*j)];\
    a[6+(8*j)] = a[5+(8*j)];\
    a[5+(8*j)] = a[4+(8*j)];\
    a[4+(8*j)] = a[3+(8*j)] ^ tmp;\   (work is done)
    a[3+(8*j)] = a[2+(8*j)] ^ tmp;\   (work is done)
    a[2+(8*j)] = a[1+(8*j)];\
    a[1+(8*j)] = a[0+(8*j)] ^ tmp;\   (work is done)
    a[0+(8*j)] = tmp;

3 out of 9 lines of code is doing work.

The luffa implementation is moving 32bit words around in the cache. Instead of moving the memory, scramble the memory.
Create an index with a modulo for every write. Rewrite the loop to use 64bit registers .
The modulo can be created with an andmask. since the border of each block is on 2^n boundaries.

3-4 times the speed.

why not testing your suggestion ? It is only one algo to change.

There is a difference between those who compile algorithms and those who invent them.
no offense but you don't compile nor invent them... you are just making a couple of suggestion...

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
July 30, 2014, 07:04:26 PM
 #18689

Take a look at this:

#define MULT2(a,j)\
    tmp = a[7+(8*j)];\
    a[7+(8*j)] = a[6+(8*j)];\
    a[6+(8*j)] = a[5+(8*j)];\
    a[5+(8*j)] = a[4+(8*j)];\
    a[4+(8*j)] = a[3+(8*j)] ^ tmp;\   (work is done)
    a[3+(8*j)] = a[2+(8*j)] ^ tmp;\   (work is done)
    a[2+(8*j)] = a[1+(8*j)];\
    a[1+(8*j)] = a[0+(8*j)] ^ tmp;\   (work is done)
    a[0+(8*j)] = tmp;

3 out of 9 lines of code is doing work.

The luffa implementation is moving 32bit words around in the cache. Instead of moving the memory, scramble the memory.
Create an index with a modulo for every write. Rewrite the loop to use 64bit registers .
The modulo can be created with an andmask. since the border of each block is on 2^n boundaries.

3-4 times the speed.

why not testing your suggestion ? It is only one algo to change.

There is a difference between those who compile algorithms and those who invent them.
no offense but you don't compile nor invent them... you are just making a couple of suggestion...

I'm pretty sure English isn't his first language.
asm is his first language, that's why he doesn't want to try on c++

actually, anything can work, we you see a 40% perf difference between loop with a break instruction and one without
(random suggestion might work as well... I don't say _sp suggestion to translate all the program in uint64 would'nt work...)

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
Schleicher
Hero Member
*****
Offline Offline

Activity: 675
Merit: 513



View Profile
July 30, 2014, 07:04:47 PM
 #18690

ok same s#%!  Smiley  no doom



nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

that day when i got the virus after cleaning it up, CACH coin went to n15. before at n14 i was getting 7.5 kh/s per card with vista and windows 8.1
then a couple days after went back to CACH and 2cards on vista got 3.35 kh/s percard, but the 4 on windows 8.1 im only getting 2.3kh/s per.

but still no doom   Sad
EDIT:it wont work on vista either
no other batch file will work with that
In the batch file you have to change to the right directory first before trying to start nvminer.
Like this:
Code:
cd "C:\blabla\something"
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

tbearhere
Legendary
*
Offline Offline

Activity: 3150
Merit: 1003



View Profile
July 30, 2014, 08:03:36 PM
 #18691

ok same s#%!  Smiley  no doom



nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

that day when i got the virus after cleaning it up, CACH coin went to n15. before at n14 i was getting 7.5 kh/s per card with vista and windows 8.1
then a couple days after went back to CACH and 2cards on vista got 3.35 kh/s percard, but the 4 on windows 8.1 im only getting 2.3kh/s per.

but still no doom   Sad
EDIT:it wont work on vista either
no other batch file will work with that
In the batch file you have to change to the right directory first before trying to start nvminer.
Like this:
Code:
cd "C:\blabla\something"
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

no i tried everything including the latest drivers, the drivers worked but no other older bat files will work with latest driver so i went back to 3788 i give up. and i dont give up easy. i think its something in my computer because djm34 ran same file on hes windows 8.1 with 3788 drivers and it worked for him. in fact 95% of my bat files say the same thing but work. but thank you anyhow.  Smiley
my vista wont work with that either.
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
July 30, 2014, 08:12:30 PM
 #18692

ok same s#%!  Smiley  no doom



nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

that day when i got the virus after cleaning it up, CACH coin went to n15. before at n14 i was getting 7.5 kh/s per card with vista and windows 8.1
then a couple days after went back to CACH and 2cards on vista got 3.35 kh/s percard, but the 4 on windows 8.1 im only getting 2.3kh/s per.

but still no doom   Sad
EDIT:it wont work on vista either
no other batch file will work with that
In the batch file you have to change to the right directory first before trying to start nvminer.
Like this:
Code:
cd "C:\blabla\something"
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

no i tried everything including the latest drivers, the drivers worked but no other older bat files will work with latest driver so i went back to 3788 i give up. and i dont give up easy. i think its something in my computer because djm34 ran same file on hes windows 8.1 with 3788 drivers and it worked for him. in fact 95% of my bat files say the same thing but work. but thank you anyhow.  Smiley
my vista wont work with that either.
ok same s#%!  Smiley  no doom



nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

that day when i got the virus after cleaning it up, CACH coin went to n15. before at n14 i was getting 7.5 kh/s per card with vista and windows 8.1
then a couple days after went back to CACH and 2cards on vista got 3.35 kh/s percard, but the 4 on windows 8.1 im only getting 2.3kh/s per.

but still no doom   Sad
EDIT:it wont work on vista either
no other batch file will work with that
In the batch file you have to change to the right directory first before trying to start nvminer.
Like this:
Code:
cd "C:\blabla\something"
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

no i tried everything including the latest drivers, the drivers worked but no other older bat files will work with latest driver so i went back to 3788 i give up. and i dont give up easy. i think its something in my computer because djm34 ran same file on hes windows 8.1 with 3788 drivers and it worked for him. in fact 95% of my bat files say the same thing but work. but thank you anyhow.  Smiley
my vista wont work with that either.
can you put a "dir" between the command line and the pause.
Because for me, it just means the exe isn't there...

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
tbearhere
Legendary
*
Offline Offline

Activity: 3150
Merit: 1003



View Profile
July 30, 2014, 08:21:24 PM
 #18693

ok same s#%!  Smiley  no doom



nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

that day when i got the virus after cleaning it up, CACH coin went to n15. before at n14 i was getting 7.5 kh/s per card with vista and windows 8.1
then a couple days after went back to CACH and 2cards on vista got 3.35 kh/s percard, but the 4 on windows 8.1 im only getting 2.3kh/s per.

but still no doom   Sad
EDIT:it wont work on vista either
no other batch file will work with that
In the batch file you have to change to the right directory first before trying to start nvminer.
Like this:
Code:
cd "C:\blabla\something"
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

no i tried everything including the latest drivers, the drivers worked but no other older bat files will work with latest driver so i went back to 3788 i give up. and i dont give up easy. i think its something in my computer because djm34 ran same file on hes windows 8.1 with 3788 drivers and it worked for him. in fact 95% of my bat files say the same thing but work. but thank you anyhow.  Smiley
my vista wont work with that either.
ok same s#%!  Smiley  no doom



nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

that day when i got the virus after cleaning it up, CACH coin went to n15. before at n14 i was getting 7.5 kh/s per card with vista and windows 8.1
then a couple days after went back to CACH and 2cards on vista got 3.35 kh/s percard, but the 4 on windows 8.1 im only getting 2.3kh/s per.

but still no doom   Sad
EDIT:it wont work on vista either
no other batch file will work with that
In the batch file you have to change to the right directory first before trying to start nvminer.
Like this:
Code:
cd "C:\blabla\something"
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112

no i tried everything including the latest drivers, the drivers worked but no other older bat files will work with latest driver so i went back to 3788 i give up. and i dont give up easy. i think its something in my computer because djm34 ran same file on hes windows 8.1 with 3788 drivers and it worked for him. in fact 95% of my bat files say the same thing but work. but thank you anyhow.  Smiley
my vista wont work with that either.
can you put a "dir" between the command line and the pause.
Because for me, it just means the exe isn't there...
can you show me what you mean
tbearhere
Legendary
*
Offline Offline

Activity: 3150
Merit: 1003



View Profile
July 30, 2014, 08:25:27 PM
 #18694

:start
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x  -d 0,1,2,3
goto start


loops of course but open

:start
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x  -d 0,1,2,3 --time-limit 1800
goto start

loops no mining
tbearhere
Legendary
*
Offline Offline

Activity: 3150
Merit: 1003



View Profile
July 30, 2014, 08:30:06 PM
 #18695

:start
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x  -d 0,1,2,3
goto start


loops of course but open

:start
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x  -d 0,1,2,3 --time-limit 1800
goto start

loops no mining

i was mining for a few with new drivers but im back to 3788
EDIT: This opens but no mining just sits there

start
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x  -d 0,1,2,3
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
July 30, 2014, 08:41:04 PM
 #18696

:start
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x  -d 0,1,2,3
goto start


loops of course but open

:start
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x  -d 0,1,2,3 --time-limit 1800
goto start

loops no mining

i was mining for a few with new drivers but im back to 3788
EDIT: This opens but no mining just sits there

start
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x  -d 0,1,2,3
try without the loop...
I meant:

nvMiner etc...
dir
pause

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
tbearhere
Legendary
*
Offline Offline

Activity: 3150
Merit: 1003



View Profile
July 30, 2014, 08:45:33 PM
Last edit: July 30, 2014, 09:08:45 PM by tbearhere
 #18697

try without the loop...
I meant:

nvMiner etc...
dir
pause
[/quote]

ok got it to open 

mirny
Legendary
*
Offline Offline

Activity: 1108
Merit: 1005



View Profile
July 30, 2014, 09:11:38 PM
 #18698

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.

This is my signature...
tbearhere
Legendary
*
Offline Offline

Activity: 3150
Merit: 1003



View Profile
July 30, 2014, 09:17:35 PM
 #18699

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.

the forum http://www.cudaminers.net/forum/
is it possible to run 6 cards on win7? if you have enough  pcie slots
read that forum and this, and you will get you answers
cayars
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
July 30, 2014, 09:32:47 PM
 #18700

try without the loop...
I meant:

nvMiner etc...
dir
pause

ok got it to open  


[/quote]

Lets try this old school style
1) open dos/cmd box
2) manually type in cd "C:\blabla\something" but of course switch to the proper directory
3) manually type the following
nvMiner.exe -a luffa -o stratum+tcp://doom.suprnova.cc:5112 -u razorsedge.doom1  -p x

no -d at the end

What happens?  If problem screen shot please.

Carlo

PS this assumes "razorsedge" is a valid account on suprnove.cc for doom and there is a worker setup with the name "doom1"
Pages: « 1 ... 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 [935] 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 ... 1135 »
  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!