Author

Topic: Nexus - Pure SHA3 + CPU/GPU + nPoS + 15 Active Innovations + More to Come - page 307. (Read 785514 times)

hero member
Activity: 556
Merit: 501
Here is my bat for the computer with the wallet and 750ti's (total of 5):   skminer.exe 127.0.0.1 9325 5 20

On the image I don't have an account anywhere to upload and not sure how to insert but it says

Initializing Miner 127.0.0.1:9325 Threads = 5 Timeout = 20
connected to 127.0.0.1:9325...
[Master] Failed to Update Height
Connected to 127.0.01:9325...
[Master] Failed to Update Height
Repeats this until I terminate the miner

The computer with the 970 shows the same thing except for the 127.0.0.1 it has the ip address of the computer with the wallet running.

I have a config file to solo from another computer and it is:
rpcuser=MYUSER
rpcpassword=MYPASS
rpcallowip=127.0.0.*
rpcport=9325
server=1
daemon=1
listen=1

The wallet was created with a short cut and I went into properties and added the -server.

This is always how I have solo mined and haven't had any issues.


try this:
1. Create new wallet.dat (remember to make a backup of the previous if you have some coins in it)
2. delete the .conf file
3. open the wallet.
4. open the miner (mumus version) with this configuration:
Code:
skminer.exe 127.0.0.1 9325 5

all this on the same computer you have 5 GTX 750ti and wallet.
On the computer that has the GTX 970, install the wallet and then follow the steps above.

Edit: The .conf file is not required. It's late here 4:00 a.m. I go to sleep.
Cheers!

Awesome. That did it.

The 5 750ti's are mining at 93,700 kh/s with a really big one every now and then, 111,663,099,635,905 kh/s

The 970 is working too the rig with the wallet at 42,500 kh/s with one big one every now and then 1,140,165,890,007,893 kh/s

I'll send you some coins when I find a block. Post your address.

Thanks again.

great, this is my address.
Code:
2S14hADFJiwiFFKS2RKxazosq2n8LCt97gepTf5KvC6jJZENpsj
Cheers!
sr. member
Activity: 518
Merit: 275
If you fail...just dont fail again
DEV,Will you add block explorer for this coin? This is the key factor for bigger exchange to list your coin.
block explorer will be worked on after the pools are done being coded... (next few days).
sr. member
Activity: 329
Merit: 250
GTX 760 is an sm_30 GPU and the application only seems to work on GPUs with greater compute capability for now.
so is there a chance to get it fixed?
ps: could somebody tell if sm_30 cards are finding any block under windows?

I didn't find any on testnet with a 660.
I am looking into a new kernel for the compute_30 cards (they don't have enough registers for the current one... )
but I have many things on my plate at the moment...
(I might have something... but the diff on testnet is a bit too high to get a fast answer... so it tells you already it won't be fast...)

so would lowering minimal difficulty on testnet help?
@viz: are you about to release a c release of the wallet? could you also please consider lowering the diff. in this release?
i consider donating the first 24h (or more if asked) of mining with a fixed sm_30 miner if this would help as a incentive for your (or anybody else) time...
thank you.

edit: djm34, if you have a roughly idea about which code parameters needs to be changed to fix this, please explain what i should try so i could do a trial/error loop myself until a fix is found. i'm not a software developer, but i've enough programming knowledge to perform simple code read and modifications...

If you just want to "simulate" a lower difficulty in the code then just simply do this in MinerThread.cpp (-> MinerThread::SK1024Miner() function)
            CBigNum target;
            target.SetCompact(m_pBLOCK->GetBits());            
            target.SetCompact(0x7e003fff); //simulate lower difficulty

With this setting my single 750ti "finds" a "block" every couple of seconds. Of course submission will fail but you can check that the mining algo code is working.  
thank you mumus, there are no submission attempts thus confirming the mining code is actually not working...
i've blindly tried to enable SKEIN_ERR_CHECK into hash/skein.h but nothing changed, do you know if there's something that could eventually be tuned in the code that could help fixing it?
sr. member
Activity: 291
Merit: 250
GTX 760 is an sm_30 GPU and the application only seems to work on GPUs with greater compute capability for now.
so is there a chance to get it fixed?
ps: could somebody tell if sm_30 cards are finding any block under windows?

I didn't find any on testnet with a 660.
I am looking into a new kernel for the compute_30 cards (they don't have enough registers for the current one... )
but I have many things on my plate at the moment...
(I might have something... but the diff on testnet is a bit too high to get a fast answer... so it tells you already it won't be fast...)

so would lowering minimal difficulty on testnet help?
@viz: are you about to release a c release of the wallet? could you also please consider lowering the diff. in this release?
i consider donating the first 24h (or more if asked) of mining with a fixed sm_30 miner if this would help as a incentive for your (or anybody else) time...
thank you.

edit: djm34, if you have a roughly idea about which code parameters needs to be changed to fix this, please explain what i should try so i could do a trial/error loop myself until a fix is found. i'm not a software developer, but i've enough programming knowledge to perform simple code read and modifications...

If you just want to "simulate" a lower difficulty in the code then just simply do this in MinerThread.cpp (-> MinerThread::SK1024Miner() function)
            CBigNum target;
            target.SetCompact(m_pBLOCK->GetBits());            
            target.SetCompact(0x7e003fff); //simulate lower difficulty

With this setting my single 750ti "finds" a "block" every couple of seconds. Of course submission will fail but you can check that the mining algo code is working.  
sr. member
Activity: 329
Merit: 250
GTX 760 is an sm_30 GPU and the application only seems to work on GPUs with greater compute capability for now.
so is there a chance to get it fixed?
ps: could somebody tell if sm_30 cards are finding any block under windows?

I didn't find any on testnet with a 660.
I am looking into a new kernel for the compute_30 cards (they don't have enough registers for the current one... )
but I have many things on my plate at the moment...
(I might have something... but the diff on testnet is a bit too high to get a fast answer... so it tells you already it won't be fast...)

so would lowering minimal difficulty on testnet help?
@viz: are you about to release a c release of the wallet? could you also please consider lowering the diff. in this release?
i consider donating the first 24h (or more if asked) of mining with a fixed sm_30 miner if this would help as a incentive for your (or anybody else) time...
thank you.

edit: djm34, if you have a roughly idea about which code parameters needs to be changed to fix this, please explain what i should try so i could do a trial/error loop myself until a fix is found. i'm not a software developer, but i've enough programming knowledge to perform simple code read and modifications...
sr. member
Activity: 392
Merit: 250
DEV,Will you add block explorer for this coin? This is the key factor for bigger exchange to list your coin.
legendary
Activity: 1400
Merit: 1050
One question:  I have 3x750Ti (device 0,1,2) but if i want run only device 0 and 2 without 1 card, how can i do it with this miner, or this impossible now? Thanks.
for the moment you can't, however if you use a number of processor smaller than the number of card, then one of the gpu won't be used...
(obviously it won't be card #1 of your example)
legendary
Activity: 1400
Merit: 1000

You can share your .bat file here and a screenshot of the error, how many cards do you have?

Here is my bat for the computer with the wallet and 750ti's (total of 5):   skminer.exe 127.0.0.1 9325 5 20

On the image I don't have an account anywhere to upload and not sure how to insert but it says

Initializing Miner 127.0.0.1:9325 Threads = 5 Timeout = 20
connected to 127.0.0.1:9325...
[Master] Failed to Update Height
Connected to 127.0.01:9325...
[Master] Failed to Update Height
Repeats this until I terminate the miner

The computer with the 970 shows the same thing except for the 127.0.0.1 it has the ip address of the computer with the wallet running.

I have a config file to solo from another computer and it is:
rpcuser=MYUSER
rpcpassword=MYPASS
rpcallowip=127.0.0.*
rpcport=9325
server=1
daemon=1
listen=1

The wallet was created with a short cut and I went into properties and added the -server.

This is always how I have solo mined and haven't had any issues.

Your problem was that you've specified in the config file the rpcport=9325. This wallet has a separate channel and protocol (LLP) with a separate port to communicate with the solo miner. It doesn't uses RPC for it and the default RPC port is different.
[/quote]

Thanks for the explanation mumus.

I was just so used to solo mining I never thought about not needing the rpcport in or even needing a config file.
full member
Activity: 145
Merit: 101
One question:  I have 3x750Ti (device 0,1,2) but if i want run only device 0 and 2 without 1 card. If setup in miner skminer.exe 127.0.0.1 9325 2 works devices 0,1 but i need 0,2. How can i do it with this miner. Thanks.
legendary
Activity: 1400
Merit: 1050
AMD GPU miner when will be available?
when it will be ready
sr. member
Activity: 392
Merit: 250
I soloed with 4* 750ti for an hour.No luck at all. Angry I should leave this to those with many nvidia cards.
legendary
Activity: 1400
Merit: 1050
GTX 760 is an sm_30 GPU and the application only seems to work on GPUs with greater compute capability for now.
so is there a chance to get it fixed?
ps: could somebody tell if sm_30 cards are finding any block under windows?

I didn't find any on testnet with a 660.
I am looking into a new kernel for the compute_30 cards (they don't have enough registers for the current one... )
but I have many things on my plate at the moment...
(I might have something... but the diff on testnet is a bit too high to get a fast answer... so it tells you already it won't be fast...)
hero member
Activity: 756
Merit: 502
I would like to sell 10000 CSD for 1 BTC. PM me if you are interesting.

I consider myself interesting, but not interested 😊
sr. member
Activity: 329
Merit: 250
GTX 760 is an sm_30 GPU and the application only seems to work on GPUs with greater compute capability for now.
so is there a chance to get it fixed?
does skminer share the same code for each compute capability or are there different instructions that gets added depending on sm_?
if the latter it's just a matter of finding out where the bug is and fix it else it could be a cuda sdk bug that affects sm_30 and we're screwed...
i'm available for testing and debugging in case of you (or any other dev) not owning any sm_30 card.
thank you.

ps: could somebody tell if sm_30 cards are finding any block under windows?
newbie
Activity: 46
Merit: 0
AMD GPU miner when will be available?
sr. member
Activity: 291
Merit: 250

You can share your .bat file here and a screenshot of the error, how many cards do you have?

Here is my bat for the computer with the wallet and 750ti's (total of 5):   skminer.exe 127.0.0.1 9325 5 20

On the image I don't have an account anywhere to upload and not sure how to insert but it says

Initializing Miner 127.0.0.1:9325 Threads = 5 Timeout = 20
connected to 127.0.0.1:9325...
[Master] Failed to Update Height
Connected to 127.0.01:9325...
[Master] Failed to Update Height
Repeats this until I terminate the miner

The computer with the 970 shows the same thing except for the 127.0.0.1 it has the ip address of the computer with the wallet running.

I have a config file to solo from another computer and it is:
rpcuser=MYUSER
rpcpassword=MYPASS
rpcallowip=127.0.0.*
rpcport=9325
server=1
daemon=1
listen=1

The wallet was created with a short cut and I went into properties and added the -server.

This is always how I have solo mined and haven't had any issues.

[/quote]
Your problem was that you've specified in the config file the rpcport=9325. This wallet has a separate channel and protocol (LLP) with a separate port to communicate with the solo miner. It doesn't uses RPC for it and the default RPC port is different.
legendary
Activity: 1400
Merit: 1000
Here is my bat for the computer with the wallet and 750ti's (total of 5):   skminer.exe 127.0.0.1 9325 5 20

On the image I don't have an account anywhere to upload and not sure how to insert but it says

Initializing Miner 127.0.0.1:9325 Threads = 5 Timeout = 20
connected to 127.0.0.1:9325...
[Master] Failed to Update Height
Connected to 127.0.01:9325...
[Master] Failed to Update Height
Repeats this until I terminate the miner

The computer with the 970 shows the same thing except for the 127.0.0.1 it has the ip address of the computer with the wallet running.

I have a config file to solo from another computer and it is:
rpcuser=MYUSER
rpcpassword=MYPASS
rpcallowip=127.0.0.*
rpcport=9325
server=1
daemon=1
listen=1

The wallet was created with a short cut and I went into properties and added the -server.

This is always how I have solo mined and haven't had any issues.


try this:
1. Create new wallet.dat (remember to make a backup of the previous if you have some coins in it)
2. delete the .conf file
3. open the wallet.
4. open the miner (mumus version) with this configuration:
Code:
skminer.exe 127.0.0.1 9325 5

all this on the same computer you have 5 GTX 750ti and wallet.
On the computer that has the GTX 970, install the wallet and then follow the steps above.

Edit: The .conf file is not required. It's late here 4:00 a.m. I go to sleep.
Cheers!

Awesome. That did it.

The 5 750ti's are mining at 93,700 kh/s with a really big one every now and then, 111,663,099,635,905 kh/s

The 970 is working too the rig with the wallet at 42,500 kh/s with one big one every now and then 1,140,165,890,007,893 kh/s

I'll send you some coins when I find a block. Post your address.

Thanks again.
hero member
Activity: 556
Merit: 501
Here is my bat for the computer with the wallet and 750ti's (total of 5):   skminer.exe 127.0.0.1 9325 5 20

On the image I don't have an account anywhere to upload and not sure how to insert but it says

Initializing Miner 127.0.0.1:9325 Threads = 5 Timeout = 20
connected to 127.0.0.1:9325...
[Master] Failed to Update Height
Connected to 127.0.01:9325...
[Master] Failed to Update Height
Repeats this until I terminate the miner

The computer with the 970 shows the same thing except for the 127.0.0.1 it has the ip address of the computer with the wallet running.

I have a config file to solo from another computer and it is:
rpcuser=MYUSER
rpcpassword=MYPASS
rpcallowip=127.0.0.*
rpcport=9325
server=1
daemon=1
listen=1

The wallet was created with a short cut and I went into properties and added the -server.

This is always how I have solo mined and haven't had any issues.


try this:
1. Create new wallet.dat (remember to make a backup of the previous if you have some coins in it)
2. delete the .conf file
3. open the wallet.
4. open the miner (mumus version) with this configuration:
Code:
skminer.exe 127.0.0.1 9325 5

all this on the same computer you have 5 GTX 750ti and wallet.
On the computer that has the GTX 970, install the wallet and then follow the steps above.

Edit: The .conf file is not required. It's late here 4:00 a.m. I go to sleep.
Cheers!
legendary
Activity: 1400
Merit: 1000
@antonio8

Are you using a password protected wallet?


@hero18688

No pool yet but Videlicet will soon release an open source pool.

@Supercomputing

I did not do the encryption on it. I am not sure if it comes encrypted.

I just opened it and let it sync. it says block 28,078
sr. member
Activity: 278
Merit: 250
@antonio8

Are you using a password protected wallet?


@hero18688

No pool yet but Videlicet will soon release an open source pool.
Jump to: