Bitcoin Forum
September 03, 2024, 10:42:48 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2]
21  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 16, 2018, 06:31:03 PM
only one .bat in the role of the configuration file is not convenient
500 parameters are unnecessary, only parameters from the command line are needed.
Code:
Command line parameters:
  -o <pool>:<port>
  -u <wallet>
  -p <password>
  -a <x>
  --ssl
  --nicehash
  --any
  --variation N
  --retrydelay N
  --autoclose N
  --mport <port>
  --stakjson
  --forever
  --low
  --donate
  --auto
  --archi <archi>
  -t N
  --log <file-path>
all modern miners use a separate config file, can you do the same thing?
22  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 16, 2018, 09:21:09 AM
JCE-Miner
A very good suggestion to make the miner run not only through the command line with parameters, but much easier to run directly .exe. And all startup parameters will be written in the config file.txt, since it was made in xmr-stak via config.txt or as in Xmrig via config.json

Code:
[
    { "low_power_mode" : true, "no_prefetch" : true, "affine_to_cpu" : 0 },
    { "low_power_mode" : true, "no_prefetch" : true, "affine_to_cpu" : 1 },
],
"nicehash_nonce" : false,
"use_tls" : false,
"pool_address" : "pool:3333",
"wallet_address" : "wallet",
"pool_password" : "x",
"httpd_port" : 0,
and so on...

You can also make the miner can be run directly not through .bat , that is, if you run .exe without parameters then they will take them from the configuration file? That's better.
23  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 14, 2018, 06:24:07 AM
I also have a lot of Xeon(R) CPU E5440 @ 2.83GHz (core Harpertown)  overclocked bus 370Mhz = 3145MHz, auto config gives me 135H/s.
as a result, it is used 2+2+2+2 =8MB cache
Code:
For Windows 64-bits
Analyzing Processors topology...
Intel(R) Xeon(R) CPU E5440 @ 2.83GHz
Architecture codename: Harpertown
  SSE2          : Yes
  SSE3          : Yes
  SSE4          : Yes
  AES           : No
  AVX           : No
  AVX2          : No

Auto-configuration, selected CPUs will be highlighted...
Found CPU 0, with:
  L1 Cache:    32 KB
  L2 Cache:  6144 KB, shared with CPU 1
Found CPU 1, with:
  L1 Cache:    32 KB
  L2 Cache:  6144 KB, shared with CPU 0
Found CPU 2, with:
  L1 Cache:    32 KB
  L2 Cache:  6144 KB, shared with CPU 3
Found CPU 3, with:
  L1 Cache:    32 KB
  L2 Cache:  6144 KB, shared with CPU 2

Preparing 4 Mining Threads...

+-- Thread 0 config -----------------------------+
| Run on CPU:             0                      |
| Use cache:              yes                    |
| Multi-hash:             no                     |
| Assembly module:        core2_sse4             |
+------------------------------------------------+

+-- Thread 1 config -----------------------------+
| Run on CPU:             1                      |
| Use cache:              yes                    |
| Multi-hash:             no                     |
| Assembly module:        core2_sse4             |
+------------------------------------------------+

+-- Thread 2 config -----------------------------+
| Run on CPU:             2                      |
| Use cache:              yes                    |
| Multi-hash:             no                     |
| Assembly module:        core2_sse4             |
+------------------------------------------------+

+-- Thread 3 config -----------------------------+
| Run on CPU:             3                      |
| Use cache:              yes                    |
| Multi-hash:             no                     |
| Assembly module:        core2_sse4             |
+------------------------------------------------+

manual adjustment, gives +2 H/s
Code:
"cpu_threads_conf" : 
[
     { "cpu_architecture" : "auto", "affine_to_cpu" : 0, "use_cache" : true },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 1, "use_cache" : true, "multi_hash": 2 },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 2, "use_cache" : true },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 3, "use_cache" : true, "multi_hash": 2 },
]

2+4+2+4 =12Mb -> Getting 137H/s
24  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 14, 2018, 06:10:45 AM
Yes, 8Mb cache Kentsfield (Q6xxx), Yorkfield (Q9x50) 12Mb , Yorkfield-6M (Q8x00, Q9x00) 6Mb.
the auto config on this processor does not work correctly.
Code:
For Windows 64-bits
Analyzing Processors topology...
Intel(R) Core(TM)2 Quad CPU Q9400 @ 2.66GHz
Architecture codename: Kentsfield
  SSE2          : Yes
  SSE3          : Yes
  SSE4          : Yes
  AES           : No
  AVX           : No
  AVX2          : No

Auto-configuration, selected CPUs will be highlighted...
Found CPU 0, with:
  L1 Cache:    32 KB
  L2 Cache:  3072 KB, shared with CPU 1
Found CPU 1, with:
  L1 Cache:    32 KB
  L2 Cache:  3072 KB, shared with CPU 0
Found CPU 2, with:
  L1 Cache:    32 KB
  L2 Cache:  3072 KB, shared with CPU 3
Found CPU 3, with:
  L1 Cache:    32 KB
  L2 Cache:  3072 KB, shared with CPU 2

Preparing 4 Mining Threads...

+-- Thread 0 config -----------------------------+
| Run on CPU:             0                      |
| Use cache:              yes                    |
| Multi-hash:             no                     |
| Assembly module:        generic_sse4           |
+------------------------------------------------+

+-- Thread 1 config -----------------------------+
| Run on CPU:             1                      |
| Use cache:              yes                    |
| Multi-hash:             no                     |
| Assembly module:        generic_sse4           |
+------------------------------------------------+

+-- Thread 2 config -----------------------------+
| Run on CPU:             2                      |
| Use cache:              yes                    |
| Multi-hash:             no                     |
| Assembly module:        generic_sse4           |
+------------------------------------------------+

+-- Thread 3 config -----------------------------+
| Run on CPU:             3                      |
| Use cache:              yes                    |
| Multi-hash:             no                     |
| Assembly module:        generic_sse4           |
+------------------------------------------------+

used by the kernel generic_sse4 , with 6M L2 cache uses all 4 cores Use cache: yes . as much as 8Mb of 6 ? Is that supposed to be?
what is the difference generic_sse4 and core2_sse4 ?
large pages of course included

MB Gigabyte GA-EP45-UD3LR 4Gb DDR3-1333

update:
if I turn on one core cache, then the rate drops to 81 H/s
Code:
"cpu_threads_conf" : 
[
     { "cpu_architecture" : "auto", "affine_to_cpu" : 0, "use_cache" : true },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 1, "use_cache" : true },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 2, "use_cache" : true },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 3, "use_cache" : false },
]
25  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 14, 2018, 05:51:12 AM
JCE-Miner
I don't understand how you could get 116 h/s on a 2.66 GHz Core2Quad. I have a Core2Quad Q9400 2.66 GHz, on your miner I get about 100H / s. On what processor model did you test, probably Q9450?
(Win7 x64, MoneroV7)

miner defines architecture as Kentsfield, Core2Quad Q9400 (Yorkfield-6M )
26  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 12, 2018, 08:00:07 PM
Quote
yeah... sure I can swap the two tokens. but cannot do a whole release just for this, will be for next release (should be the linux-ready one, unless i need to add a new feature inbetween)

Well, let it be in the next release, as long as it was.  Wink
27  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 12, 2018, 07:33:20 PM
to json stak was more accurately can swap?
 "version": "jce /cpu/0.27 c" on "version": "jce/0.27 c/cpu" ?
28  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 12, 2018, 05:23:01 PM
Quote
Done, parameter --stakjson

Great , that's all right, that's all right.  Roll Eyes
29  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 11, 2018, 08:41:34 PM
Quote
next things planned:
* json closer (but not same) to stak

It is good even if it looks like json xmr-stak, not necessarily exactly
30  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: May 11, 2018, 09:46:20 AM
Version 0.27b done, entering test phase.
New feature : HTTP Local Server

new parameter: --mport P (P in [1:65535])
default: disabled

simple JSON output, somehow human readable


And it was possible to make json compatible with xmr-stak or xmrig cpu?

Code:
	

{"version":"xmr-stak/2.4.3/26a5d65f/master/win/nvidia-amd-cpu/aeon-cryptonight-monero/20","hashrate":{"threads":[[21.0,22.4,null],[22.7,22.8,null]],"total":[43.7,45.1,null],"highest":46.9},"results":{"diff_current":606,"shares_good":2,"shares_total":2,"avg_time":31.5,"hashes_total":2126,"best":[6258,1362,0,0,0,0,0,0,0,0],"error_log":[]},"connection":{"pool": "xmr.pool.minergate.com:45700","uptime":63,"ping":64,"error_log":[]}}
Code:
{
    "id": "6104bea31afab1dc",
    "worker_id": "Home",
    "version": "2.5.3",
    "kind": "cpu",
    "ua": "XMRig/2.5.3 (Windows NT 6.1; Win64; x64) libuv/1.19.0 gcc/7.3.0",
    "cpu": {
        "brand": "Intel(R) Core(TM)2 Duo CPU     E8500  @ 3.16GHz",
        "aes": false,
        "x64": true,
        "sockets": 1
    },
    "algo": "cryptonight",
    "hugepages": true,
    "donate_level": 5,
    "hashrate": {
        "total": [
            37.34,
            0.0,
            0.0
        ],
        "highest": 0.0,
        "threads": [
            [
                16.95,
                0.0,
                0.0
            ],
            [
                20.38,
                0.0,
                0.0
            ]
        ]
    },
    "results": {
        "diff_current": 1063,
        "shares_good": 0,
        "shares_total": 0,
        "avg_time": 0,
        "hashes_total": 0,
        "best": [
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0
        ],
        "error_log": []
    },
    "connection": {
        "pool": "xmr.pool.minergate.com:45700",
        "uptime": 3,
        "ping": 0,
        "failures": 0,
        "error_log": []
    }
}

for example , you do not have ping, miner version, donate level, shares_good, shares_total, avg_time, hashes_total.
Can you add that? and what is effective ?
31  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: April 21, 2018, 12:32:00 PM
15:29:54 | Connection failed: Socked connect error: Cannot reach pool on Intern
t, is your connection up?
15:29:54 | Connection interrupted, waiting 5s then retry.

then please give an example of how to connect through a proxy?
32  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: April 21, 2018, 08:34:09 AM
I use 3proxy-0.8.11-x64 where port forwarding is enabled( tcppm 45700 xmr.pool.minergate.com 45700), but your miner does not work
33  Alternate cryptocurrencies / Mining (Altcoins) / Re: [CPU] JCE Miner Cryptonight/forks, brand new, super fast! on: April 21, 2018, 06:10:12 AM
I have about 60 computers in a local network with a total speed of 9.5 Kh on Monero . Use xmrig-cpu and xmr-stak. You know why I won't use your miner even if he is faster because I don't have direct network access to the Internet as you require. This is not done correctly, it is a pity that you will not be able to get your interest.
Pages: « 1 [2]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!