Bitcoin Forum
May 06, 2024, 05:08:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 »
  Print  
Author Topic: Wolf's XMR/BCN/DSH CPUMiner - 2x speed compared to LucasJones' - NEW 06/20/2014  (Read 546895 times)
OrientA
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile
September 19, 2014, 05:15:13 PM
 #381


Just wanted to confirm. It is 10-20% faster on average across some of my multi-core machines.
The same performance on my FX-8350.  Undecided

What is your operating system?
1714972111
Hero Member
*
Offline Offline

Posts: 1714972111

View Profile Personal Message (Offline)

Ignore
1714972111
Reply with quote  #2

1714972111
Report to moderator
1714972111
Hero Member
*
Offline Offline

Posts: 1714972111

View Profile Personal Message (Offline)

Ignore
1714972111
Reply with quote  #2

1714972111
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Rabinovitch
Legendary
*
Offline Offline

Activity: 2030
Merit: 1076


BTCLife.global participant


View Profile
September 20, 2014, 03:09:11 AM
 #382

Win7 x64.

From Siberia with love! Hosting by Rabinovitch!
Fundraising for BOINC Farm
Пpoфeccиoнaльнo зaнимaюcь paзвёpтывaниeм фepм (ASIC, GPU, BURST, STORJ, Filecoin), oбopyдoвaниeм пoмeщeний для мaйнингa.
picobell
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
September 28, 2014, 02:10:46 PM
 #383

I get this error when i try to compile it:

Code:
root@prox8:~/cpuminer-multi# ./autogen.sh
configure.ac:133: error: possibly undefined macro: AC_MSG_ERROR
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.

How to solve that?

System is Debian wheezy 64bit.

Compile latest autoconf from source.

Any other solution? I am on Ubuntu 14.04 LTS and I'd rather stick to available repository versions. There is other stuff on that machine that may break.

Edit:
I just checked and my version of autoconf is 2.69, which seems to be the latest version according to http://ftp.gnu.org/gnu/autoconf/
BitcoinPappi
Legendary
*
Offline Offline

Activity: 915
Merit: 1005


View Profile
October 02, 2014, 06:09:29 AM
 #384

I get this error when i try to compile it:

Code:
root@prox8:~/cpuminer-multi# ./autogen.sh
configure.ac:133: error: possibly undefined macro: AC_MSG_ERROR
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.

How to solve that?

System is Debian wheezy 64bit.

Compile latest autoconf from source.

Any other solution? I am on Ubuntu 14.04 LTS and I'd rather stick to available repository versions. There is other stuff on that machine that may break.

Edit:
I just checked and my version of autoconf is 2.69, which seems to be the latest version according to http://ftp.gnu.org/gnu/autoconf/

You are more than likely missing this http://www.gnu.org/software/m4/
tanoury
Full Member
***
Offline Offline

Activity: 235
Merit: 100



View Profile
October 02, 2014, 04:30:36 PM
 #385

Help, I get this error when compiling on ubuntu 14.04. I tried two different computers, both get same error.
Quote
gcc version 4.9.1 (Ubuntu 4.9.1-3ubuntu2~14.04.1)
configure:3441: $? = 0
configure:3430: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
Any ideas??
tanoury
Full Member
***
Offline Offline

Activity: 235
Merit: 100



View Profile
October 02, 2014, 05:40:07 PM
 #386

Help, I get this error when compiling on ubuntu 14.04. I tried two different computers, both get same error.
Quote
gcc version 4.9.1 (Ubuntu 4.9.1-3ubuntu2~14.04.1)
configure:3441: $? = 0
configure:3430: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
Any ideas??

SOLVED: Built fine without -march=native
srmojuze
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile WWW
October 03, 2014, 04:36:31 PM
 #387

Hi all,
Script for Ubuntu 14, XDN mining on extremepool.org (IP address is used because of DNS bug in curl or something)

Code:
sudo apt-get install git;sudo apt-get install build-essential;sudo apt-get install pkg-config;sudo apt-get install libcurl4-openssl-dev;sudo apt-get install automake

wget http://curl.haxx.se/download/curl-7.34.0.tar.gz;tar -xvf curl-7.34.0.tar.gz;cd curl-7.34.0/;./configure --disable-shared --enable-static;make -j 4;sudo make install;cd ..

git clone https://github.com/wolf9466/cpuminer-multi;cd cpuminer-multi;./autogen.sh;./configure;make -j 4

sudo ./minerd -a cryptonight -o stratum+tcp://216.119.175.92:5555 -u YOURADDRESSHERE -p x
goxed
Legendary
*
Offline Offline

Activity: 1946
Merit: 1006


Bitcoin / Crypto mining Hardware.


View Profile
October 04, 2014, 12:20:56 AM
Last edit: October 04, 2014, 12:36:52 AM by goxed
 #388

Compiling Wolf's cpu-miner in Mac OS X 10.9 Mavericks / 10.10 Yosemite

Change the cpuminer-multi.rb to my git repo. Just changed Makefile.am for compatibility with clang, everything else is the same.
vim /usr/local/Library/Taps/sammy007/homebrew-cryptonight/cpuminer-multi.rb
Code:
require "formula"

class CpuminerMulti < Formula
  homepage "https://github.com/goxed/cpuminer-multi"
  head "https://github.com/goxed/cpuminer-multi.git"

  depends_on "automake" => :build
  depends_on "autoconf" => :build
  depends_on "libtool" => :build
  depends_on "curl"
  depends_on "jansson"

  def install
    system "./autogen.sh"
    system "perl ./nomacro.pl"
    system "CFLAGS=\"-march=native -mtune=native -maes\" ./configure"
    system "make"
    bin.install "minerd"
  end
end


re-run brew
Code:
brew reinstall --HEAD cpuminer-multi

Revewing Bitcoin / Crypto mining Hardware.
rkm80
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
October 07, 2014, 07:54:58 PM
 #389

Hi!

I have successfully compiled Wolf's miner on Debian, but I don't understand how to start SOLO-mining mode.
Can somebody write required options to start solo-mining.

Thank you!



Butoeskor
Sr. Member
****
Offline Offline

Activity: 388
Merit: 250


View Profile
October 28, 2014, 02:07:24 AM
 #390

I have problem for download minerd-wolf-07-09-14.exe with error message. Dont finish the download. Which is the problem?.
bigj
Full Member
***
Offline Offline

Activity: 198
Merit: 100



View Profile
October 29, 2014, 08:14:29 AM
 #391

Will this miner be updated again any soon?
Giulini
Full Member
***
Offline Offline

Activity: 192
Merit: 100


View Profile
November 19, 2014, 07:55:06 PM
 #392

System:
ubuntu14.04 LTS, 8 GB RAM, no extra AMD Driver
>FX8320E, 8 Core 95 W, wolfs spuminer, 325 h/s
(>GPU R9 280x, claymore v9.1, 535 h/s)
Earnings/Power= 25 % ;-)
5w00p
Hero Member
*****
Offline Offline

Activity: 644
Merit: 502



View Profile
November 19, 2014, 11:24:05 PM
 #393

System:
ubuntu14.04 LTS, 8 GB RAM, no extra AMD Driver
>FX8320E, 8 Core 95 W, wolfs spuminer, 325 h/s
(>GPU R9 280x, claymore v9.1, 535 h/s)
Earnings/Power= 25 % ;-)


Oh Word?
liteon
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


I'm a Firestarter!


View Profile WWW
January 31, 2015, 08:02:49 PM
 #394

Looks like ottrbutt.com is down?
Any mirror(s)?

Selling NordVPN account with premium sub - expires 2021! PM me to buy.
liteon
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


I'm a Firestarter!


View Profile WWW
February 01, 2015, 12:11:29 PM
 #395

got one from my backup ... here, just if you don't fix soon
Code:
http://www20.zippyshare.com/v/E1uVaRqD/file.html

Selling NordVPN account with premium sub - expires 2021! PM me to buy.
Molet
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
February 20, 2015, 08:10:07 AM
 #396

Debian 7 - not work  Sad
my system
Code:
root@BDServer:/home/user_miner/cpuminer-multi# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 7.8 (wheezy)
Release:        7.8
Codename:       wheezy

"./autogen.sh" command log
Code:
root@BDServer:/home/user_miner/cpuminer-multi# ./autogen.sh
configure.ac:18: installing `./compile'
configure.ac:4: installing `./config.guess'
configure.ac:4: installing `./config.sub'
configure.ac:6: installing `./install-sh'
configure.ac:6: installing `./missing'

"./configure" command log
Code:
root@BDServer:/home/user_miner/cpuminer-multi# ./configure CFLAGS="-march=native"
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for gcc option to accept ISO C99... -std=gnu99
checking how to run the C preprocessor... gcc -std=gnu99 -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether gcc -std=gnu99 needs -traditional... no
checking whether gcc -std=gnu99 and cc understand -c and -o together... yes
checking dependency style of gcc -std=gnu99... gcc3
checking for ranlib... ranlib
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking sys/endian.h usability... no
checking sys/endian.h presence... no
checking for sys/endian.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking for sys/sysctl.h... yes
checking whether be32dec is declared... no
checking whether le32dec is declared... no
checking whether be32enc is declared... no
checking whether le32enc is declared... no
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for getopt_long... yes
checking whether we can compile AVX code... yes
checking whether we can compile XOP code... yes
checking whether we can compile AVX2 code... yes
checking for json_loads in -ljansson... no
checking for pthread_create in -lpthread... yes
checking for gawk... (cached) mawk
checking for curl-config... /usr/bin/curl-config
checking for the version of libcurl... 7.26.0
checking for libcurl >= version 7.15.2... yes
checking whether libcurl is usable... yes
checking for curl_free... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating compat/Makefile
config.status: creating compat/jansson/Makefile
config.status: creating cpuminer-config.h
config.status: executing depfiles commands

"make" command log
Code:
root@BDServer:/home/user_miner/cpuminer-multi# make
make  all-recursive
make[1]: Entering directory `/home/user_miner/cpuminer-multi'
Making all in compat
make[2]: Entering directory `/home/user_miner/cpuminer-multi/compat'
Making all in jansson
make[3]: Entering directory `/home/user_miner/cpuminer-multi/compat/jansson'
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../..     -march=native -MT dump.o -MD -MP -MF .deps/dump.Tpo -c -o dump.o dump.c
mv -f .deps/dump.Tpo .deps/dump.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../..     -march=native -MT hashtable.o -MD -MP -MF .deps/hashtable.Tpo -c -o hashtable.o hashtable.c
mv -f .deps/hashtable.Tpo .deps/hashtable.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../..     -march=native -MT load.o -MD -MP -MF .deps/load.Tpo -c -o load.o load.c
mv -f .deps/load.Tpo .deps/load.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../..     -march=native -MT strbuffer.o -MD -MP -MF .deps/strbuffer.Tpo -c -o strbuffer.o strbuffer.c
mv -f .deps/strbuffer.Tpo .deps/strbuffer.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../..     -march=native -MT utf.o -MD -MP -MF .deps/utf.Tpo -c -o utf.o utf.c
mv -f .deps/utf.Tpo .deps/utf.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I../..     -march=native -MT value.o -MD -MP -MF .deps/value.Tpo -c -o value.o value.c
mv -f .deps/value.Tpo .deps/value.Po
rm -f libjansson.a
ar cru libjansson.a dump.o hashtable.o load.o strbuffer.o utf.o value.o
ranlib libjansson.a
make[3]: Leaving directory `/home/user_miner/cpuminer-multi/compat/jansson'
make[3]: Entering directory `/home/user_miner/cpuminer-multi/compat'
make[3]: Цeль `all-am' нe тpeбyeт выпoлнeния кoмaнд.
make[3]: Leaving directory `/home/user_miner/cpuminer-multi/compat'
make[2]: Leaving directory `/home/user_miner/cpuminer-multi/compat'
make[2]: Entering directory `/home/user_miner/cpuminer-multi'
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT minerd-cpu-miner.o -MD -MP -MF .deps/minerd-cpu-miner.Tpo -c -o minerd-cpu-miner.o `test -f 'cpu-miner.c' || echo './'`cpu-miner.c
mv -f .deps/minerd-cpu-miner.Tpo .deps/minerd-cpu-miner.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT minerd-util.o -MD -MP -MF .deps/minerd-util.Tpo -c -o minerd-util.o `test -f 'util.c' || echo './'`util.c
mv -f .deps/minerd-util.Tpo .deps/minerd-util.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT minerd-cryptonight_common.o -MD -MP -MF .deps/minerd-cryptonight_common.Tpo -c -o minerd-cryptonight_common.o `test -f 'cryptonight_common.c' || echo './'`cryptonight_common.c
mv -f .deps/minerd-cryptonight_common.Tpo .deps/minerd-cryptonight_common.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT crypto/minerd-c_keccak.o -MD -MP -MF crypto/.deps/minerd-c_keccak.Tpo -c -o crypto/minerd-c_keccak.o `test -f 'crypto/c_keccak.c' || echo './'`crypto/c_keccak.c
crypto/c_keccak.c: In function ‘keccak’:
crypto/c_keccak.c:102:5: warning: implicit declaration of function ‘memset’ [-Wimplicit-function-declaration]
crypto/c_keccak.c:102:5: warning: incompatible implicit declaration of built-in function ‘memset’ [enabled by default]
crypto/c_keccak.c:111:5: warning: implicit declaration of function ‘memcpy’ [-Wimplicit-function-declaration]
crypto/c_keccak.c:111:5: warning: incompatible implicit declaration of built-in function ‘memcpy’ [enabled by default]
mv -f crypto/.deps/minerd-c_keccak.Tpo crypto/.deps/minerd-c_keccak.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT crypto/minerd-c_groestl.o -MD -MP -MF crypto/.deps/minerd-c_groestl.Tpo -c -o crypto/minerd-c_groestl.o `test -f 'crypto/c_groestl.c' || echo './'`crypto/c_groestl.c
mv -f crypto/.deps/minerd-c_groestl.Tpo crypto/.deps/minerd-c_groestl.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT crypto/minerd-c_blake256.o -MD -MP -MF crypto/.deps/minerd-c_blake256.Tpo -c -o crypto/minerd-c_blake256.o `test -f 'crypto/c_blake256.c' || echo './'`crypto/c_blake256.c
mv -f crypto/.deps/minerd-c_blake256.Tpo crypto/.deps/minerd-c_blake256.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT crypto/minerd-c_jh.o -MD -MP -MF crypto/.deps/minerd-c_jh.Tpo -c -o crypto/minerd-c_jh.o `test -f 'crypto/c_jh.c' || echo './'`crypto/c_jh.c
mv -f crypto/.deps/minerd-c_jh.Tpo crypto/.deps/minerd-c_jh.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT crypto/minerd-c_skein.o -MD -MP -MF crypto/.deps/minerd-c_skein.Tpo -c -o crypto/minerd-c_skein.o `test -f 'crypto/c_skein.c' || echo './'`crypto/c_skein.c
mv -f crypto/.deps/minerd-c_skein.Tpo crypto/.deps/minerd-c_skein.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -pthread -I./compat/jansson   -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16  -Ofast -flto -fuse-linker-plugin -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -maes  -march=native -MT minerd-cryptonight_aesni.o -MD -MP -MF .deps/minerd-cryptonight_aesni.Tpo -c -o minerd-cryptonight_aesni.o `test -f 'cryptonight_aesni.c' || echo './'`cryptonight_aesni.c
In file included from cryptonight.h:6:0,
                 from cryptonight_aesni.c:2:
miner.h:188:58: warning: ‘struct cryptonight_ctx’ declared inside parameter list [enabled by default]
cryptonight_aesni.c: In function ‘cryptonight_hash_ctx’:
cryptonight_aesni.c:90:2: warning: passing argument 3 of ‘keccak’ from incompatible pointer type [enabled by default]
In file included from cryptonight_aesni.c:2:0:
cryptonight.h:64:6: note: expected ‘uint8_t *’ but argument is of type ‘union hash_state *’
cryptonight_aesni.c:94:5: warning: implicit declaration of function ‘memcpy’ [-Wimplicit-function-declaration]
cryptonight_aesni.c:94:5: warning: incompatible implicit declaration of built-in function ‘memcpy’ [enabled by default]
cryptonight_aesni.c:172:18: warning: initialization from incompatible pointer type [enabled by default]
cryptonight_aesni.c:215:2: warning: passing argument 1 of ‘keccakf’ from incompatible pointer type [enabled by default]
In file included from cryptonight_aesni.c:2:0:
cryptonight.h:65:6: note: expected ‘uint64_t *’ but argument is of type ‘union hash_state *’
cryptonight_aesni.c:162:4: error: impossible register constraint in ‘asm’
cryptonight_aesni.c:217:1: error: impossible register constraint in ‘asm’
cryptonight_aesni.c:217:1: error: impossible register constraint in ‘asm’
cryptonight_aesni.c:162:4: error: impossible register constraint in ‘asm’
cryptonight_aesni.c:217:1: error: impossible register constraint in ‘asm’
cryptonight_aesni.c:217:1: error: impossible register constraint in ‘asm’
make[2]: *** [minerd-cryptonight_aesni.o] Error 1
make[2]: Leaving directory `/home/user_miner/cpuminer-multi'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/user_miner/cpuminer-multi'
make: *** [all] Error 2
Molet
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
February 20, 2015, 08:33:36 AM
 #397

Almost certain your system is 32-bit.
damn, you're right  Roll Eyes
thx
firecrabby
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
March 28, 2015, 07:23:45 PM
 #398

Hey guys, what about Opteron 8222 - http://www.cpu-world.com/CPUs/K8/AMD-Second%20Generation%20Opteron%208222%20-%20OSA8222GAA6CY%20(OSA8222CYWOF).html

How much h/s per core it will make?
mirny
Legendary
*
Offline Offline

Activity: 1108
Merit: 1005



View Profile
March 29, 2015, 01:48:16 AM
 #399

if you have it, try and let us know

This is my signature...
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
March 29, 2015, 02:24:31 AM
 #400


With apparently only 1mb of cache per core and no aesni I would not expect a whole lot. Not worth it if you are paying for electricity.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!