Bitcoin Forum
June 22, 2024, 12:08:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 32 33 34 35 36 37 38 39 40 41 [42] 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 ... 166 »
821  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: July 07, 2017, 02:48:47 PM
so sp, apparently there is a miner of djm34 that do 24Mh with a 1070 on xcn, can you compile it please? this coin is very profitable with that miner

where is it? github?

look in your thread there is a guy with 24MH, he said djm34 0.0.3 https://bitcointalk.org/index.php?topic=1801595.1460

That was with 2 1070s.
822  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.6, open source optimized multi-algo CPU miner on: July 06, 2017, 09:26:07 PM
It's not so trivial anymore.

It might be worthwhile to focus the problem a little more. I suggest trying to compile with a lesser arch
like core2 to see if you can, then try to other arches until you identify the one that fails.

The problem seems to be with the compile environment but it could also be your CPU. If it's an AMD it
adds another dimension because their implementation of some features is incompatible with Intel.
The RELEASE_NOTES have some tips.

Won't help, he needs to update binutils. Even if he uses -march=core2 it will still emit AVX2 instructions and old GNU assembler will break the compilation -- the file responsible is algo/argon2/ar2/sj/scrypt-jane-mix_salsa64-avx2.h, it will emit that instruction no matter what -march compiler option is provided.

You can easily replicate that problem yourself with installing gcc 4.8 and binutils 2.20 (which doesn't support avx2) in a chroot, container or virtual machine.

Interesting. It seems you're right but only because the compiler was upgraded, otherwise the AVX2 code would have been skipped:

Code:
        #if (COMPILER_GCC >= 40700)
                #define X86_64ASM_AVX2

I agree the way forward would be to upgrade all of gcc's dependencies: rpm -q --requires gcc
823  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.6, open source optimized multi-algo CPU miner on: July 06, 2017, 07:10:56 PM
It's not so trivial anymore.

It might be worthwhile to focus the problem a little more. I suggest trying to compile with a lesser arch
like core2 to see if you can, then try to other arches until you identify the one that fails.

The problem seems to be with the compile environment but it could also be your CPU. If it's an AMD it
adds another dimension because their implementation of some features is incompatible with Intel.
The RELEASE_NOTES have some tips.
824  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.6, open source optimized multi-algo CPU miner on: July 06, 2017, 02:50:56 PM
You can try moving the pragma directives outside the function to see if that works.
If it's trivial to support gcc4.4 I'll make the change in the next release.
825  Alternate cryptocurrencies / Mining (Altcoins) / Re: Manual overclocking makes no sense on nVidia cards... on: July 06, 2017, 04:08:15 AM

Now I'm asking every smartass out here again: why are you setting fixed clocks when mining?

OK I'm a smartass. My cards don't throttle when I raise the clock so I get a directly proportional increase
in hashrate with all other settings, except fan, stock. As the first reply suggested, you need to find out why you're
cards are throttling.

But it seems you're mind is already made up, it just doesn't work. So why should anyone bother discussing it
intellegently with a closed mind?
826  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.6, open source optimized multi-algo CPU miner on: July 03, 2017, 05:28:10 PM

This error flies out when ./build.sh  Linux ARM GCC5

ARM is not supported.
827  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.6, open source optimized multi-algo CPU miner on: July 03, 2017, 04:56:36 PM
cpuminer-opt-3.6.6 is released.

git: https://github.com/JayDDee/cpuminer-opt

tarball: https://drive.google.com/file/d/0B0lVSGQYLJIZV2NBRjF5bVJUeHc/view?usp=sharing

Windows binaries: https://drive.google.com/file/d/0B0lVSGQYLJIZNHhCeE5iUHluUUE/view?usp=sharing

New in v3.6.6

added tribus algo for Denarius (DNR).

configure removed from .gitignore. This should allow source cloned from git to compile
on Windows/mingw when aclocal is not available.

Fixed CPU temperature monitoring on some CPUs (Linux only).

Fixed a compile error on FreeBSD. FreeBSD is not officially supported, ymmv.
Reluctance to disappoint, added a parenthesis and a semicolon ");" .but still:

sysinfo.c:120:2: error: impossible constraint in "asm"
asm volatile("cpuid" : "=a"(a), "=b"(b), "=c"(c), "=d"(d) : "a"(functionnumber), "c"(0));
 Grin

I don't understand the error, that code did not change. How did you compile?
828  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.6, open source optimized multi-algo CPU miner on: July 01, 2017, 06:47:04 PM
cpuminer-opt-3.6.6 is released.

git: https://github.com/JayDDee/cpuminer-opt

tarball: https://drive.google.com/file/d/0B0lVSGQYLJIZV2NBRjF5bVJUeHc/view?usp=sharing

Windows binaries: https://drive.google.com/file/d/0B0lVSGQYLJIZNHhCeE5iUHluUUE/view?usp=sharing

New in v3.6.6

added tribus algo for Denarius (DNR).

configure removed from .gitignore. This should allow source cloned from git to compile
on Windows/mingw when aclocal is not available.

Fixed CPU temperature monitoring on some CPUs (Linux only).

Fixed a compile error on FreeBSD. FreeBSD is not officially supported, ymmv.
829  Alternate cryptocurrencies / Mining (Altcoins) / Re: E-Bay Sellers Beward : Scammer Buying GPUs on: June 29, 2017, 05:23:01 PM
I hope you reported it to Ebay.
830  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.5, open source optimized multi-algo CPU miner on: June 29, 2017, 04:59:12 PM
AMD just announced Ryzen PRO with "Built-in AES 128-bit Encryption engine" so will that have any impact on mining?

I found the announcement, it would have been nice if you had posted the link.

https://www.amd.com/en/ryzen-pro

It's all marketing speak so I have no idea what it means technically. AES_NI is already a 128 bit encryption
and decryption engine so I have no idea what improvements are implied, maybe a faster implementation.

Another implied improvement is the mention of low-latency cache. Intel cache performance is currently better
than AMD so maybe the're catching up. That combined with the larger-than-Intel cache size could further give
an edge to AMD in the CPU market.

With Ryzen they have pulled ahead of Intel with threads, price, cache size, HW SHA. Between Threadripper
(4 channel DDR4, more threads, even bigger cache) and whatever improvements come in the Ryzen Pro there's
not much left where Intel has an edge.

It's nice to see some real competition in the CPU market. It will be interesting to see how Intel will respond.

On a bit of a tangent...

I am still curious about AVX2 performance on Ryzen. I have read that their implementation isn't native but I haven't
seen any performance comparisons. If anyone has a Ryzen I would be interested in a performance comparison of
AVX vs AVX2 on algos that have AVX2 optimizations.
831  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.5, open source optimized multi-algo CPU miner on: June 27, 2017, 06:11:10 PM
I got a problem with the good time of day.

algo/m7m.c:5:17: fatal error: gmp.h: Нет такого файла или каталога
 #include <gmp.h>
                 ^
compilation terminated.
Makefile:2821: ошибка выполнения рецепта для цели «algo/cpuminer-m7m.o»
make[2]: *** [algo/cpuminer-m7m.o] Ошибка 1
make[2]: выход из каталога «/home/dima/Документы/Miner/cpuminer-opt-master»
Makefile:3446: ошибка выполнения рецепта для цели «all-recursive»
make[1]: *** [all-recursive] Ошибка 1
make[1]: выход из каталога «/home/dima/Документы/Miner/cpuminer-opt-master»
Makefile:662: ошибка выполнения рецепта для цели «all»
make: *** [all] Ошибка 2


 Ubuntu 17.04 Gnome intel core i7

Missing gmp dev package.

install gmp-dev

timetravel10.c:(.text+0x1bb): undefined reference to `reverse'
collect2: error: ld returned 1 exit status
Makefile:1313: ошибка выполнения рецепта для цели «cpuminer»
make[2]: *** [cpuminer] Ошибка 1
make[2]: выход из каталога «/home/dima/Документы/Miner/cpuminer-opt-master»
Makefile:3446: ошибка выполнения рецепта для цели «all-recursive»
make[1]: *** [all-recursive] Ошибка 1
make[1]: выход из каталога «/home/dima/Документы/Miner/cpuminer-opt-master»
Makefile:662: ошибка выполнения рецепта для цели «all»
make: *** [all] Ошибка 2


Is the configuration correct?  ./configure CFLAGS="-march=native" --with-crypto --with-curl

CFLAGS="-O3 -march=native -Wall" CXXFLAGS="$CFLAGS -std=gnu++11" ./configure --with-curl
Too an error

Everything worked

What did you do to get it to work? Does build.sh work or did you change some options?
832  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.5, open source optimized multi-algo CPU miner on: June 27, 2017, 04:47:50 PM
I got a problem with the good time of day.

algo/m7m.c:5:17: fatal error: gmp.h: Нет такого файла или каталога
 #include <gmp.h>
                 ^
compilation terminated.
Makefile:2821: ошибка выполнения рецепта для цели «algo/cpuminer-m7m.o»
make[2]: *** [algo/cpuminer-m7m.o] Ошибка 1
make[2]: выход из каталога «/home/dima/Документы/Miner/cpuminer-opt-master»
Makefile:3446: ошибка выполнения рецепта для цели «all-recursive»
make[1]: *** [all-recursive] Ошибка 1
make[1]: выход из каталога «/home/dima/Документы/Miner/cpuminer-opt-master»
Makefile:662: ошибка выполнения рецепта для цели «all»
make: *** [all] Ошибка 2


 Ubuntu 17.04 Gnome intel core i7

Missing gmp dev package.
833  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.5, open source optimized multi-algo CPU miner on: June 27, 2017, 04:46:32 PM
hey guys, perfomance with nist5 its awesome so thanks to the op
 but now a question...
 
its this normal? (see pic)

8mins or more without shares, sometimes even more time?

i am using aes-avx version of 3.6.5, i have amd

http://imgur.com/a/e00CS

my command its this
cpuminer-aes-avx.exe -a Nist5 -o stratum+tcp://yiimp.ccminer.org:3833 -u myaddressofc -p c=symbol -t 1


The stratum difficulty is too high for CPU mining. If the pool uses vardiff it should adjust over time. Some pools
offer a low-diff port and others (like yiimp) allow the diff to be specified in the command line password.
834  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.5, open source optimized multi-algo CPU miner on: June 27, 2017, 02:46:48 AM
./cpuminer -h


thank you for your reply, in which step ? and are my other steps true ?

I cant get it working Sad

Please can someone help me about it.

What steps and commands should i do/use ?
Quote
1. sudo apt-get install libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm
2. git clone https://github.com/pooler/cpuminer.git
3. cd cpuminer
4. ./autogen.sh
5. ./configure CFLAGS="-O3"
6. make
Which step is wrong ? What commands should i use ? and what to do after installation for mining (example dash mining; stratum+tcp://dash.suprnova.cc )

Try reading and following the instructions in RELEASE_NOTES. When you have problems it helps if you provide a proper
description including what you did and what happened when you did it.
835  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.6.5, open source optimized multi-algo CPU miner on: June 26, 2017, 08:08:11 PM
./cpuminer -h
836  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 2.0 - opensource - GPL (tpruvot) on: June 26, 2017, 04:24:07 AM
It's still likely a power issue even if not a PSU issue. Make sure you haven't overloaded any power cables
(avoid using splitters) then try removing one GPU. If that doesn't solve it start looking at your house supply.
Do lights dim when you start the miner?

Nothing in software (drivers) should cause a sudden power down.
837  Alternate cryptocurrencies / Mining (Altcoins) / Re: android mining on: June 25, 2017, 05:40:08 PM
A customized array of low power CPUs would beat a desktop on power efficiency. But that's not
a smartphone and Android wouldn't be the OS of choice.

A smartphone carries too much baggage (HW & SW) not related to mining and you need
many of them to match the performance of a basic desktop CPU. As I said it's only of intrerest to botnets.

I've never heard of Perk and can't find any info about it. What algo did it use?
838  Alternate cryptocurrencies / Mining (Altcoins) / Re: android mining on: June 25, 2017, 04:35:58 PM
Just what is a smartphone coin, exactly? Do you mean a coin that can be mined on a smartphone?
There is no coin property that makes it attractive to mine on a smartphone.

Android and mining don't go together. Android is an OS designed for low power mobile devices.
It is not designed for continuous high power usage and neither are the devices than run it.

Mining on an Android device is like using a mini car to carry heavy loads, it's stupid.

Only botnets are interested in Android mining.
839  Alternate cryptocurrencies / Mining (Altcoins) / Re: Which crypto for cpu mining on non aes-ni cpu? on: June 24, 2017, 08:14:59 PM
AES-NI is one of the few advantages a CPU has over a GPU for mining. Most algos that don't use AES are even less competitive
compared to GPU mining. Just mine the most profitable algo on your CPU regardless of whether it uses AES.
840  Alternate cryptocurrencies / Mining (Altcoins) / Re: AMD Ryzen hashrate? on: June 23, 2017, 03:14:57 AM
Pretty impressive CPU for mining. In addition to everything in the R7 it also has 4 channel memory.
I also like that the L3 cache scales with the number of cores. The 16 core Threadripper should perform
about double the 8 core R7 at the same clock speed. It'll be interesting to see how the price compares.
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 32 33 34 35 36 37 38 39 40 41 [42] 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 ... 166 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!