Bitcoin Forum
May 10, 2024, 08:13:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 [229] 230 231 232 233 »
  Print  
Author Topic: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner  (Read 877797 times)
lance04
Full Member
***
Offline Offline

Activity: 462
Merit: 112



View Profile
July 19, 2017, 06:11:00 PM
 #4561

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.
Remember that Bitcoin is still beta software. Don't put all of your money into BTC!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715328801
Hero Member
*
Offline Offline

Posts: 1715328801

View Profile Personal Message (Offline)

Ignore
1715328801
Reply with quote  #2

1715328801
Report to moderator
1715328801
Hero Member
*
Offline Offline

Posts: 1715328801

View Profile Personal Message (Offline)

Ignore
1715328801
Reply with quote  #2

1715328801
Report to moderator
1715328801
Hero Member
*
Offline Offline

Posts: 1715328801

View Profile Personal Message (Offline)

Ignore
1715328801
Reply with quote  #2

1715328801
Report to moderator
Maicol792
Legendary
*
Offline Offline

Activity: 1260
Merit: 1010


View Profile
July 19, 2017, 06:34:48 PM
 #4562

why sgminer don't work on w10???
lankyman
Sr. Member
****
Offline Offline

Activity: 382
Merit: 250


View Profile
July 20, 2017, 09:43:15 PM
 #4563

Hi,

At NiceHash.com (I'm sure you've already heard about us) we're running a multi-algo cloud mining service and multipool. Thus we're striving to get unified and feature-full GPU miner. That's why we've sponsored the integration of sph-miner + keccak (from cgminer) + x11_mod (from lasybear) + NIST5 algo and some more stuff into unified, runtime-kernel-switching new version of the original official sgminer. sgminer has since then been redefined from "scrypt-miner" to "GPU OpenCL miner" and thus strive to support wide range of algorithms for GPU mining. New algorithms are added over time as well as some new features.

For the record: I'm not a developer of sgminer and haven't contributed any coding for sgminer, but was active in proposing and coordinating new features development. All the credits go to the many sgminer developers, listed here: https://github.com/nicehash/sgminer/graphs/contributors. NiceHash organization took over the initiative to continue development on this widely spread open-source mining software, therefore the most recent source code and releases can be found in the information below.

SOURCE CODE

If you wan't to pull the source code from GIT you can do it with this command:

Code:
git clone --recursive https://github.com/nicehash/sgminer.git

RELEASES

Binaries downloads are available here: https://github.com/nicehash/sgminer/releases

Here you can see the major changes:
https://github.com/nicehash/sgminer/blob/master/doc/configuration.md
https://github.com/nicehash/sgminer/blob/master/doc/kernel.md

News: https://github.com/nicehash/sgminer/commits/master

Please note: sgminer is still in development, you should regularly, so there are might be still some open issues and minor bugs present.

Here is an example of multi-algorithm configuration (you can add many pool-specific options):

Code:
{
"pools" : [
        {
                "name" : "NiceHash_X11",
                "url" : "stratum+tcp://stratum.nicehash.com:3336",
                "user" : "btc_addr",
                "pass" : "x",
                "nfactor" : "10",
                "algorithm" : "darkcoin-mod"
        },
        {
                "name" : "NiceHash_X13",
                "url" : "stratum+tcp://stratum.nicehash.com:3337",
                "user" : "btc_addr",
                "pass" : "x",
                "nfactor" : "10",
                "algorithm" : "marucoin-mod"
        },
        {
                "name" : "NiceHash_SHA3",
                "url" : "stratum+tcp://stratum.nicehash.com:3338",
                "user" : "btc_addr",
                "pass" : "x",
                "nfactor" : "10",
                "algorithm" : "maxcoin"
        },
        {
                "name" : "NiceHash_Scrypt-N",
                "url" : "stratum+tcp://stratum.nicehash.com:3335",
                "user" : "btc_addr",
                "pass" : "x",
                "nfactor" : "11",
                "algorithm" : "zuikkis"
        },
        {
                "name" : "NiceHash_Scrypt",
                "url" : "stratum+tcp://stratum.nicehash.com:3333",
                "user" : "btc_addr",
                "pass" : "x",
                "nfactor" : "10",
                "algorithm" : "zuikkis"
        }
]
"failover-only" : true,
"failover-switch-delay" : "300",
"queue" : "0",
... other configuration settings ...

Of course you can choose any and as many pools you prefer, NiceHash.com pools were given just as an example. Your miner will be able to switch to different pools using different algorithms at runtime, without any interruption and without sgminer restart. You can also set GPU settings and some other settings at a per-pool level to get optimum performance on various pools with various algorithms with a single configuration file. Now you can mine Litecoin, Dogecoin, Vertcoin, Darkcoin, Maxcoin, MaruCoin ... you-name-it with a single unified sgminer.

Note: sgminer v5 intoduced new stratum extranonce subscription; some pools ignores connection when sgminer sends extranonce subscription request, therefore you just have to add "no-extranonce" : true setting to the pool config for pools, that doesn't support extranonce-subscribe - this kind of pools appears Dead even if they are suposed to be working fine (you should never use this setting on nicehash pools since nicehash stratum proxy provides better efficiency with extranonce subscription)

Code:
	{
                "url" : "stratum+tcp://some-pool:3333",
                "no-extranonce" : true,
                "user" : "username",
                "pass" : "x",
}

Or if you're using command line options, example for quark mining:

Code:
sgminer --algorithm quarkcoin --no-extranonce -I 18 -g 1 -w 256 -o stratum+tcp://some-quark-pool:3333 -u ... -p ...

All interested developers, please, feel free to contribute to the code by simply pushing Pull request to the Github repository (see above).

Again, thanks to all the great developers of sgminer and kind regards,
kenshirothefist

Man those bloody servers dont work, ridiculous.
Only the 3336 one does which is bitcoin, but non of these guides explain what to use, if it is sgminer and cgminer and what algorithm.... i have tried -k sha256 and -k sha256d  but i get hundreds to thousands of Rejections ....as it mines.

For all i know i that i can leave it to mine till the cows come home but i could using h incorrect command
lankyman
Sr. Member
****
Offline Offline

Activity: 382
Merit: 250


View Profile
July 20, 2017, 09:50:00 PM
 #4564

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.
OverEasy
Sr. Member
****
Offline Offline

Activity: 301
Merit: 251


View Profile
August 01, 2017, 01:13:59 PM
Last edit: August 01, 2017, 01:30:07 PM by OverEasy
 #4565

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 <options>
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<const unsigned char *>(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<const unsigned char *>(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<const unsigned char *>(_K);
                            ^
sha256_Y.c:302:45: error: expected expression before ‘const’
  const unsigned char * K = reinterpret_cast<const unsigned char *>(_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$
Orphzin
Jr. Member
*
Offline Offline

Activity: 66
Merit: 2


View Profile
August 01, 2017, 07:04:25 PM
 #4566

Noob question

is this miner only for amd/ati cards?

Thanks
pallas
Legendary
*
Offline Offline

Activity: 2716
Merit: 1094


Black Belt Developer


View Profile
August 01, 2017, 07:28:48 PM
 #4567

Noob question

is this miner only for amd/ati cards?

Thanks

Some kernels may work on nvidia as well, because it is opencl.

stellan0r
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


Medical Translations for Bitcoins


View Profile
August 06, 2017, 04:59:49 PM
 #4568

Hey there, will you update the sgminer kernels for mining with RX Vega cards  (and make them public Wink) ?

Allgemeine Gesundheitsberatung gegen Bitcoin-Zahlung. Bei Fragen einfach eine PM schicken!
If you want to send a thank you: BTC "1PZJvKvarRviQRQWejpvXW2j4e1xbT8MZb"
condourfx
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
August 07, 2017, 08:37:51 PM
 #4569

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 ?
zombiefish
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile
August 10, 2017, 12:09:00 AM
 #4570


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.
balloontree
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 29, 2017, 02:31:01 PM
 #4571

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
Kozzz
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
September 14, 2017, 02:42:16 PM
 #4572

HI,can you add Hcash?(another X14)thx
https://github.com/HcashOrg/Hshare/tree/master/src/obj/x13hash
Jackkyy
Full Member
***
Offline Offline

Activity: 252
Merit: 100


View Profile
September 22, 2017, 01:54:06 PM
 #4573

Hi
i have Vega 64 abut sgminer not work on my card
i see hashrate but only HW errors added

please help
insaniak
Full Member
***
Offline Offline

Activity: 137
Merit: 100



View Profile
September 24, 2017, 06:11:01 PM
 #4574

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"
}
Jackkyy
Full Member
***
Offline Offline

Activity: 252
Merit: 100


View Profile
September 28, 2017, 09:11:37 AM
 #4575

you update sgminer work with vega64???
Jackkyy
Full Member
***
Offline Offline

Activity: 252
Merit: 100


View Profile
October 05, 2017, 07:47:02 PM
 #4576

no have sgminer xevan -for vega?Huh?
Simpan
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
October 07, 2017, 04:18:24 PM
 #4577

Noob question

is this miner only for amd/ati cards?

Thanks

that is right. For AMD only
entropy0
Full Member
***
Offline Offline

Activity: 412
Merit: 100


Que sera sera


View Profile
October 07, 2017, 07:07:48 PM
 #4578

nicehash repo disabled? i found maybe 5 other repos... which one is the most efficient atm?

Grow your Discord community with panda-bot! https://pandabot.fatpanda.club
Jackkyy
Full Member
***
Offline Offline

Activity: 252
Merit: 100


View Profile
October 10, 2017, 04:55:45 PM
 #4579

Why not optimized miner for Vega Huh
Nexu$
Full Member
***
Offline Offline

Activity: 144
Merit: 100


View Profile
November 06, 2017, 03:03:06 AM
 #4580

hi  I found this error when starting with an Amd r7 series if someone can help me from now thank you.

Failed to ADL_Overdrive5_ODPerformanceLevels_Get

head up ! With honesty
Pages: « 1 ... 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 [229] 230 231 232 233 »
  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!