Bitcoin Forum
April 19, 2024, 08:23:46 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Economy / Service Discussion / CoinDesk hits a new low - publishing a pack of lies from NiceHash on: September 19, 2016, 02:24:57 AM
NaN.
2  Alternate cryptocurrencies / Mining (Altcoins) / Wolf's XMR GPU Miner on: August 29, 2016, 09:34:25 AM
NaN.
3  Alternate cryptocurrencies / Mining (Altcoins) / Wolf's Ethereum Kernel on: June 21, 2016, 04:26:32 PM
NaN.
4  Alternate cryptocurrencies / Mining (Altcoins) / Qubit Mining on: February 18, 2015, 12:53:36 AM
NaN.
5  Alternate cryptocurrencies / Mining (Altcoins) / Wolf's x13 Binaries on: February 14, 2015, 05:08:16 AM
NaN.
6  Other / Off-topic / How do you earn BTC? on: November 09, 2014, 04:28:57 PM
NaN.
7  Other / Off-topic / Feels damned good to be turning a profit GPU mining again on: November 05, 2014, 08:57:45 PM
NaN.
8  Alternate cryptocurrencies / Altcoin Discussion / Why X11 runs cooler - an answer. on: October 31, 2014, 08:32:07 PM
NaN.
9  Other / Off-topic / AMD OpenCL compiler is shit on: October 31, 2014, 12:55:24 AM
NaN.
10  Alternate cryptocurrencies / Mining (Altcoins) / [Working] Improved CryptoNight CUDA Miner (based on tsiv's work) on: July 20, 2014, 04:43:40 AM
NaN.
11  Alternate cryptocurrencies / Mining (Altcoins) / Unfinished CryptoNight OpenCL (AMD) miner on: June 30, 2014, 09:35:04 PM
NaN.
12  Alternate cryptocurrencies / Mining (Altcoins) / Wolf's XMR/BCN/DSH CPUMiner - 2x speed compared to LucasJones' - NEW 06/20/2014 on: May 30, 2014, 10:25:29 PM
NaN.
13  Alternate cryptocurrencies / Mining (Altcoins) / New (more optimized) MRO CPUMiner [Updated 05/28/2014] [PROOF OF 2X INCREASE] on: May 21, 2014, 03:18:19 PM
New thread here: https://bitcointalk.org/index.php?topic=632724

Some of my optimizations were just committed to the repo (thanks LucasJones for improving on it), but for all the people on Windows, I made binaries. Optimizations only take effect if your CPU has AES-NI.

<links removed so there's no confusion>

For my GPG key ID and fingerprint, see my signature. Oh, and one more thing - main page is NSFW, so don't go there - same warning is on the litecointalk thread where I compile SGMiner and several forks of it for Win64 every week.

You can donate here if it helps you: 43jtN2e88d4ayn7gxsLwB94fmYzLuXymuGdJxotnvYsCaK3UuhvQRNgKrZUD4i5kxTRtpz49FrB1e2K YiXu4TNyEEGUwu9E

EDIT: Dammit, crashes now. I'm on it.

EDIT2: I think it was the way I compiled winpthreads. Will fix in a minute.

EDIT3: Well, it's not working ATM. LucasJones compiled one, which I'm hosting here: https://ottrbutt.com/cpuminer-multi/cpuminer-multi-1.0.2-LucasJones.zip

It's dynamically linked, which kinda sucks, but it works.

EDIT4: Never mind, fluffypony has taken care of it: https://bitcointalk.org/index.php?topic=583449.msg6857197#msg6857197

EDIT5: Scratch that last part, fluffypony posted binaries of the Monero code, not the miner, which had AES-NI support integrated completely seperately, but at about the same time. I had nothing to do with that.

EDIT6: I have made several improvements to the cpuminer. The best part is - servers will not see much of an increase, but desktops will, evening the playing field a little. There are some limitations and special instructions, however:

It only works on Linux. Several assembly routines that I wrote are *nix specific.
You have to compile it from my repo at https://github.com/wolf9466/cpuminer-multi
The only optimizations are for the AES-NI implementation. The slow one will be about the same.

Do NOT use all threads! Use the number of cores minus one, or it will be rather slow. For this purpose, hyperthreads count as cores.
Do NOT use "./configure CFLAGS="myflags""! This wipes out the already optimized flags I added to the defaults. Put the CFLAGS before the "./configure". I recommend only using -march=native, as it's not set by default.
If you are trying on a system without AES-NI, you must pass "--disable-aes-ni" to configure, or it won't build.
Hashrate will fluctuate a lot with high share diff. Try to find somewhere with a low share diff to benchmark.

Getting reports of 20% hashrate increase! Need more people to test!
Just got a report of almost 2x increase over LucasJones' repo! Test and post!

While testing, I'm beginning to notice that cores - 1 isn't actually optimal. A number between the number of physical cores and the number of threads is. My i7-4770k performs better with 6 threads.

NEW CODE RELEASED! This is even better - and it's portable to Windows!

05/28/2014
Okay, guys - this time, I'll stop coding for more than ten seconds and give you some detail, since it doesn't matter how fast my miner is if no one is using it. I ran a test, LucasJones' repo against mine. Each had the exact same CFLAGS (-Ofast -flto -fuse-linker-plugin -funroll-loops -fsplit-ivs-in-unroller -fvariable-expansion-in-unroller -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-loops=16 -falign-labels=16). Each were run with 21 threads for a period of time over 20min. I can't be more accurate than that, because I didn't sit and time it. They were run at seperate times on the same machine - a 32 core Amazon EC2 instance with 58GB of RAM. The results? Lucas' cpuminer reported 627.58H/s - but only pulled 600 at the pool. My miner reported 1021.73 and pulled an impressive 1.25KH/s at the pool. Now, even with vardiff causing high share difficulties and luck contributing to inaccuracy, this shows a clear 100% increase. I have screenshots to prove it, but before I post them, I have to warn - I was too lazy to crop out my wallpapers, so they are NSFW.

Lucas' miner (NSFW): https://ottrbutt.com/tmp/lucasminer-proof.png
My miner (NSFW): https://ottrbutt.com/tmp/wolfminer-proof.png

So... get it here: https://github.com/wolf9466/cpuminer-multi
No binaries yet (Windows or otherwise) - but there should be some soon!

05/29/2014
Build some Win64 binaries. Enjoy.

https://ottrbutt.com/cpuminer-multi/cpuminer-multi-wolf-05-29-2014.zip
https://ottrbutt.com/cpuminer-multi/cpuminer-multi-wolf-05-29-2014.zip.sig

05/30/2014
Mikhaila (the server that ottrbutt is on) is going down at 5:00 AM May 31st GMT for upgrade.
14  Bitcoin / Development & Technical Discussion / Why will nodes not relay non-standard txs? on: May 07, 2014, 12:22:10 PM
NaN.
15  Bitcoin / Development & Technical Discussion / Something for Windows Developers on: April 22, 2014, 09:44:40 PM
NaN.
16  Other / Off-topic / Whoever made this wins at least 100 internets on: April 20, 2014, 09:55:35 PM
NaN.
17  Alternate cryptocurrencies / Mining (Altcoins) / 64-bit Windows binaries of SGMiner and its forks on: April 20, 2014, 09:50:50 PM
NaN.
18  Other / Off-topic / Do you think she is pretty? #2 on: April 11, 2014, 04:54:40 AM
NaN.
19  Other / Off-topic / BTC *tank*ing - Pic related on: April 11, 2014, 12:48:55 AM
NaN.
20  Economy / Currency exchange / [SOLD] 5k XRP for .09 BTC on: April 05, 2014, 10:55:07 PM
All in the title.
Pages: [1] 2 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!