Bitcoin Forum
April 27, 2024, 11:17:58 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 13 14 15 [16] 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 »
  Print  
Author Topic: NSGminer v0.9.4: The Fastest NeoScrypt GPU Miner  (Read 221583 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
September 21, 2016, 03:55:46 PM
 #301

testing orbit@TBF

Also 10-15% of "share is above target"

Switch from vardiff to the fixed diff of 4 (64 in the pool).


--thread-concurrency 8192   --lookup-gap 2

These are ignored by the miner.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714259878
Hero Member
*
Offline Offline

Posts: 1714259878

View Profile Personal Message (Offline)

Ignore
1714259878
Reply with quote  #2

1714259878
Report to moderator
OverP
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
October 01, 2016, 12:08:01 PM
 #302

Just to let you guys know, it is entirely possible to improve the OpenCL kernel of this miner by eliminating scratchpad registers (register spills). I am currently getting 795KH/s, a 30% increase in speed, with a RX 480 and a heavily modified kernel. It is also possible to optimize the generated GCN code and make the kernel even faster.

I am currently focused on Ethereum mining because it is more profitable, but I might release my custom NeoScrypt  kernel when I have a chance.

Is your miner ready?
semajjames
Hero Member
*****
Offline Offline

Activity: 528
Merit: 500


View Profile
October 05, 2016, 08:39:03 PM
Last edit: October 10, 2016, 01:11:13 PM by semajjames
 #303

I am Solo mining with 2 rigs and one separate pc running the wallet,,
everything seem's fine with all the miners untill a rig finds a block at this point the coin gets to the wallet ok but the miner starts saying that the wallet ip/port address is not responding and the hashing stops and say's wait
Anything obvious that could cause this ?

cheers  
fredeq
Legendary
*
Offline Offline

Activity: 1537
Merit: 1005


View Profile WWW
November 15, 2016, 08:24:10 PM
 #304

Any way to run nsgminer on new 4xx series cards?
Guess its the problem with 16.x drivers.

https://whattomine.com - Check what to mine Smiley
OverP
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
November 25, 2016, 08:09:54 AM
 #305

480produces370Kh
zawawa
Sr. Member
****
Offline Offline

Activity: 728
Merit: 304


Miner Developer


View Profile
February 02, 2017, 03:05:07 AM
 #306

I totally forgot to announce it here. With Gateless Gate, my new miner, you should be able to get 700Kh/s with an overclocked RX 480:

https://github.com/zawawawa/gatelessgate
https://bitcointalk.org/index.php?topic=1716584

Let me know if you are still interested.

Gateless Gate Sharp, an open-source ETH/XMR miner: http://bit.ly/2rJ2x4V
BTC: 1BHwDWVerUTiKxhHPf2ubqKKiBMiKQGomZ
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
February 04, 2017, 01:54:45 PM
 #307

I have given your kernel a spin on my notebook with HD6750, got 25KH/s. My current parallel kernel outputs 45KH/s there with 3x lower kernel binary size. Perhaps your kernel isn't supposed to run on this hardware. I'll check with newer video cards later.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
aciddude
Member
**
Offline Offline

Activity: 179
Merit: 27


View Profile WWW
February 05, 2017, 04:47:02 PM
 #308

@Ghostlander

I'm getting:

Invalid (out of bounds) block target 0xDE1D0F1C




This is just solomining on 0.9.6

FTC API + Block Explorer https://fsight.chain.tips
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
February 06, 2017, 04:13:39 PM
 #309

@Ghostlander

I'm getting:

Invalid (out of bounds) block target 0xDE1D0F1C




This is just solomining on 0.9.6

The miner receives incorrect input data and tells you. The current FTC network difficulty is about 10^4. The miner reports 10^18.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
February 06, 2017, 04:21:46 PM
 #310

I have given your kernel a spin on my notebook with HD6750, got 25KH/s. My current parallel kernel outputs 45KH/s there with 3x lower kernel binary size. Perhaps your kernel isn't supposed to run on this hardware. I'll check with newer video cards later.

A follow-up. I've tested it on a HD7990. Produces 900KH/s vs. 880KH/s of my kernel. No scratch registers used, but ISA size is 174Kb vs. 40Kb of my kernel. It stores all data buffers as uint's and bitaligns them for processing using conditionals. This is an interesting approach, though not for older GPUs definitely because they hate branching. That's why I went another way to optimise for older and newer GPUs at the same time. I guess it's time to split work into two separate kernels and optimise them independently.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
aciddude
Member
**
Offline Offline

Activity: 179
Merit: 27


View Profile WWW
February 06, 2017, 05:01:59 PM
 #311

@Ghostlander

I'm getting:

Invalid (out of bounds) block target 0xDE1D0F1C




This is just solomining on 0.9.6

The miner receives incorrect input data and tells you. The current FTC network difficulty is about 10^4. The miner reports 10^18.

How does this make sense when I'm connected to a fully synced 0.9.6 client ?


FTC API + Block Explorer https://fsight.chain.tips
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
February 06, 2017, 05:13:45 PM
 #312

@Ghostlander

I'm getting:

Invalid (out of bounds) block target 0xDE1D0F1C




This is just solomining on 0.9.6

The miner receives incorrect input data and tells you. The current FTC network difficulty is about 10^4. The miner reports 10^18.

How does this make sense when I'm connected to a fully synced 0.9.6 client ?

Those who did QA on the v0.9.6 missed the solo mining part, i.e. getwork. It's broken. Try with the v0.8.7.3 to see the difference.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
aciddude
Member
**
Offline Offline

Activity: 179
Merit: 27


View Profile WWW
February 06, 2017, 06:03:18 PM
 #313

@Ghostlander

I'm getting:

Invalid (out of bounds) block target 0xDE1D0F1C




This is just solomining on 0.9.6

The miner receives incorrect input data and tells you. The current FTC network difficulty is about 10^4. The miner reports 10^18.

How does this make sense when I'm connected to a fully synced 0.9.6 client ?

Those who did QA on the v0.9.6 missed the solo mining part, i.e. getwork. It's broken. Try with the v0.8.7.3 to see the difference.



Ok thanks man, I'll ask the Feathercoin Devs to look into it.



FTC API + Block Explorer https://fsight.chain.tips
zawawa
Sr. Member
****
Offline Offline

Activity: 728
Merit: 304


Miner Developer


View Profile
February 07, 2017, 10:21:54 PM
 #314

I have given your kernel a spin on my notebook with HD6750, got 25KH/s. My current parallel kernel outputs 45KH/s there with 3x lower kernel binary size. Perhaps your kernel isn't supposed to run on this hardware. I'll check with newer video cards later.

A follow-up. I've tested it on a HD7990. Produces 900KH/s vs. 880KH/s of my kernel. No scratch registers used, but ISA size is 174Kb vs. 40Kb of my kernel. It stores all data buffers as uint's and bitaligns them for processing using conditionals. This is an interesting approach, though not for older GPUs definitely because they hate branching. That's why I went another way to optimise for older and newer GPUs at the same time. I guess it's time to split work into two separate kernels and optimise them independently.

Yeah, my optimizations are only for GCN. Like you said, they don't make any sense for VLIW4/5.
I did a quick run and got 970KH/s on my stock 7990 with Crimson 16.9.2.
I am currently working on an offline OpenCL compiler for GCN with inline assembly support.
If I can pull this off, we will see more interesting stuff.  Wink

Gateless Gate Sharp, an open-source ETH/XMR miner: http://bit.ly/2rJ2x4V
BTC: 1BHwDWVerUTiKxhHPf2ubqKKiBMiKQGomZ
Lanet
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
February 16, 2017, 11:43:02 AM
Last edit: February 16, 2017, 12:01:04 PM by Lanet
 #315

Hi I want to know if this temperature is normal or I have to turn it off the video card already has 2 years of normal use just now I start to mine.

Where I can calculate earnings with NeoScrypt. Do you recommend mining with nvidia video cards?

https://i.imgur.com/UP3sWuI.jpg
Lanet
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
February 16, 2017, 03:36:54 PM
 #316

any solution?
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
February 17, 2017, 03:07:56 AM
 #317

any solution?

WhatToMine.com

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
supersnips
Member
**
Offline Offline

Activity: 91
Merit: 10


View Profile
February 24, 2017, 03:20:44 PM
 #318

Nsgminer links are infected with  "Trojan.Win64.BitMiner.w"  be careful! 

here the file checked:
https://www.virustotal.com/de/file/0596f12456d2b41a4d3dd87598e8e9d1577d50d8ce1bdf3f217eec7df5b7ed59/analysis/1484997882/

and here the link: https://www.virustotal.com/de/url/8b8de9675bb64a4e5ecbcabd2e20374e657a760be2a252a398ccdbd6ce572a29/analysis/1487950100/








ccminer link seems clean.
ghostlander (OP)
Legendary
*
Offline Offline

Activity: 1239
Merit: 1020


No surrender, no retreat, no regret.


View Profile WWW
February 27, 2017, 02:20:12 PM
 #319


Miner "infected" with a miner. You must be genius.

"If you've got a problem and have to spread some coins to make it go away, you've got no problem. You've got an expence." ~ Phoenixcoin (PXC) and Orbitcoin (ORB) and Halcyon (HAL)
supersnips
Member
**
Offline Offline

Activity: 91
Merit: 10


View Profile
February 27, 2017, 04:37:36 PM
 #320





you forgot the Trojan there. well i dont get this message on other miners at all.

But

 if this isnt one, thanks for your work and effort to the community. i just shared what i saw, everybody needs to decide for them selve to use or not.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [16] 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 »
  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!