Pages:
Author

Topic: Wolf's XMR GPU Miner - page 19. (Read 117592 times)

hero member
Activity: 687
Merit: 502
September 08, 2016, 01:38:27 PM
#46
Hashrate on the 480 8Gb ?
newbie
Activity: 6
Merit: 0
September 08, 2016, 01:18:28 PM
#45
How can I generate the exe to test it in windows?

You need "Internet explorer" compiler  Cheesy
https://github.com/wolf9466/wolf-xmr-miner/releases/
sr. member
Activity: 588
Merit: 251
September 08, 2016, 12:30:33 PM
#44
I tried to compile and could never get it to work. can anyone help?
gcc -pthread -O0 -ggdb3 crypto/aesb.o crypto/aesb-x86-impl.o crypto/c_blake256.o crypto/c_groestl.o crypto/c_keccak.o crypto/c_jh.o crypto/c_skein.o crypto/oaes_lib.o cryptonight.o log.o net.o minerutils.o gpu.o main.o -ljansson -lOpenCL -ldl -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -o miner

There's no errors from gcc, just warnings.  What happens when you run miner?
newbie
Activity: 52
Merit: 0
September 08, 2016, 11:52:36 AM
#43
In Debian stretch it compiles without major issues, saddly my rig is running on windows so I can't test the latest version Sad

How can I generate the exe to test it in windows?

Thanks in advance!
full member
Activity: 195
Merit: 100
September 08, 2016, 08:19:30 AM
#42
I tried to compile and could never get it to work. can anyone help?

gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 crypto/aesb.c -o crypto/aesb.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 crypto/aesb-x86-impl.c -o crypto/aesb-x86-impl.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 crypto/c_blake256.c -o crypto/c_blake256.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 crypto/c_groestl.c -o crypto/c_groestl.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 crypto/c_keccak.c -o crypto/c_keccak.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 crypto/c_jh.c -o crypto/c_jh.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 crypto/c_skein.c -o crypto/c_skein.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 crypto/oaes_lib.c -o crypto/oaes_lib.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 -maes cryptonight.c -o cryptonight.o
cryptonight.c: In function ‘cryptonight_hash_aesni’:
cryptonight.c:381:18: warning: initialization from incompatible pointer type [-Wincompatible-pointer-types]
  uint64_t *dst = &ctx->long_state[c[0] & 0x1FFFF0];
                  ^
cryptonight.c:424:10: warning: passing argument 1 of ‘keccakf’ from incompatible pointer type [-Wincompatible-pointer-types]
  keccakf(&ctx->state.hs, 24);
          ^
In file included from cryptonight.c:11:0:
crypto/c_keccak.h:22:6: note: expected ‘uint64_t * {aka long unsigned int *}’ but argument is of type ‘union hash_state *’
 void keccakf(uint64_t st[25], int norounds);
      ^
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 log.c -o log.o
log.c: In function ‘Log’:
log.c:25:10: warning: format not a string literal and no format arguments [-Wformat-security]
   printf(timebuf);
          ^
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 net.c -o net.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 minerutils.c -o minerutils.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 gpu.c -o gpu.o
gcc -I/opt/AMDAPPSDK-2.9-1/include -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -pthread -c -std=c11 main.c -o main.o
main.c: In function ‘SetupXMRTest’:
main.c:698:24: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘size_t {aka long unsigned int}’ [-Wformat=]
  snprintf(Options, 31, "-I. -DWORKSIZE=%d", LocalThreads);
                        ^
main.c:698:24: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘size_t {aka long unsigned int}’ [-Wformat=]
main.c: In function ‘MinerThreadProc’:
main.c:1327:8: warning: assignment discards ‘volatile’ qualifier from pointer target type [-Wdiscarded-qualifiers]
  MyJob = CurrentJob;
        ^
main.c:1335:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘size_t {aka long unsigned int}’ [-Wformat=]
   sprintf(ThrID, "Thread %d, GPU ID %d, GPU Type: %s",
                  ^
main.c:1356:10: warning: assignment discards ‘volatile’ qualifier from pointer target type [-Wdiscarded-qualifiers]
    MyJob = CurrentJob;
          ^
gcc -pthread -O0 -ggdb3 crypto/aesb.o crypto/aesb-x86-impl.o crypto/c_blake256.o crypto/c_groestl.o crypto/c_keccak.o crypto/c_jh.o crypto/c_skein.o crypto/oaes_lib.o cryptonight.o log.o net.o minerutils.o gpu.o main.o -ljansson -lOpenCL -ldl -L/opt/AMDAPPSDK-2.9-1/lib/x86_64/ -o miner
newbie
Activity: 6
Merit: 0
September 08, 2016, 07:08:28 AM
#41
http://s017.radikal.ru/i436/1609/4a/98d17a663768t.jpg


Code:
{

 "Algorithms":
[{
"name": "CryptoNight",
"devices":[{
"index": 0,
                                "rawintensity": 1024,
"worksize": 8
         },
 {
"index": 1,
                                "rawintensity": 1024,
"worksize": 8
         },
 {
"index": 2,
                                "rawintensity": 1024,
"worksize": 8
         },
 {
"index": 3,
                                "rawintensity": 1024,
"worksize": 8
         }
],

"pools":[{
"url": "stratum+tcp://192.168.3.2:8080",
"user": "103",
"pass": "1"
}]
}]
}
sr. member
Activity: 642
Merit: 292
September 07, 2016, 06:50:06 PM
#40
"Error -1 when calling clGetDeviceIDs for number of devices."
Using 3 graphic cards. Whats wrong at my config file???

Code:
{
"Algorithms":
[
{
"name": "CryptoNight",
"devices":
[
{
"index": 0,
"corefreq": 1050,
"memfreq": 1250,
"fanspeed": 60,
"powertune": 20,
"threads": 1,
"rawintensity": 1024,
"worksize": 16
},
        {
"index": 1,
"corefreq": 1098,
"memfreq": 500,
"fanspeed": 60,
"powertune": 20,
"threads": 1,
"rawintensity": 1024,
"worksize": 16
},
        {
"index": 2,
"corefreq": 1098,
"memfreq": 500,
"fanspeed": 60,
"powertune": 20,
"threads": 1,
"rawintensity": 1024,
"worksize": 16
}
],
"pools":
[
{
"url": "stratum+tcp://xmr-eu.dwarfpool.com:8100",
"user": "XMRadress.TransactionID",
"pass": "x"
}
]
}
]
}
sr. member
Activity: 588
Merit: 251
September 07, 2016, 04:11:01 PM
#39
Hi I'm a beginner at mining .... would like to start mining XMR I have R9380 and r7370 GPUs
using Ubuntu 14.  Is there a setup guide to get me started..

Thanks,

Apolo

http://nerdralph.blogspot.ca/2016/09/monero-mining-on-linux.html
member
Activity: 81
Merit: 1002
It was only the wind.
September 06, 2016, 08:47:38 PM
#38
I can fix the low diff share error on AMDGPU-PRO drivers, just need a little time.
newbie
Activity: 21
Merit: 0
September 07, 2016, 03:58:54 PM
#38
Hi I'm a beginner at mining .... would like to start mining XMR I have R9380 and r7370 GPUs
using Ubuntu 14.  Is there a setup guide to get me started..

Thanks,

Apolo
full member
Activity: 171
Merit: 100
September 07, 2016, 01:26:39 PM
#37
Can someone post his conf file while mining in Dwarf? There is some authentication issue and is not accepting the format of -u like "exchange-wallet.payment-id.worker" like it's suggested in Dwarf.


Code:
			"pools":
[
{
"url": "stratum+tcp://xmr-eu.dwarfpool.com:9500",
"user": "exchange-wallet.payment-id",
"pass": "x"
}
]


or with worker:
Code:
"user": "exchange-wallet.payment-id.worker",
newbie
Activity: 6
Merit: 0
September 07, 2016, 10:49:56 AM
#36
Can someone post his conf file while mining in Dwarf? There is some authentication issue and is not accepting the format of -u like "exchange-wallet.payment-id.worker" like it's suggested in Dwarf.
Code:
"pools":[{
"url": "stratum+tcp://192.168.3.2:8080",
"user": "103",
"pass": "1"

? Grin Maybe proxy https://bitcointalksearch.org/topic/xmr-monero-stratum-proxy-open-source-735738 will help. It seems so to me. I can not check. Windows release does not work for me.
sr. member
Activity: 588
Merit: 251
September 07, 2016, 09:32:15 AM
#35
I did a build with gcc6, -O3 -flt0.
https://drive.google.com/file/d/0BwLnDyLLT3Wka2Z4RW5lWUJIaFk/view

Works well for me with R9 380 and R7 370 (fglrx driver).
full member
Activity: 171
Merit: 100
September 07, 2016, 05:29:18 AM
#34

Code:
[16:06:02] Thread 1, GPU ID 1, GPU Type: Hawaii: 714.46H/s
[16:06:02] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.60H/s

this is with ubuntu's fglrx driver.

with new amd's pro driver i also have low-diff share error

thank you, i got it to work, was a compilation problem:

Code:
[11:28:15] Thread 0, GPU ID 0, GPU Type: Hawaii: 740.42H/s
[11:28:16] Thread 1, GPU ID 1, GPU Type: Hawaii: 695.44H/s
[11:28:17] Thread 0, GPU ID 0, GPU Type: Hawaii: 740.43H/s
[11:28:17] Share accepted: 74/74 (100.00%)
[11:28:17] Total Hashrate: 1486.46H/s
legendary
Activity: 3500
Merit: 2792
Escrow Service
September 06, 2016, 05:51:27 PM
#33
at the moment i use the claymore miner, but i will use the wolf miner.

i have the speed from 3,8 kh/s

09/06/16-20:45:59 - New job received from mine.moneropool.com:3333
Speed: 3859 h/s, TotalHashes: 5543K, DevHashes: 137K Mining time: 00:24

how can i configure the wolf windows GPU miner and what are the best settings for a AMD 480'er system with 6 cards




BestRegards
Willi
member
Activity: 78
Merit: 10
September 05, 2016, 01:05:03 PM
#32
I am waiting for Windows version, and have to test or please tell me your hashrate and fees on:
370/280x/380x
Regards Wink



i too
hero member
Activity: 1246
Merit: 708
September 05, 2016, 09:29:04 AM
#31
I am waiting for Windows version, and have to test or please tell me your hashrate and fees on:
370/280x/380x
Regards Wink
hero member
Activity: 672
Merit: 500
September 05, 2016, 09:08:08 AM
#30
Is anyone mining with linux?
I tried ubuntu 14.04, 16.04 with both gpupro and old driver.

Videocards testet: 390, 470,480.
Pools tested: dwarfpool

Error in all cases: Lowdifficultyshare
Same Problem with Claymore miner (9.1).

If you mine successfully with linux, please give details!

Code:
[16:05:41] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.64H/s
[16:05:41] Share accepted: 2629/2629 (100.00%)
[16:05:41] Total Hashrate: 2832.06H/s

[16:05:41] Thread 3, GPU ID 3, GPU Type: Hawaii: 714.15H/s
[16:05:43] Thread 1, GPU ID 1, GPU Type: Hawaii: 752.07H/s
[16:05:43] Thread 0, GPU ID 0, GPU Type: Hawaii: 738.39H/s
[16:05:43] Thread 2, GPU ID 2, GPU Type: Hawaii: 656.67H/s
[16:05:43] Thread 3, GPU ID 3, GPU Type: Hawaii: 701.15H/s
[16:05:45] Thread 1, GPU ID 1, GPU Type: Hawaii: 739.33H/s
[16:05:45] Thread 0, GPU ID 0, GPU Type: Hawaii: 714.50H/s
[16:05:45] Thread 3, GPU ID 3, GPU Type: Hawaii: 690.03H/s
[16:05:46] Thread 2, GPU ID 2, GPU Type: Hawaii: 656.94H/s
[16:05:46] Thread 1, GPU ID 1, GPU Type: Hawaii: 729.70H/s
[16:05:47] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.90H/s
[16:05:47] Thread 3, GPU ID 3, GPU Type: Hawaii: 702.58H/s
[16:05:48] Thread 1, GPU ID 1, GPU Type: Hawaii: 754.54H/s
[16:05:49] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.88H/s
[16:05:49] Thread 3, GPU ID 3, GPU Type: Hawaii: 689.30H/s
[16:05:49] Thread 2, GPU ID 2, GPU Type: Hawaii: 656.76H/s
[16:05:50] Thread 1, GPU ID 1, GPU Type: Hawaii: 754.48H/s
[16:05:51] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.35H/s
[16:05:51] Thread 3, GPU ID 3, GPU Type: Hawaii: 713.95H/s
[16:05:52] Thread 1, GPU ID 1, GPU Type: Hawaii: 754.37H/s
[16:05:52] Thread 2, GPU ID 2, GPU Type: Hawaii: 657.09H/s
[16:05:52] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.35H/s
[16:05:53] Thread 3, GPU ID 3, GPU Type: Hawaii: 701.68H/s
[16:05:54] Thread 1, GPU ID 1, GPU Type: Hawaii: 738.86H/s
[16:05:54] New job at diff 200008
[16:05:54] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.81H/s
[16:05:55] Thread 3, GPU ID 3, GPU Type: Hawaii: 690.16H/s
[16:05:55] Thread 2, GPU ID 2, GPU Type: Hawaii: 656.91H/s
[16:05:56] Thread 1, GPU ID 1, GPU Type: Hawaii: 714.45H/s
[16:05:56] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.74H/s
[16:05:57] Thread 3, GPU ID 3, GPU Type: Hawaii: 714.01H/s
[16:05:58] Thread 1, GPU ID 1, GPU Type: Hawaii: 730.33H/s
[16:05:58] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.41H/s
[16:05:58] Thread 2, GPU ID 2, GPU Type: Hawaii: 656.61H/s
[16:05:59] Thread 3, GPU ID 3, GPU Type: Hawaii: 702.10H/s
[16:06:00] Thread 1, GPU ID 1, GPU Type: Hawaii: 739.33H/s
[16:06:00] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.66H/s
[16:06:01] Thread 3, GPU ID 3, GPU Type: Hawaii: 689.72H/s
[16:06:01] Thread 2, GPU ID 2, GPU Type: Hawaii: 656.81H/s
[16:06:02] Thread 1, GPU ID 1, GPU Type: Hawaii: 714.46H/s
[16:06:02] Thread 0, GPU ID 0, GPU Type: Hawaii: 754.60H/s

this is with ubuntu's fglrx driver.

with new amd's pro driver i also have low-diff share error
newbie
Activity: 5
Merit: 0
September 05, 2016, 08:57:21 AM
#29
I got it working but i'm getting pretty much all rejected shares.  I re-flashed to my stock bios in case i was pushing it too hard but i get the same result:

Code:
[08:37:00] Thread 0, GPU ID 0, GPU Type: Ellesmere: 474.51H/s
[08:37:02] Share rejected (Low difficulty share): 0/1 (0.00%)
[08:37:02] Total Hashrate: 474.51H/s

[08:37:03] Thread 0, GPU ID 0, GPU Type: Ellesmere: 471.68H/s
[08:37:05] Thread 0, GPU ID 0, GPU Type: Ellesmere: 474.68H/s
[08:37:07] Share rejected (Low difficulty share): 0/2 (0.00%)
[08:37:07] Total Hashrate: 474.68H/s

[08:37:08] Thread 0, GPU ID 0, GPU Type: Ellesmere: 474.55H/s
[08:37:11] Thread 0, GPU ID 0, GPU Type: Ellesmere: 477.07H/s
[08:37:13] Thread 0, GPU ID 0, GPU Type: Ellesmere: 471.02H/s
[08:37:16] Thread 0, GPU ID 0, GPU Type: Ellesmere: 474.68H/s
[08:37:18] Share rejected (Low difficulty share): 0/3 (0.00%)
[08:37:18] Total Hashrate: 474.68H/s

[08:37:19] Thread 0, GPU ID 0, GPU Type: Ellesmere: 473.54H/s
[08:37:22] Thread 0, GPU ID 0, GPU Type: Ellesmere: 474.06H/s
[08:37:24] Thread 0, GPU ID 0, GPU Type: Ellesmere: 473.49H/s
[08:37:27] Thread 0, GPU ID 0, GPU Type: Ellesmere: 474.14H/s
[08:37:30] Thread 0, GPU ID 0, GPU Type: Ellesmere: 473.73H/s
[08:37:31] Share rejected (Low difficulty share): 1/5 (20.00%)
[08:37:31] Total Hashrate: 473.73H/s

[08:37:31] Share rejected (Low difficulty share): 0/5 (0.00%)
[08:37:31] Total Hashrate: 473.73H/s

[08:37:32] Thread 0, GPU ID 0, GPU Type: Ellesmere: 472.88H/s
[08:37:35] Thread 0, GPU ID 0, GPU Type: Ellesmere: 473.35H/s
[08:37:38] Thread 0, GPU ID 0, GPU Type: Ellesmere: 472.54H/s
[08:37:38] Share rejected (Low difficulty share): 0/6 (0.00%)
[08:37:38] Total Hashrate: 472.54H/s

Any ideas why i getting rejected?  thanks
newbie
Activity: 45
Merit: 0
September 05, 2016, 02:19:17 AM
#28
You have, this a miner for Windows?
Pages:
Jump to: