Pages:
Author

Topic: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 - page 77. (Read 209286 times)

sr. member
Activity: 2106
Merit: 282
👉bit.ly/3QXp3oh | 🔥 Ultimate Launc
I think the NVIDIA private farmers already got a 120Sol/s miner / card for the zcash harvesting.
But with 48sols/s on GTX1070 this miner became fastest public.
sp_
legendary
Activity: 2926
Merit: 1087
Team Black developer
I think the NVIDIA private farmers already got a 120Sol/s miner / card for the zcash harvesting.
legendary
Activity: 1151
Merit: 1001
No idea if it will work (or isn't already implemented)
Quote
Quote from: pallas on November 06, 2016, 04:55:27 PM
6 iterations per second CAN lead to 140 sol/s.
Just run multiple nonces per iteration.
It all depends on how you define an "iteration".

PS:
Would be great if someone makes 1 complete update with recent advancements

Am I right to assume that currently the best platform look to be Ubuntu 16 + AMD 16.40 drivers? Just because 16.40 don't work on Ubuntu 14?

Had anyone tried the usage of opencl files from 16.40 on Ub14?
Or, the more tricky way - get compiled binaries from Ub16+16.40 and run on Ub14?
newbie
Activity: 6
Merit: 0
V3 was running fine. After compile V4 (and some other tests) i get this:

edwin@edwin-ubuntu:~/silentarmy$ ./silentarmy
Connecting to us1-zcash.flypool.org:3333
Solver 0.0: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Solver 0.1: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Stratum server sent us the first job
Mining on 1 device
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.

Can anyone help?


what version of Ubuntu ?  and how long ago did you install that version of v4 of v4 it was last updated 5 hour ago according to https://github.com/mbevand/silentarmy/tree/master


Latest commit 5228f1d 5 hours ago @mbevand mbevand *properly* fix 32-bit compilation warnings

or you can get the tag version four which was updated Latest commit 1dc5663 18 hours ago @mbevand mbevand release v4

I am running Ubuntu 16.04 - 64b
Just now i tried installing the first V4 release (1dc5663 18 hours ago)
Also tried a fresh git clone   https://github.com/mbevand/silentarmy.git

but the result is the same (see above)

I think the error
unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
is caused by something else. Has anyone seen this before?

Edit Makefile
change line

LIBOPENCL = "/usr/local/cuda-8.0/lib64"

then replace input.cl with this one http://coinsforall.io/distr/input.cl


Many thanks! This solved my problem
full member
Activity: 168
Merit: 104

can you please upload your edited param.h file so I can look at it?
how do i OC my memory in ubuntu?
when I run LD_PRELOAD="./libtime.so" ./silentarmy --instances=4 --use=0,1,2,3,4,5 i get an error... i just put LDPRELOAD-="./libtime.so" and put it before the ./silentarmy commend in termainL?  get a bit confused here Tongue

but want to explain this to people so they can use this at its top potential

Thanks~!

param.h
....
Did you compile my libtime library ?

https://bitcointalksearch.org/topic/m.16818120

thanks ill go over this all and try this out, thanks again
full member
Activity: 243
Merit: 105

can you please upload your edited param.h file so I can look at it?
how do i OC my memory in ubuntu?
when I run LD_PRELOAD="./libtime.so" ./silentarmy --instances=4 --use=0,1,2,3,4,5 i get an error... i just put LDPRELOAD-="./libtime.so" and put it before the ./silentarmy commend in termainL?  get a bit confused here Tongue

but want to explain this to people so they can use this at its top potential

Thanks~!

param.h

Code:
#define PARAM_N				200
#define PARAM_K 9
#define PREFIX                          (PARAM_N / (PARAM_K + 1))
#define NR_INPUTS                       (1 << PREFIX)
// Approximate log base 2 of number of elements in hash tables
#define APX_NR_ELMS_LOG                 (PREFIX + 1)
// Number of rows and slots is affected by this. 20 offers the best performance
// but occasionally misses ~1% of solutions.
#define NR_ROWS_LOG                     19

// Setting this to 1 might make SILENTARMY faster, see TROUBLESHOOTING.md
#define OPTIM_SIMPLIFY_ROUND 0

// Make hash tables OVERHEAD times larger than necessary to store the average
// number of elements per row. The ideal value is as small as possible to
// reduce memory usage, but not too small or else elements are dropped from the
// hash tables.
//
// The actual number of elements per row is closer to the theoretical average
// (less variance) when NR_ROWS_LOG is small. So accordingly OVERHEAD can be
// smaller.
//
// Even (as opposed to odd) values of OVERHEAD sometimes significantly decrease
// performance as they cause VRAM channel conflicts.
#if NR_ROWS_LOG == 16
#define OVERHEAD                        3
#elif NR_ROWS_LOG == 18
#define OVERHEAD                        3
#elif NR_ROWS_LOG == 19
#define OVERHEAD                        8
#elif NR_ROWS_LOG == 20 && OPTIM_SIMPLIFY_ROUND
#define OVERHEAD                        6
#elif NR_ROWS_LOG == 20
#define OVERHEAD                        9
#endif

#define NR_ROWS                         (1 << NR_ROWS_LOG)
#define NR_SLOTS            ((1 << (APX_NR_ELMS_LOG - NR_ROWS_LOG)) * OVERHEAD)
// Length of 1 element (slot) in bytes
#define SLOT_LEN                        32
// Total size of hash table
#define HT_SIZE (NR_ROWS * NR_SLOTS * SLOT_LEN)
// Length of Zcash block header, nonce (part of header)
#define ZCASH_BLOCK_HEADER_LEN 140
// Offset of nTime in header
#define ZCASH_BLOCK_OFFSET_NTIME        (4 + 3 * 32)
// Length of nonce
#define ZCASH_NONCE_LEN 32
// Length of encoded representation of solution size
#define ZCASH_SOLSIZE_LEN 3
// Solution size (1344 = 0x540) represented as a compact integer, in hex
#define ZCASH_SOLSIZE_HEX               "fd4005"
// Length of encoded solution (512 * 21 bits / 8 = 1344 bytes)
#define ZCASH_SOL_LEN                   ((1 << PARAM_K) * (PREFIX + 1) / 8)
// Last N_ZERO_BYTES of nonce must be zero due to my BLAKE2B optimization
#define N_ZERO_BYTES 12
// Number of bytes Zcash needs out of Blake
#define ZCASH_HASH_LEN                  50
// Number of wavefronts per SIMD for the Blake kernel.
// Blake is ALU-bound (beside the atomic counter being incremented) so we need
// at least 2 wavefronts per SIMD to hide the 2-clock latency of integer
// instructions. 10 is the max supported by the hw.
#define BLAKE_WPS                10
// Maximum number of solutions reported by kernel to host
#define MAX_SOLS 500
// Length of SHA256 target
#define SHA256_TARGET_LEN               (256 / 8)

// Optional features
#undef ENABLE_DEBUG

/*
** Return the offset of Xi in bytes from the beginning of the slot.
*/
#define xi_offset_for_round(round) (8 + ((round) / 2) * 4)

// An (uncompressed) solution stores (1 << PARAM_K) 32-bit values
#define SOL_SIZE ((1 << PARAM_K) * 4)
typedef struct sols_s
{
    uint nr;
    uint likely_invalids;
    uchar valid[MAX_SOLS];
    uint values[MAX_SOLS][(1 << PARAM_K)];
} sols_t;

You can overclock with nvidia-setting, Xorg must be running. https://forum.ethereum.org/discussion/7780/gtx1070-linux-installation-and-mining-clue-goodbye-amd-welcome-nvidia-for-miners

Did you compile my libtime library ?

https://bitcointalksearch.org/topic/m.16818120
full member
Activity: 168
Merit: 104
6 x 1070

Code:
Total 281.9 sol/s [dev0 44.4, dev1 50.3, dev2 48.8, dev3 45.2, dev4 46.4, dev5 44.2] 92 shares
Total 281.7 sol/s [dev0 43.4, dev1 49.4, dev2 48.2, dev3 47.0, dev4 47.8, dev5 43.2] 92 shares
Total 282.1 sol/s [dev0 43.4, dev1 51.4, dev2 47.0, dev3 45.2, dev4 46.6, dev5 43.1] 92 shares
Total 282.8 sol/s [dev0 42.8, dev1 52.5, dev2 47.6, dev3 45.8, dev4 47.4, dev5 44.2] 92 shares
Total 281.7 sol/s [dev0 43.0, dev1 49.6, dev2 47.8, dev3 45.0, dev4 47.8, dev5 44.5] 93 shares
Total 282.1 sol/s [dev0 43.6, dev1 50.4, dev2 46.8, dev3 45.7, dev4 49.3, dev5 42.3] 93 shares
Total 281.0 sol/s [dev0 44.2, dev1 48.6, dev2 47.0, dev3 46.1, dev4 48.5, dev5 44.4] 94 shares
Total 282.7 sol/s [dev0 43.8, dev1 48.6, dev2 48.7, dev3 48.4, dev4 47.7, dev5 45.5] 95 shares
Total 283.0 sol/s [dev0 44.5, dev1 49.1, dev2 46.5, dev3 47.7, dev4 49.8, dev5 47.1] 95 shares
Total 282.3 sol/s [dev0 44.3, dev1 48.1, dev2 47.0, dev3 47.4, dev4 49.7, dev5 50.0] 96 shares
Total 281.3 sol/s [dev0 43.3, dev1 47.6, dev2 45.4, dev3 48.2, dev4 50.4, dev5 50.0] 96 shares
Total 283.6 sol/s [dev0 43.6, dev1 51.2, dev2 46.9, dev3 47.4, dev4 50.8, dev5 50.4] 97 shares
Total 284.4 sol/s [dev0 43.5, dev1 48.3, dev2 47.4, dev3 48.2, dev4 50.1, dev5 50.3] 97 shares
Total 284.2 sol/s [dev0 42.8, dev1 47.0, dev2 47.4, dev3 50.0, dev4 48.1, dev5 49.4] 98 shares
Total 283.5 sol/s [dev0 42.4, dev1 50.2, dev2 46.8, dev3 48.8, dev4 49.8, dev5 48.6] 98 shares
Total 283.6 sol/s [dev0 43.4, dev1 49.8, dev2 49.3, dev3 47.4, dev4 47.8, dev5 51.5] 99 shares
Total 283.4 sol/s [dev0 41.3, dev1 50.4, dev2 49.6, dev3 48.5, dev4 48.7, dev5 50.9] 100 shares
Total 282.2 sol/s [dev0 39.5, dev1 50.9, dev2 46.1, dev3 48.0, dev4 48.7, dev5 52.7] 100 shares


1. eXtremal's input.cl
2. my workaround for cpu load https://bitcointalksearch.org/topic/m.16818120
3. edit param.h :

Code:
#define NR_ROWS_LOG                     19
Code:
#elif NR_ROWS_LOG == 19
#define OVERHEAD                        8

Code:
#define MAX_SOLS                        500

4.Overclock memory

5. run with
Code:
LD_PRELOAD="./libtime.so" ./silentarmy --instances=4 --use=0,1,2,3,4,5

can you please upload your edited param.h file so I can look at it?
how do i OC my memory in ubuntu?
when I run LD_PRELOAD="./libtime.so" ./silentarmy --instances=4 --use=0,1,2,3,4,5 i get an error... i just put LDPRELOAD-="./libtime.so" and put it before the ./silentarmy commend in termainL?  get a bit confused here Tongue

but want to explain this to people so they can use this at its top potential

Thanks~!
legendary
Activity: 1241
Merit: 1005
..like bright metal on a sullen ground.
Linux 14.04, 3x290s.  Miner runs great for 10 minutes and then a random GPU will crash. And then eventually a 2nd one will crash. Are there any settings that I could change that might fix this?  Undecided
full member
Activity: 243
Merit: 105
6 x 1070

Code:
Total 281.9 sol/s [dev0 44.4, dev1 50.3, dev2 48.8, dev3 45.2, dev4 46.4, dev5 44.2] 92 shares
Total 281.7 sol/s [dev0 43.4, dev1 49.4, dev2 48.2, dev3 47.0, dev4 47.8, dev5 43.2] 92 shares
Total 282.1 sol/s [dev0 43.4, dev1 51.4, dev2 47.0, dev3 45.2, dev4 46.6, dev5 43.1] 92 shares
Total 282.8 sol/s [dev0 42.8, dev1 52.5, dev2 47.6, dev3 45.8, dev4 47.4, dev5 44.2] 92 shares
Total 281.7 sol/s [dev0 43.0, dev1 49.6, dev2 47.8, dev3 45.0, dev4 47.8, dev5 44.5] 93 shares
Total 282.1 sol/s [dev0 43.6, dev1 50.4, dev2 46.8, dev3 45.7, dev4 49.3, dev5 42.3] 93 shares
Total 281.0 sol/s [dev0 44.2, dev1 48.6, dev2 47.0, dev3 46.1, dev4 48.5, dev5 44.4] 94 shares
Total 282.7 sol/s [dev0 43.8, dev1 48.6, dev2 48.7, dev3 48.4, dev4 47.7, dev5 45.5] 95 shares
Total 283.0 sol/s [dev0 44.5, dev1 49.1, dev2 46.5, dev3 47.7, dev4 49.8, dev5 47.1] 95 shares
Total 282.3 sol/s [dev0 44.3, dev1 48.1, dev2 47.0, dev3 47.4, dev4 49.7, dev5 50.0] 96 shares
Total 281.3 sol/s [dev0 43.3, dev1 47.6, dev2 45.4, dev3 48.2, dev4 50.4, dev5 50.0] 96 shares
Total 283.6 sol/s [dev0 43.6, dev1 51.2, dev2 46.9, dev3 47.4, dev4 50.8, dev5 50.4] 97 shares
Total 284.4 sol/s [dev0 43.5, dev1 48.3, dev2 47.4, dev3 48.2, dev4 50.1, dev5 50.3] 97 shares
Total 284.2 sol/s [dev0 42.8, dev1 47.0, dev2 47.4, dev3 50.0, dev4 48.1, dev5 49.4] 98 shares
Total 283.5 sol/s [dev0 42.4, dev1 50.2, dev2 46.8, dev3 48.8, dev4 49.8, dev5 48.6] 98 shares
Total 283.6 sol/s [dev0 43.4, dev1 49.8, dev2 49.3, dev3 47.4, dev4 47.8, dev5 51.5] 99 shares
Total 283.4 sol/s [dev0 41.3, dev1 50.4, dev2 49.6, dev3 48.5, dev4 48.7, dev5 50.9] 100 shares
Total 282.2 sol/s [dev0 39.5, dev1 50.9, dev2 46.1, dev3 48.0, dev4 48.7, dev5 52.7] 100 shares


1. eXtremal's input.cl
2. my workaround for cpu load https://bitcointalksearch.org/topic/m.16818120
3. edit param.h :

Code:
#define NR_ROWS_LOG                     19
Code:
#elif NR_ROWS_LOG == 19
#define OVERHEAD                        8

Code:
#define MAX_SOLS                        500

4.Overclock memory

5. run with
Code:
LD_PRELOAD="./libtime.so" ./silentarmy --instances=4 --use=0,1,2,3,4,5
full member
Activity: 243
Merit: 105
V3 was running fine. After compile V4 (and some other tests) i get this:

edwin@edwin-ubuntu:~/silentarmy$ ./silentarmy
Connecting to us1-zcash.flypool.org:3333
Solver 0.0: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Solver 0.1: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Stratum server sent us the first job
Mining on 1 device
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.

Can anyone help?


what version of Ubuntu ?  and how long ago did you install that version of v4 of v4 it was last updated 5 hour ago according to https://github.com/mbevand/silentarmy/tree/master


Latest commit 5228f1d 5 hours ago @mbevand mbevand *properly* fix 32-bit compilation warnings

or you can get the tag version four which was updated Latest commit 1dc5663 18 hours ago @mbevand mbevand release v4

I am running Ubuntu 16.04 - 64b
Just now i tried installing the first V4 release (1dc5663 18 hours ago)
Also tried a fresh git clone   https://github.com/mbevand/silentarmy.git

but the result is the same (see above)

I think the error
unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
is caused by something else. Has anyone seen this before?

Edit Makefile
change line

LIBOPENCL = "/usr/local/cuda-8.0/lib64"

then replace input.cl with this one http://coinsforall.io/distr/input.cl

newbie
Activity: 6
Merit: 0
V3 was running fine. After compile V4 (and some other tests) i get this:

edwin@edwin-ubuntu:~/silentarmy$ ./silentarmy
Connecting to us1-zcash.flypool.org:3333
Solver 0.0: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Solver 0.1: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Stratum server sent us the first job
Mining on 1 device
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.

Can anyone help?


what version of Ubuntu ?  and how long ago did you install that version of v4 of v4 it was last updated 5 hour ago according to https://github.com/mbevand/silentarmy/tree/master


Latest commit 5228f1d 5 hours ago @mbevand mbevand *properly* fix 32-bit compilation warnings

or you can get the tag version four which was updated Latest commit 1dc5663 18 hours ago @mbevand mbevand release v4

I am running Ubuntu 16.04 - 64b
Just now i tried installing the first V4 release (1dc5663 18 hours ago)
Also tried a fresh git clone   https://github.com/mbevand/silentarmy.git

but the result is the same (see above)

I think the error
unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
is caused by something else. Has anyone seen this before?
newbie
Activity: 6
Merit: 0
V3 was running fine. After compile V4 (and some other tests) i get this:

edwin@edwin-ubuntu:~/silentarmy$ ./silentarmy
Connecting to us1-zcash.flypool.org:3333
Solver 0.0: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Solver 0.1: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Stratum server sent us the first job
Mining on 1 device
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.

Can anyone help?


what version of Ubuntu ?  and how long ago did you install that version of v4 of v4 it was last updated 5 hour ago according to https://github.com/mbevand/silentarmy/tree/master

running Ubuntu 16.04 - 64bit
about 2 hours ago i did a git clone   https://github.com/mbevand/silentarmy.git


Latest commit 5228f1d 5 hours ago @mbevand mbevand *properly* fix 32-bit compilation warnings

or you can get the tag version four which was updated Latest commit 1dc5663 18 hours ago @mbevand mbevand release v4
full member
Activity: 168
Merit: 104
https://github.com/mbevand/silentarmy/pull/43


Windows is for sure being worked on Smiley .

thats great, just chiming in and wondering what i need to read to:
nerdralph's optimization for potential +25% speedup (OPTIM_SIMPLIFY_ROUND) ??

thanks guys
legendary
Activity: 1274
Merit: 1000
legendary
Activity: 1274
Merit: 1000
V3 was running fine. After compile V4 (and some other tests) i get this:

edwin@edwin-ubuntu:~/silentarmy$ ./silentarmy
Connecting to us1-zcash.flypool.org:3333
Solver 0.0: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Solver 0.1: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Stratum server sent us the first job
Mining on 1 device
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.

Can anyone help?


what version of Ubuntu ?  and how long ago did you install that version of v4 of v4 it was last updated 5 hour ago according to https://github.com/mbevand/silentarmy/tree/master


Latest commit 5228f1d 5 hours ago @mbevand mbevand *properly* fix 32-bit compilation warnings

or you can get the tag version four which was updated Latest commit 1dc5663 18 hours ago @mbevand mbevand release v4
newbie
Activity: 6
Merit: 0
V3 was running fine. After compile V4 (and some other tests) i get this:

edwin@edwin-ubuntu:~/silentarmy$ ./silentarmy
Connecting to us1-zcash.flypool.org:3333
Solver 0.0: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Solver 0.1: unexpected banner "/home/edwin/silentarmy/sa-solver: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by /home/edwin/silentarmy/sa-solver)"
Stratum server sent us the first job
Mining on 1 device
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.
pipe closed by peer or os.write(pipe, data) raised exception.

Can anyone help?
legendary
Activity: 1176
Merit: 1015
Ok ,thanks for testing. No breakthrough there.

full member
Activity: 243
Merit: 105
--use 1?

second gpu, I'm testing on rig with 6 card.

If 0 is connected to monitor try 1,2,3,4 or 5 only.

4 instances

running without card0

5 cards
Code:
Total 212.6 sol/s [dev1 41.3, dev2 44.3, dev3 38.4, dev4 46.5, dev5 39.0] 21 shares
Total 213.8 sol/s [dev1 43.3, dev2 44.2, dev3 41.6, dev4 45.0, dev5 38.7] 21 shares
Total 213.9 sol/s [dev1 43.6, dev2 43.7, dev3 41.6, dev4 43.6, dev5 37.2] 22 shares
Total 213.4 sol/s [dev1 45.2, dev2 41.4, dev3 41.5, dev4 41.7, dev5 37.1] 22 shares
Total 213.6 sol/s [dev1 44.3, dev2 42.6, dev3 41.4, dev4 42.7, dev5 37.9] 22 shares
Total 212.6 sol/s [dev1 45.4, dev2 41.6, dev3 41.1, dev4 43.1, dev5 38.8] 22 shares

one card

Code:
Total 44.7 sol/s [dev1 46.8] 1 share
Total 44.4 sol/s [dev1 47.1] 1 share
Total 45.2 sol/s [dev1 48.0] 1 share
Total 44.7 sol/s [dev1 46.8] 1 share
Total 44.9 sol/s [dev1 46.7] 1 share
Total 45.1 sol/s [dev1 47.4] 1 share
Total 45.3 sol/s [dev1 46.7] 1 share


in param.h

#define OPTIM_FOR_FGLRX         0

#define OPTIM_SIMPLIFY_ROUND       0
legendary
Activity: 1176
Merit: 1015
--use 1?

second gpu, I'm testing on rig with 6 card.

If 0 is connected to monitor try 1,2,3,4 or 5 only.
full member
Activity: 243
Merit: 105
Pages:
Jump to: