Pages:
Author

Topic: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner - page 7. (Read 877843 times)

full member
Activity: 137
Merit: 100
Using rx 580 8 gb cards I have  no clue what im doing wrong but this is what I have and its not working. Can I get some help please

{
"pools" : [
        {
                "name" : "MPH",
                "url" : "stratum+tcp://hub.miningpoolhub.com:12012",
                "user" : "username",
                "pass" : "x",
                "algorithm" : "neoscrypt"
        }
,
"intensity" : "18",
"worksize" : "256",
"kernel" : "myriadcoin-groestl",
"lookup-gap" : "2",
"thread-concurrency" : "8192",
"shaders" : "0",
"gpu-threads" : "2",
"gpu-engine" : "0-0",
"gpu-fan" : "0-0",
"gpu-memclock" : "0",
"gpu-memdiff" : "0",
"gpu-powertune" : "0",
"gpu-vddc" : "0.000",
"temp-cutoff" : "95",
"temp-overheat" : "85",
"temp-target" : "75",
"api-mcast-port" : "4028",
"api-port" : "4028",
"expiry" : "28",
"failover-switch-delay" : "60",
"gpu-dyninterval" : "7",
"gpu-platform" : "0",
"log" : "5",
"no-pool-disable" : true,
"queue" : "1",
"scan-time" : "7",
"tcp-keepalive" : "30",
"temp-hysteresis" : "3",
"shares" : "0",
"kernel-path" : "/usr/local/bin"
}
full member
Activity: 252
Merit: 100
Hi
i have Vega 64 abut sgminer not work on my card
i see hashrate but only HW errors added

please help
newbie
Activity: 28
Merit: 0
Hi, I have 480 GPU rigs running ethOS with sgminer pointing at nanopool

How do I configure it to point at nicehash?
https://www.nicehash.com/index.jsp?p=multialgo

I do not quite understand the instructions.

Thanks
newbie
Activity: 54
Merit: 0

I have a spare XFI Radeon 7850 1gb and i am trying to get it to mine on zpool. I have plenty of experience with ccminer but for the life of me I can not get this one to work
I have sgminer 5.6.1 but can not get my settings correct. Not looking for max intensity just something consistant with moderate/low temp (130 range)

Was able to get it to work with guiminer @250 m/h but my temp shot through the roof 150+ ( don't really know how accurate that hasrate was)

Just need to get pointed in the right direction, Thanks in advance.
newbie
Activity: 22
Merit: 0
I want to add code for temp overheat but not work

My code like that :

sgminer.exe -k skunkhash -o stratum+tcp://zec.suprnova.cc:7106 -u ***** -p **** --temp-overheat 75
pause

it's not work for my gpu rx 480

are the code is not true ?
hero member
Activity: 574
Merit: 500
Medical Translations for Bitcoins
Hey there, will you update the sgminer kernels for mining with RX Vega cards  (and make them public Wink) ?
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
Noob question

is this miner only for amd/ati cards?

Thanks

Some kernels may work on nvidia as well, because it is opencl.
jr. member
Activity: 66
Merit: 2
Noob question

is this miner only for amd/ati cards?

Thanks
sr. member
Activity: 301
Merit: 251
SGminer compile issue
Heres what I did -

sudo git clone https://github.com/miningpoolhub/sgminer.git mph_sgminer
sudo git submodule init
sudo git submodule update
sudo autoreconf -i
sudo CFLAGS="-O2 -Wall -march=native -std=gnu99" ./configure
sudo make install

Result -

Configuration Options Summary:

  Use git version......: yes
  libcurl(GBT+getwork).: Enabled: -lcurl
  curses.TUI...........: FOUND: -lncurses
  OpenCL...............: FOUND. GPU mining support enabled
  ADL..................: SDK found, GPU monitoring support enabled

Compilation............: make (or gmake)
  CPPFLAGS.............:
  CFLAGS...............: -O2 -Wall -march=native -std=gnu99
  LDFLAGS..............:  -lpthread
  LDADD................: -ldl -lcurl submodules/jansson/src/.libs/libjansson.a -lpthread -lOpenCL    -lm -lrt

Installation...........: make install (as root if needed, with 'su' or 'sudo')
  prefix...............: /usr/local

And heres what I got
Any help would be appreciated.



make[1]: Entering directory '/home/m1/mph_sgminer/sph'
  CC       bmw.o
  CC       echo.o
  CC       jh.o
  CC       luffa.o
  CC       simd.o
  CC       blake.o
  CC       cubehash.o
  CC       groestl.o
  CC       keccak.o
  CC       shavite.o
  CC       skein.o
  CC       sha2.o
  CC       sha2big.o
  CC       fugue.o
  CC       hamsi.o
  CC       panama.o
  CC       shabal.o
  CC       whirlpool.o
  CC       sha256_Y.o
sha256_Y.c: In function ‘SHA256_Update_Y’:
sha256_Y.c:239:29: error: ‘reinterpret_cast’ undeclared (first use in this function)
  const unsigned char *src = reinterpret_cast(in);
                             ^
sha256_Y.c:239:29: note: each undeclared identifier is reported only once for each function it appears in
sha256_Y.c:239:46: error: expected expression before ‘const’
  const unsigned char *src = reinterpret_cast(in);
                                              ^
sha256_Y.c: In function ‘HMAC_SHA256_Init_Y’:
sha256_Y.c:302:28: error: ‘reinterpret_cast’ undeclared (first use in this function)
  const unsigned char * K = reinterpret_cast(_K);
                            ^
sha256_Y.c:302:45: error: expected expression before ‘const’
  const unsigned char * K = reinterpret_cast(_K);
                                             ^
In file included from sha256_Y.c:32:0:
sha256_Y.c: At top level:
../algorithm/sysendian.h:46:18: warning: ‘le32dec’ defined but not used [-Wunused-function]
 static  uint32_t le32dec(const void *pp)
                  ^
../algorithm/sysendian.h:75:14: warning: ‘le32enc’ defined but not used [-Wunused-function]
 static  void le32enc(void *pp, uint32_t x)
              ^
../algorithm/sysendian.h:86:1: warning: ‘be64dec’ defined but not used [-Wunused-function]
 be64dec(const void *pp)
 ^
../algorithm/sysendian.h:97:1: warning: ‘be64enc’ defined but not used [-Wunused-function]
 be64enc(void *pp, uint64_t x)
 ^
../algorithm/sysendian.h:114:1: warning: ‘le64dec’ defined but not used [-Wunused-function]
 le64dec(const void *pp)
 ^
../algorithm/sysendian.h:125:1: warning: ‘le64enc’ defined but not used [-Wunused-function]
 le64enc(void *pp, uint64_t x)
 ^
Makefile:539: recipe for target 'sha256_Y.o' failed
make[1]: *** [sha256_Y.o] Error 1
make[1]: Leaving directory '/home/m1/mph_sgminer/sph'
Makefile:1613: recipe for target 'install-recursive' failed
make: *** [install-recursive] Error 1
m1@m1-desktop:~/mph_sgminer$
sr. member
Activity: 382
Merit: 250
Sgminer starts and returns to the command prompt without error, any suggestions ?


yes i found out the hard way u need to use -T and then --verbose in your command
BUt even then it is a ridiculous miner and so is cgminer, they never really explain clearly what the error is, its really a pain to use.
they are such old miners you would have though the developers would build in more user friendly messages or even a nicer gui, not this thing which clears the screen and doesnt show u the bloody error, i mean really.
Like how do u know if u are using the correct algorithm for the server u are connecting to , there have to ways they can built that in to the miner.
I have tested for example mining bitsend against 1 server which accept both xevan and xevan-mod as a algorithm but only the xevan algorithm actually gets me shares.
the other xevan-mod mines fine but no shares or rejects are found, i mean this is crazy.
sr. member
Activity: 382
Merit: 250
legendary
Activity: 1260
Merit: 1010
why sgminer don't work on w10???
full member
Activity: 462
Merit: 112
ahhhh bullus you can use one sgminer instance
you need to apply a different "hamsi-expand-big"
setting for the card that you want marucoin-mod-old on
In theory it should look like [FOR EXAMPLE]
hamsi-expand-big" : "1,1,4,1,1"   for these cards "290,290,280,290,290
I think this will still work and should work all in the same instance.
sr. member
Activity: 1344
Merit: 252
Have an error when trying to mine with sgminer on nvidia 1060 GPUs:

[12:31:34] ptxas application ptx input, line 9; fatal   : Unsupported .version 6.0; current version is '5.0'
ptxas fatal   : Ptx assembly aborted due to errors

Can't figure out whats the problem is in. Any thoughts?

May I ask you why you are trying to mine with sgminer on a nvidia card? Unless there is some special reason, you'd better use ccminer.
The reason is a some coin with new algo that can be mine by sgminer only right now, so can't get what I missing, one rig with Gigabite 1060x4 is working fine but other two with Palit 1060x6 giving me this error when trying to mine, how I can fix it?  Undecided

I know the coin. Did you try tpruvot's version? He just committed support for the algo.
Can you share the link to his latest version please? I have only ccminer-2.0-release-x64-cuda-8.0 but can't see there this algo support

You need to compile it from sources (github).
Hmmm... must say I'm zero in coding/programming, but thanks for information , guess compiled version will appear in near future...
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
Have an error when trying to mine with sgminer on nvidia 1060 GPUs:

[12:31:34] ptxas application ptx input, line 9; fatal   : Unsupported .version 6.0; current version is '5.0'
ptxas fatal   : Ptx assembly aborted due to errors

Can't figure out whats the problem is in. Any thoughts?

May I ask you why you are trying to mine with sgminer on a nvidia card? Unless there is some special reason, you'd better use ccminer.
The reason is a some coin with new algo that can be mine by sgminer only right now, so can't get what I missing, one rig with Gigabite 1060x4 is working fine but other two with Palit 1060x6 giving me this error when trying to mine, how I can fix it?  Undecided

I know the coin. Did you try tpruvot's version? He just committed support for the algo.
Can you share the link to his latest version please? I have only ccminer-2.0-release-x64-cuda-8.0 but can't see there this algo support

You need to compile it from sources (github).
sr. member
Activity: 1344
Merit: 252
Have an error when trying to mine with sgminer on nvidia 1060 GPUs:

[12:31:34] ptxas application ptx input, line 9; fatal   : Unsupported .version 6.0; current version is '5.0'
ptxas fatal   : Ptx assembly aborted due to errors

Can't figure out whats the problem is in. Any thoughts?

May I ask you why you are trying to mine with sgminer on a nvidia card? Unless there is some special reason, you'd better use ccminer.
The reason is a some coin with new algo that can be mine by sgminer only right now, so can't get what I missing, one rig with Gigabite 1060x4 is working fine but other two with Palit 1060x6 giving me this error when trying to mine, how I can fix it?  Undecided

I know the coin. Did you try tpruvot's version? He just committed support for the algo.
Can you share the link to his latest version please? I have only ccminer-2.0-release-x64-cuda-8.0 but can't see there this algo support
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
Have an error when trying to mine with sgminer on nvidia 1060 GPUs:

[12:31:34] ptxas application ptx input, line 9; fatal   : Unsupported .version 6.0; current version is '5.0'
ptxas fatal   : Ptx assembly aborted due to errors

Can't figure out whats the problem is in. Any thoughts?

May I ask you why you are trying to mine with sgminer on a nvidia card? Unless there is some special reason, you'd better use ccminer.
The reason is a some coin with new algo that can be mine by sgminer only right now, so can't get what I missing, one rig with Gigabite 1060x4 is working fine but other two with Palit 1060x6 giving me this error when trying to mine, how I can fix it?  Undecided

I know the coin. Did you try tpruvot's version? He just committed support for the algo.
sr. member
Activity: 1344
Merit: 252
Have an error when trying to mine with sgminer on nvidia 1060 GPUs:

[12:31:34] ptxas application ptx input, line 9; fatal   : Unsupported .version 6.0; current version is '5.0'
ptxas fatal   : Ptx assembly aborted due to errors

Can't figure out whats the problem is in. Any thoughts?

May I ask you why you are trying to mine with sgminer on a nvidia card? Unless there is some special reason, you'd better use ccminer.
The reason is a some coin with new algo that can be mine by sgminer only right now, so can't get what I missing, one rig with Gigabite 1060x4 is working fine but other two with Palit 1060x6 giving me this error when trying to mine, how I can fix it?  Undecided
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
Have an error when trying to mine with sgminer on nvidia 1060 GPUs:

[12:31:34] ptxas application ptx input, line 9; fatal   : Unsupported .version 6.0; current version is '5.0'
ptxas fatal   : Ptx assembly aborted due to errors

Can't figure out whats the problem is in. Any thoughts?

May I ask you why you are trying to mine with sgminer on a nvidia card? Unless there is some special reason, you'd better use ccminer.
Pages:
Jump to: