Pages:
Author

Topic: [ANN] sgminer with X11/X13/Nist5/Quark/Anime kernels compatible 14.6 amd drivers (Read 19321 times)

sr. member
Activity: 354
Merit: 250
I need help to compile on  pimp(ubuntu)
Quote
[/opt/sgminer-nist5]:# make
fatal: No names found, cannot describe anything.
make  all-recursive
fatal: No names found, cannot describe anything.
make[1]: Entering directory `/opt/sgminer-nist5'
Making all in lib
make[2]: Entering directory `/opt/sgminer-nist5/lib'
.deps/memmem.Po:1: *** multiple target patterns.  Stop.
make[2]: Leaving directory `/opt/sgminer-nist5/lib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/opt/sgminer-nist5'
make: *** [all] Error 2
newbie
Activity: 36
Merit: 0
How did you get X15 working with this release?
Sorry for my mistake. Mix up with aznboy84 topic.
full member
Activity: 159
Merit: 100
Cool miner!
X11
7950 - 3.7 Mhash/s
280x - 4.3 Mhash/s
270 - 2.5 Mhash/s

X15
7950 - 2.8 Mhash/s
280x - 3.2 Mhash/s
270 - 1.8 Mhash/s


Can it switch on fly to X11/X13/X15 algos?
Can anybody list config file here?

How did you get X15 working with this release?
member
Activity: 136
Merit: 10
Damn, im getting only 5.5MH on nist5 using 280x.

this is my cfg.

am i doing something wrong?

"intensity" : "21,21,21,21,21,21",
"worksize" : "256,256,256,256,256,256",
"kernel" : "nist5,nist5,nist5,nist5,nist5,nist5",
"lookup-gap" : "2,2,2,2,2,2",
"thread-concurrency" : "8192,8192,8192,8192,8192,8192",
"gpu-threads" : "4,4,4,4,4,4",
"api-listen" : true,
"api-mcast-port" : "4028",
"api-port" : "4028",
"expiry" : "28",
"failover-only" : true,
"failover-switch-delay" : "60",
"gpu-dyninterval" : "7",
"gpu-platform" : "1",
"gpu-threads" : "2",
"log" : "5",
"no-pool-disable" : true,
"queue" : "1",
"scan-time" : "7",
"tcp-keepalive" : "30",
"shares" : "0",
"kernel-path" : "/usr/local/bin",
"api-allow" : "W:127.0.0.1"
legendary
Activity: 1400
Merit: 1050
I tried just now, It didn't help, still HW.

The problem with HW and driver v14.6(rc2) is solved.
Just open files: x11mod.cl / x13mod.cl for sgminer v4.1.xx (darkcoin-mod.cl / marucoin-mod.cl - for sgminer v5) and replace each line, it at beginning of the file:

  • #define SPH_T32(x) ((x) & SPH_C32(0xFFFFFFFF))
  • #define SPH_ROTL32(x, n) SPH_T32(((x) << (n)) | ((x) >> (32 - (n))))

  • #define SPH_T64(x) ((x) & SPH_C64(0xFFFFFFFFFFFFFFFF))
  • #define SPH_ROTL64(x, n) SPH_T64(((x) << (n)) | ((x) >> (64 - (n))))

to this

  • #define SPH_T32(x) (as_uint(x))
  • #define SPH_ROTL32(x, n) rotate(as_uint(x), as_uint(n))

  • #define SPH_T64(x) (as_ulong(x))
  • #define SPH_ROTL64(x, n) rotate(as_ulong(x), (n) & 0xFFFFFFFFFFFFFFFFUL)

It's work x11/x13 fine for me.

Thanks to butcherette from http://club.dns-shop.ru/forum/search/?action=go_post&id=931006



thanks for the fix i took the liberty of uploading the file with the corrected x11mod.cl and x13mod.cl files:

https://mega.co.nz/#!VYdChDTb!z22fJmx_rFoYg8sQecRwh9FEVWKP063PGN4XdeM22O8

As you can see the virus total matches the one in the OP here: https://bitcointalksearch.org/topic/annx11x13-x11-darkcoinx13-marucoin-miner-based-on-sph-sgminer-623409.  Although it has alot of hits :/ kinda scary:


https://www.virustotal.com/en/file/0ce514a7c264ff8b2ab6dfaf9677e1df9539a398df6eeed46f466a2131ac6825/analysis/
(first link is original copy in OP)
https://www.virustotal.com/en/file/250513aa817824bdc80a5b2d0cfe370eaf4805a29e4cbf64450bb975d25bc91e/analysis/
(second link is file provided in my upload Smiley)

Both same no additional files added, just changed the 2 lines in x11mod.cl and x13mod.cl.. If it had problems they were there before i touched it Smiley. Hope it helps Smiley


I wish there was a way to know if it is truly clean!  That's a lot of false positives!!!!!!!!!!!!
best way is to compile yourself. (I will personally stop giving binaries... it takes 15min, to instal mingw and the necessary packages...)

Now, miners are used in botnet so there will be always tagged as malware/virus... (now it is the case for all miners... )

You make it sound so easy, but for someone who never had ever compiled, its far from it. I recall my first time doing so, my fast coin wallet, took a whole stinking day to do it. Its not as simple as click and install....

You want to be a real champ, should do a step by step DETAILED faq on how to compile this....
Actually the wallet was more complicated for me too... it took me some time to understand I had to use windows console (and not mingw shell) to compile the package and the wallet... (not mentioning all the compilation issues while building the wallet...)

But for this there is already a file in doc directory "windows-built.txt" where every single step to build the environnement and compile sgminer are given... Last time I needed to remake a working mingw environnement it took about half an hour (mainly because of some network problem...).

Actually, I saw in the latest sgminer version that they added support to visual studio, I will certainly move to that (easier than grep to find a reference to a function across the build...  Grin)
hero member
Activity: 672
Merit: 501
I tried just now, It didn't help, still HW.

The problem with HW and driver v14.6(rc2) is solved.
Just open files: x11mod.cl / x13mod.cl for sgminer v4.1.xx (darkcoin-mod.cl / marucoin-mod.cl - for sgminer v5) and replace each line, it at beginning of the file:

  • #define SPH_T32(x) ((x) & SPH_C32(0xFFFFFFFF))
  • #define SPH_ROTL32(x, n) SPH_T32(((x) << (n)) | ((x) >> (32 - (n))))

  • #define SPH_T64(x) ((x) & SPH_C64(0xFFFFFFFFFFFFFFFF))
  • #define SPH_ROTL64(x, n) SPH_T64(((x) << (n)) | ((x) >> (64 - (n))))

to this

  • #define SPH_T32(x) (as_uint(x))
  • #define SPH_ROTL32(x, n) rotate(as_uint(x), as_uint(n))

  • #define SPH_T64(x) (as_ulong(x))
  • #define SPH_ROTL64(x, n) rotate(as_ulong(x), (n) & 0xFFFFFFFFFFFFFFFFUL)

It's work x11/x13 fine for me.

Thanks to butcherette from http://club.dns-shop.ru/forum/search/?action=go_post&id=931006



thanks for the fix i took the liberty of uploading the file with the corrected x11mod.cl and x13mod.cl files:

https://mega.co.nz/#!VYdChDTb!z22fJmx_rFoYg8sQecRwh9FEVWKP063PGN4XdeM22O8

As you can see the virus total matches the one in the OP here: https://bitcointalksearch.org/topic/annx11x13-x11-darkcoinx13-marucoin-miner-based-on-sph-sgminer-623409.  Although it has alot of hits :/ kinda scary:


https://www.virustotal.com/en/file/0ce514a7c264ff8b2ab6dfaf9677e1df9539a398df6eeed46f466a2131ac6825/analysis/
(first link is original copy in OP)
https://www.virustotal.com/en/file/250513aa817824bdc80a5b2d0cfe370eaf4805a29e4cbf64450bb975d25bc91e/analysis/
(second link is file provided in my upload Smiley)

Both same no additional files added, just changed the 2 lines in x11mod.cl and x13mod.cl.. If it had problems they were there before i touched it Smiley. Hope it helps Smiley


I wish there was a way to know if it is truly clean!  That's a lot of false positives!!!!!!!!!!!!
best way is to compile yourself. (I will personally stop giving binaries... it takes 15min, to instal mingw and the necessary packages...)

Now, miners are used in botnet so there will be always tagged as malware/virus... (now it is the case for all miners... )

You make it sound so easy, but for someone who never had ever compiled, its far from it. I recall my first time doing so, my fast coin wallet, took a whole stinking day to do it. Its not as simple as click and install....

You want to be a real champ, should do a step by step DETAILED faq on how to compile this....
legendary
Activity: 1400
Merit: 1050
I tried just now, It didn't help, still HW.

The problem with HW and driver v14.6(rc2) is solved.
Just open files: x11mod.cl / x13mod.cl for sgminer v4.1.xx (darkcoin-mod.cl / marucoin-mod.cl - for sgminer v5) and replace each line, it at beginning of the file:

  • #define SPH_T32(x) ((x) & SPH_C32(0xFFFFFFFF))
  • #define SPH_ROTL32(x, n) SPH_T32(((x) << (n)) | ((x) >> (32 - (n))))

  • #define SPH_T64(x) ((x) & SPH_C64(0xFFFFFFFFFFFFFFFF))
  • #define SPH_ROTL64(x, n) SPH_T64(((x) << (n)) | ((x) >> (64 - (n))))

to this

  • #define SPH_T32(x) (as_uint(x))
  • #define SPH_ROTL32(x, n) rotate(as_uint(x), as_uint(n))

  • #define SPH_T64(x) (as_ulong(x))
  • #define SPH_ROTL64(x, n) rotate(as_ulong(x), (n) & 0xFFFFFFFFFFFFFFFFUL)

It's work x11/x13 fine for me.

Thanks to butcherette from http://club.dns-shop.ru/forum/search/?action=go_post&id=931006



thanks for the fix i took the liberty of uploading the file with the corrected x11mod.cl and x13mod.cl files:

https://mega.co.nz/#!VYdChDTb!z22fJmx_rFoYg8sQecRwh9FEVWKP063PGN4XdeM22O8

As you can see the virus total matches the one in the OP here: https://bitcointalksearch.org/topic/annx11x13-x11-darkcoinx13-marucoin-miner-based-on-sph-sgminer-623409.  Although it has alot of hits :/ kinda scary:


https://www.virustotal.com/en/file/0ce514a7c264ff8b2ab6dfaf9677e1df9539a398df6eeed46f466a2131ac6825/analysis/
(first link is original copy in OP)
https://www.virustotal.com/en/file/250513aa817824bdc80a5b2d0cfe370eaf4805a29e4cbf64450bb975d25bc91e/analysis/
(second link is file provided in my upload Smiley)

Both same no additional files added, just changed the 2 lines in x11mod.cl and x13mod.cl.. If it had problems they were there before i touched it Smiley. Hope it helps Smiley


I wish there was a way to know if it is truly clean!  That's a lot of false positives!!!!!!!!!!!!
best way is to compile yourself. (I will personally stop giving binaries... it takes 15min, to instal mingw and the necessary packages...)

Now, miners are used in botnet so there will be always tagged as malware/virus... (now it is the case for all miners... )
full member
Activity: 124
Merit: 100
I tried just now, It didn't help, still HW.

The problem with HW and driver v14.6(rc2) is solved.
Just open files: x11mod.cl / x13mod.cl for sgminer v4.1.xx (darkcoin-mod.cl / marucoin-mod.cl - for sgminer v5) and replace each line, it at beginning of the file:

  • #define SPH_T32(x) ((x) & SPH_C32(0xFFFFFFFF))
  • #define SPH_ROTL32(x, n) SPH_T32(((x) << (n)) | ((x) >> (32 - (n))))

  • #define SPH_T64(x) ((x) & SPH_C64(0xFFFFFFFFFFFFFFFF))
  • #define SPH_ROTL64(x, n) SPH_T64(((x) << (n)) | ((x) >> (64 - (n))))

to this

  • #define SPH_T32(x) (as_uint(x))
  • #define SPH_ROTL32(x, n) rotate(as_uint(x), as_uint(n))

  • #define SPH_T64(x) (as_ulong(x))
  • #define SPH_ROTL64(x, n) rotate(as_ulong(x), (n) & 0xFFFFFFFFFFFFFFFFUL)

It's work x11/x13 fine for me.

Thanks to butcherette from http://club.dns-shop.ru/forum/search/?action=go_post&id=931006



thanks for the fix i took the liberty of uploading the file with the corrected x11mod.cl and x13mod.cl files:

https://mega.co.nz/#!VYdChDTb!z22fJmx_rFoYg8sQecRwh9FEVWKP063PGN4XdeM22O8

As you can see the virus total matches the one in the OP here: https://bitcointalksearch.org/topic/annx11x13-x11-darkcoinx13-marucoin-miner-based-on-sph-sgminer-623409.  Although it has alot of hits :/ kinda scary:


https://www.virustotal.com/en/file/0ce514a7c264ff8b2ab6dfaf9677e1df9539a398df6eeed46f466a2131ac6825/analysis/
(first link is original copy in OP)
https://www.virustotal.com/en/file/250513aa817824bdc80a5b2d0cfe370eaf4805a29e4cbf64450bb975d25bc91e/analysis/
(second link is file provided in my upload Smiley)

Both same no additional files added, just changed the 2 lines in x11mod.cl and x13mod.cl.. If it had problems they were there before i touched it Smiley. Hope it helps Smiley


I wish there was a way to know if it is truly clean!  That's a lot of false positives!!!!!!!!!!!!
legendary
Activity: 1151
Merit: 1001
are older cards supported? Like x13modold ?
legendary
Activity: 1400
Merit: 1050
I tried just now, It didn't help, still HW.

The problem with HW and driver v14.6(rc2) is solved.
Just open files: x11mod.cl / x13mod.cl for sgminer v4.1.xx (darkcoin-mod.cl / marucoin-mod.cl - for sgminer v5) and replace each line, it at beginning of the file:

  • #define SPH_T32(x) ((x) & SPH_C32(0xFFFFFFFF))
  • #define SPH_ROTL32(x, n) SPH_T32(((x) << (n)) | ((x) >> (32 - (n))))

  • #define SPH_T64(x) ((x) & SPH_C64(0xFFFFFFFFFFFFFFFF))
  • #define SPH_ROTL64(x, n) SPH_T64(((x) << (n)) | ((x) >> (64 - (n))))

to this

  • #define SPH_T32(x) (as_uint(x))
  • #define SPH_ROTL32(x, n) rotate(as_uint(x), as_uint(n))

  • #define SPH_T64(x) (as_ulong(x))
  • #define SPH_ROTL64(x, n) rotate(as_ulong(x), (n) & 0xFFFFFFFFFFFFFFFFUL)

It's work x11/x13 fine for me.

Thanks to butcherette from http://club.dns-shop.ru/forum/search/?action=go_post&id=931006



thanks for the fix i took the liberty of uploading the file with the corrected x11mod.cl and x13mod.cl files:

https://mega.co.nz/#!VYdChDTb!z22fJmx_rFoYg8sQecRwh9FEVWKP063PGN4XdeM22O8

As you can see the virus total matches the one in the OP here: https://bitcointalksearch.org/topic/annx11x13-x11-darkcoinx13-marucoin-miner-based-on-sph-sgminer-623409.  Although it has alot of hits :/ kinda scary:


https://www.virustotal.com/en/file/0ce514a7c264ff8b2ab6dfaf9677e1df9539a398df6eeed46f466a2131ac6825/analysis/
(first link is original copy in OP)
https://www.virustotal.com/en/file/250513aa817824bdc80a5b2d0cfe370eaf4805a29e4cbf64450bb975d25bc91e/analysis/
(second link is file provided in my upload Smiley)

Both same no additional files added, just changed the 2 lines in x11mod.cl and x13mod.cl.. If it had problems they were there before i touched it Smiley. Hope it helps Smiley

this was changed some time ago, but not released yet... regarding the bad score over virus total (and it is the same for all miners), this is the way it is... don't like it, don't download it... (and compile yourself)

sr. member
Activity: 440
Merit: 250
I tried just now, It didn't help, still HW.

The problem with HW and driver v14.6(rc2) is solved.
Just open files: x11mod.cl / x13mod.cl for sgminer v4.1.xx (darkcoin-mod.cl / marucoin-mod.cl - for sgminer v5) and replace each line, it at beginning of the file:

  • #define SPH_T32(x) ((x) & SPH_C32(0xFFFFFFFF))
  • #define SPH_ROTL32(x, n) SPH_T32(((x) << (n)) | ((x) >> (32 - (n))))

  • #define SPH_T64(x) ((x) & SPH_C64(0xFFFFFFFFFFFFFFFF))
  • #define SPH_ROTL64(x, n) SPH_T64(((x) << (n)) | ((x) >> (64 - (n))))

to this

  • #define SPH_T32(x) (as_uint(x))
  • #define SPH_ROTL32(x, n) rotate(as_uint(x), as_uint(n))

  • #define SPH_T64(x) (as_ulong(x))
  • #define SPH_ROTL64(x, n) rotate(as_ulong(x), (n) & 0xFFFFFFFFFFFFFFFFUL)

It's work x11/x13 fine for me.

Thanks to butcherette from http://club.dns-shop.ru/forum/search/?action=go_post&id=931006



thanks for the fix i took the liberty of uploading the file with the corrected x11mod.cl and x13mod.cl files:

https://mega.co.nz/#!VYdChDTb!z22fJmx_rFoYg8sQecRwh9FEVWKP063PGN4XdeM22O8

As you can see the virus total matches the one in the OP here: https://bitcointalksearch.org/topic/annx11x13-x11-darkcoinx13-marucoin-miner-based-on-sph-sgminer-623409.  Although it has alot of hits :/ kinda scary:


https://www.virustotal.com/en/file/0ce514a7c264ff8b2ab6dfaf9677e1df9539a398df6eeed46f466a2131ac6825/analysis/
(first link is original copy in OP)
https://www.virustotal.com/en/file/250513aa817824bdc80a5b2d0cfe370eaf4805a29e4cbf64450bb975d25bc91e/analysis/
(second link is file provided in my upload Smiley)

Both same no additional files added, just changed the 2 lines in x11mod.cl and x13mod.cl.. If it had problems they were there before i touched it Smiley. Hope it helps Smiley
member
Activity: 259
Merit: 10
Help!!!
Anyone have a 3 modified INF for the 14.6 RC2 yet for 5+ GPUs  Huh

http://www.filedropper.com/146modtest
Try this one..
newbie
Activity: 30
Merit: 0
Help!!!
Anyone have a 3 modified INF for the 14.6 RC2 yet for 5+ GPUs  Huh
member
Activity: 179
Merit: 10
Thank you, it's working now.
newbie
Activity: 40
Merit: 0
I tried just now, It didn't help, still HW.

The problem with HW and driver v14.6(rc2) is solved.
Just open files: x11mod.cl / x13mod.cl for sgminer v4.1.xx (darkcoin-mod.cl / marucoin-mod.cl - for sgminer v5) and replace each line, it at beginning of the file:

  • #define SPH_T32(x) ((x) & SPH_C32(0xFFFFFFFF))
  • #define SPH_ROTL32(x, n) SPH_T32(((x) << (n)) | ((x) >> (32 - (n))))

  • #define SPH_T64(x) ((x) & SPH_C64(0xFFFFFFFFFFFFFFFF))
  • #define SPH_ROTL64(x, n) SPH_T64(((x) << (n)) | ((x) >> (64 - (n))))

to this

  • #define SPH_T32(x) (as_uint(x))
  • #define SPH_ROTL32(x, n) rotate(as_uint(x), as_uint(n))

  • #define SPH_T64(x) (as_ulong(x))
  • #define SPH_ROTL64(x, n) rotate(as_ulong(x), (n) & 0xFFFFFFFFFFFFFFFFUL)

It's work x11/x13 fine for me.

Thanks to butcherette from http://club.dns-shop.ru/forum/search/?action=go_post&id=931006

member
Activity: 179
Merit: 10
I tried just now, It didn't help, still HW.
legendary
Activity: 1400
Merit: 1050
What default settings do you mean?
I didn't change anything, I just copied the batch file from my x11mod sgminer folder to your miner folder and started it.

try without anything left except the intensity
member
Activity: 179
Merit: 10
What default settings do you mean?
I didn't change anything, I just copied the batch file from my x11mod sgminer folder to your miner folder and started it.
legendary
Activity: 1400
Merit: 1050
I tried this miner and Catalyst 14.6 with the same settings like I was using with x11mod miner with Catalyst 14.4 and have a lot of HW (Windows 7, 64bit).
Did anyone has the same?
sgminer.exe -k x11mod -o **** -p **** --intensity 17,17,15,15 --thread-concurrency 8192 --lookup-gap 2 --worksize 256 -g 2
(I have 2*7950 + 2*7870).


Have you tried with default setting ? (also I thought that 14.6 was only for windows 8.1)
member
Activity: 179
Merit: 10
I tried this miner and Catalyst 14.6 with the same settings like I was using with x11mod miner with Catalyst 14.4 and have a lot of HW (Windows 7, 64bit).
Did anyone has the same?
sgminer.exe -k x11mod -o **** -p **** --intensity 17,17,15,15 --thread-concurrency 8192 --lookup-gap 2 --worksize 256 -g 2
(I have 2*7950 + 2*7870).

Pages:
Jump to: