Bitcoin Forum
May 06, 2024, 01:48:12 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 »
161  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: October 15, 2015, 10:26:56 PM
I built the win64 version of the AMD gpu miner.
done, i built mine with mingw-w64 linux but i needed to add ws2_32 lib else it fails
test on win7 x64, latest 15.7.1 catalyst

On start there are some errors :

Code:
".\groestl256.cl", line xxx : warning: integer conversion resulted in a change
          of sign
        C64e(0x2a86ef4343692aef), C64e(0xf193a6c4c435f1a6),
        ^

Where xxx could be up to 303 and down to at least 225 (I can get the full output if needed).
idem

Also, this :
Code:
"C:\Users\Richard\AppData\Local\Temp\OCL5F33.tmp.cl", line 228: warning: argument of
          type "uchar *" is incompatible with parameter of type "uint *"
        AESExpandKey256(ExpandedKey1);
not seen but not sure, i perhaps miss it

And finally the results with the following config are 410H/s for a 7950 :

Code:
{
"Algorithms":
[
{
"name": "AEON",
"devices":
[
{
"index": 0,
"corefreq": 925,
"memfreq": 1250,
"fanspeed": 65,
"powertune": 20,
"threads": 1,
"rawintensity": 1024,
"worksize": 16
}
],
}
]
}
Same conf, 475H/s

It seems going above 1024 makes the system unstable. Also I don't know what is the worksize param.
Anyone willing to share results ?

EDIT: It also crashes after some time with those parameters. The AMD driver crashes and miner stops.
on the first attempt, one minute of accepted then no crash but all rejected and ban...
second attempt, shares accepted but a few minutes later, shares found aren't sent to the pool. no new job received (job id didn't change) no crash but no communication between miner and pool. like BoscoMurray complain

Anyone else have an issue with the new AMD miner in that it does start hashing, confirmed by hashrate on the pool, but after a while seems to stop finding/submitting shares?

The miner appear to be hashing, but the pool hashrate drops to zero. Is there some way to turn on logging?

Cheers
Bosco

proof of concept is ok but not usable for now
162  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: October 12, 2015, 10:04:06 PM
I built the win64 version of the AMD gpu miner.
i've tried a cross-compilation from linux (x86_64-w64-mingw32-gcc 4.9) but it fails
Code:
log.c: In function ‘Log’:
log.c:19:3: warning: implicit declaration of function ‘time’ [-Wimplicit-function-declaration]
   time(&rawtime);
   ^
log.c:20:3: warning: implicit declaration of function ‘localtime’ [-Wimplicit-function-declaration]
   curtime = localtime(&rawtime);
   ^
log.c:20:11: warning: assignment makes pointer from integer without a cast
   curtime = localtime(&rawtime);
           ^
log.c:21:3: warning: implicit declaration of function ‘strftime’ [-Wimplicit-function-declaration]
   strftime(timebuf, 128, "[%H:%M:%S] ", curtime);
   ^
log.c:21:3: warning: incompatible implicit declaration of built-in function ‘strftime’
Code:
net.c: In function ‘ConnectToPool’:
net.c:53:3: warning: overflow in implicit constant conversion [-Woverflow]
   return(INVALID_SOCKET);
   ^
net.c:61:3: warning: overflow in implicit constant conversion [-Woverflow]
   return(INVALID_SOCKET);
   ^
net.c:77:3: warning: overflow in implicit constant conversion [-Woverflow]
   return(INVALID_SOCKET);
   ^
then
Code:
net.o: dans la fonction « NetworkingInit »:
/wolf-aeon-miner/net.c:26: référence indéfinie vers « __imp_WSAStartup »
net.o: dans la fonction « NetworkingShutdown »:
/wolf-aeon-miner/net.c:33: référence indéfinie vers « __imp_WSACleanup »
net.o: dans la fonction « ConnectToPool »:
/wolf-aeon-miner/net.c:48: référence indéfinie vers « __imp_getaddrinfo »
/wolf-aeon-miner/net.c:56: référence indéfinie vers « __imp_socket »
/wolf-aeon-miner/net.c:60: référence indéfinie vers « __imp_freeaddrinfo »
/wolf-aeon-miner/net.c:66: référence indéfinie vers « __imp_connect »
/wolf-aeon-miner/net.c:76: référence indéfinie vers « __imp_freeaddrinfo »
/wolf-aeon-miner/net.c:80: référence indéfinie vers « __imp_freeaddrinfo »
net.o: dans la fonction « SetNonBlockingSocket »:
/wolf-aeon-miner/net.c:96: référence indéfinie vers « __imp_ioctlsocket »
main.o: dans la fonction « PoolBroadcastThreadProc »:
/wolf-aeon-miner/main.c:189: référence indéfinie vers « __imp_send »
main.o: dans la fonction « StratumThreadProc »:
/wolf-aeon-miner/main.c:998: référence indéfinie vers « __imp_send »
/wolf-aeon-miner/main.c:1024: référence indéfinie vers « __imp_select »
/wolf-aeon-miner/main.c:1026: référence indéfinie vers « __WSAFDIsSet »
/wolf-aeon-miner/main.c:1033: référence indéfinie vers « __imp_recv »
/wolf-aeon-miner/main.c:1056: référence indéfinie vers « __imp_closesocket »
/wolf-aeon-miner/main.c:1160: référence indéfinie vers « __imp_closesocket »
main.o: dans la fonction « main »:
/wolf-aeon-miner/main.c:1875: référence indéfinie vers « __imp_closesocket »
collect2: error: ld returned 1 exit status
Makefile:8: recipe for target 'all' failed
make: *** [all] Error 1
i give up
i will try windows native compilation later
163  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: October 12, 2015, 09:24:20 PM
@BoscoMurray: thanks for feedback and good test. i edit my previous instructions
164  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: October 12, 2015, 08:35:47 PM

I'm on Mint 17.2. I've installed GCC 4.9 and followed your instructions, but get this after running make:

Code:
...../wolf-aeon-miner/main.c:735: undefined reference to `clCreateCommandQueueWithProperties'
collect2: error: ld returned 1 exit status


Hi There,

I had the same thing.  I think this points to having an older openCL sdk installed than is required.

It is possible to build it using by changing the function names to that used in the older openCL releases, and it does link and build.  But then the actual opencl code give errors during execution.

Probably best to upgrade to latest SDK (note - I haven't because it was such a pain to do it on my headless rig, and it's nice and stable mining other currencies at the moment).

Cheers

Dave

just a guess, it seems that gcc takes libOpenCL directly at /usr/lib/fglrx/libOpenCL.so (from fglrx package) instead of ./lib/x86_64/libOpenCL.so (from AMDAPPSDK-3.0 extraction)
i compiled from a system without fglrx and i didn't have this error.

try to force using ./lib/x86_64/libOpenCL.so with -Wl,./lib/x86_64/libOpenCL.so to LIBS in the makefile.
Code:
CC		= gcc
LD = gcc
CFLAGS = -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -std=c11 -pthread -c -I./include/
LDFLAGS = -pthread -O0 -ggdb3
LIBS = -ljansson -Wl,./lib/x86_64/libOpenCL.so -ldl

you can also try to use libOpenCL.so1 instead of libOpenCL.so but i don't think it will be necessary.
165  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: October 12, 2015, 05:05:09 PM

The AMD miner has not been successfully compiled much less tested by anyone afaik. If you want to give it a try wolf says you need minimum of gcc 4.9. Other than that I don't know the dependencies.

EDIT: Looks like wolf updated the dependencies. Someone want to take another shot at compiling it: https://github.com/wolf9466/wolf-aeon-miner/commit/f208a5853b4f1d2453df868233eca5c39a4d3084


i was able to compile it but i can't test (no amd gpu available on linux at the moment, my last ring is performing windows tests)

what i did: (Ubuntu 15.04 64-bit, gcc 4.9.2)
clone wolf's repository
Code:
git clone https://github.com/wolf9466/wolf-aeon-miner.git
donwload AMD APP SDK 3.0 for 64-bit Linux here : http://developer.amd.com/tools-and-sdks/opencl-zone/amd-accelerated-parallel-processing-app-sdk/
untar it
Code:
tar -jxvf AMD-APP-SDKInstaller-v3.0.124.132-GA-linux64.tar.bz2
and execute the shell script AMD-APP-SDK-v3.0.124.132-GA-linux64.sh
Code:
./AMD-APP-SDK-v3.0.124.132-GA-linux64.sh

you now have a folder AMDAPPSDK-3.0
copy AMDAPPSDK-3.0/include and AMDAPPSDK-3.0/lib into wolf-aeon-miner folder



in the makefile add  -I./include/ to CFLAGS and -L./lib/x86_64/ to LIBS

Quote
CC      = gcc
LD      = gcc
CFLAGS    = -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -std=c11 -pthread -c -I./include/
LDFLAGS   = -pthread -O0 -ggdb3
LIBS   = -ljansson -L./lib/x86_64/ -lOpenCL -ldl

[EDIT] force use of libOpenCL.so from AMDAPPSDK-3.0
with -Wl,./lib/x86_64/libOpenCL.so ) instead of -L./lib/x86_64/

in the makefile add  -I./include/ to CFLAGS
and -Wl,./lib/x86_64/libOpenCL.so to LIBS (or -Wl,./lib/x86_64/sdk/libOpenCL.so according to your paths) to LIBS, -lOpenCL can be deleted

Quote
CC      = gcc
LD      = gcc
CFLAGS    = -D_POSIX_SOURCE -D_GNU_SOURCE -O0 -ggdb3 -std=c11 -pthread -c -I./include/
LDFLAGS   = -pthread -O0 -ggdb3
LIBS   = -ljansson -Wl,./lib/x86_64/libOpenCL.so -ldl
or
Quote
LIBS   = -ljansson -Wl,./lib/x86_64/sdk/libOpenCL.so -ldl

run
Code:
make 
and it must be OK.

in aeon.conf, change url pool an user  then launch with
Code:
./miner aeon.conf

feedback appreciated, i can't test myself.



166  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 30, 2015, 08:50:23 PM
i added :
Code:
    "fixedDiff": {
        "enabled": true,
        "separator": "."
    },
in my config file (i deleted the comma just after  "separator": "." to prevent syntax error)

i tried
Code:
    "fixedDiff": {
        "enabled": true,
        "minDiff": 100,
        "separator": "."
    },
without success
167  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 30, 2015, 02:02:01 PM
i will look if i  can patch the pool to authorize fixed difficulty on miner client. that way, each miner will be able to choose a difficulty matching to his hashrate (or let the pool manage it)

https://github.com/moneromooo/cryptonote-universal-pool/commit/8e5449009a81a1e1ffb7eb0c1ed45fae94441255


patch applied (and max diff increased at 500k BTW)
but unfortunately fixed diff (with address.diff as login) are not accepted by the pool  Sad "Stratum authentication failed"
something is missing. i investigate, for now the pool is still running as usual with var diff only.
168  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 25, 2015, 09:27:15 PM
... my Senior BCT account was hijacked back on 9/19/2015, during a breach of my crappy security through a wallet download related to "Tianhe"  see here https://bitcointalk.org/index.php?topic=1180005.0
...

sad to hear this...
binaries from untrusted source are a calamity
169  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 25, 2015, 09:13:56 PM
Arux, it appears that your pool may be limiting the difficulty to 20000.  It may be beneficial to turn that off - or dramatically increase it (500k?).  I know one of my Xeon machines can sustain about 200k.
few weeks ago i lowered max difficulty from 100k to 20k because someone had trouble when difficulty spike to 100k (loss of hashrate)
i will look if i  can patch the pool to authorize fixed difficulty on miner client. that way, each miner will be able to choose a difficulty matching to his hashrate (or let the pool manage it)
170  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 21, 2015, 07:41:04 AM
I updated the OP with a reformat from myagui. Thanks for the help!

To me it looks a lot better, but feedback is welcome. Also I didn't double check the content of the edits so if there are any errors, please let me know and I'll fix them.


Thanks myagui, clean job, OP nice to read.
171  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 03, 2015, 05:46:28 PM
Chainradar is on the correct chain. I notice it only now.
Someone knows since how many times are they ?
172  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 03, 2015, 11:19:32 AM
I'm not sure how Arux is compiling the non-AES cpuminer for Windows, but it's mentioned that mooo's source tree was used:
https://github.com/moneromooo/cpuminer-multi
I would think  it should work with both AES-NI and non-AES systems, although I have never tested w/o AES-NI.



I also can't seem to locate the git for non-AES-NI for cryptonight-lite miner. The one I built from git was for AES-NI only. And the other was a readme file only. Can someone point me right direction , thanks.


here?  https://bitcointalk.org/index.php?topic=641696.msg12049159#msg12049159


That is the one that only has only a README file in it.... you will have to forgive me my linux is rusty but it's coming back, I have and do quite a bit of mining using linux but I'm struggling on this for some reason.  Any help is appreciated.

btw I ran the following :

wget https://github.com/Arux-BTT/CPUMiner-Multi-cryptonight-light/archive/04082015.tar.gz

tar zxvf 04082015.tar.gz

Then shows only as README.md under ls command.....I imagine I'm just forgetting something, but I did compile the one for AES-NI just fine, however it was a .git file and not a .tar file ...  Huh

for wolf's version, i used https://github.com/moneromooo/cpuminer-multi.
cross-compiled from linux for win64.
AES-NI was configured as usual (aka nothing particular), non AES-NI was configured with --disable-aes-ni
if you use non AES miner on AES cpu, you will lose AES optimisations! (not tested but it will be very slower)
if you use AES miner on non AES cpu, it fails.

for lucasjones version, i used https://github.com/iamsmooth/cpuminer-multi
cross-compiled from linux for win64 too.

173  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 03, 2015, 05:27:03 AM
52.8.47.33:8080 not affected, daemon is still 0.9.1.1
174  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: September 01, 2015, 06:50:57 PM
@smooth:

I used Boost 1.59 for the aeon-light test binaries. Should we expect trouble anytime we switch between binaries that were compiled on different Boost versions?  Undecided
If that's the case, I'd appreciate some official direction as to what version to use, so that I'd always use the same as anyone that will produce official binaries, thus preventing similar complications in the future.

Thanks!

I'm not sure, as I was only vaguely aware of this issue, and the boost documentation is rather poor. Looking in the release notes, I see nothing about version incompatibility since 1.45, which is quite old (none of the AEON builds would have used something older than that right?):

http://www.boost.org/doc/libs/1_59_0/libs/serialization/doc/release.html

So I don't see a good reason for the "unsupported version" failure to occur at all. Maybe there is another explanation.

Still, let's get Arux to report on the boost version being used for the official Windows builds and people can try to use the same version for unofficial builds as well.




Official 0.9.1.1 windows binaries were compiled with boost 1.58 static
i don't have more explanations than smooth  Huh

175  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: August 31, 2015, 06:10:49 AM
There is a bug in the payment module of my pool. One miner is affected now. He's not paid since several days now. I'm aware of the problem and i will investigate ASAP
The coin are safe (but in the wallet pool, not in his personal wallet) His pending balance show correct information (the pool must paid to him this balance). My apologies for the delay.

[edit] 01/09/15, solved. there's no more pending balance above 0.5 . Payment module is Ok.
176  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: August 31, 2015, 05:52:22 AM
Can somebody give me a brief summary of what I need to do to set up a pool. I've done it a few times before (for XMR) but I'm not really up on which versions of the code to use for AEON, any patches needed, etc.

Post if you feel it is of general interest, otherwise PM.

Thanks!

An important point: node v0.12 don't work. You must use node v0.10 else the compil fails.
With node v0.10 compiling and running the pool is ok. (Type node -v to check your node version)
177  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON 2nd gen cryptonote, anon, mobile-friendly, scalable, pruning on: August 31, 2015, 05:46:03 AM
Hi! I'm back at home. Today i will be busy with my day job (to explain my vacation at my office colleagues  Tongue) but shortly i could active here.
178  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON -- HARD FORK 2015-08-04 - MANDATORY UPDATE TO 0.9.0.0+ REQUIRED on: August 19, 2015, 08:13:35 PM
Arux's pool appears to be down. If you are using it you will want to switch somewhere

Front-end was down but core was always running. No shares were lost. Payments are OK.
Cheers.

(Internet onnections are quite impossible here Angry )
179  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON -- HARD FORK 2015-08-04 - MANDATORY UPDATE TO 0.9.0.0+ REQUIRED on: August 15, 2015, 08:05:56 PM
time for vacation  Grin i will be AFK until september because mountain biking Cool



i'm keeping an eye on http://52.8.47.33:8080. where i go there's no computer and access to internet is sometimes unpredictable but with smartphone and cellular network i will be able to connect server, monitor the pool and relaunch process if needed.

see you soon!
180  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AEON -- HARD FORK 2015-08-04 - MANDATORY UPDATE TO 0.9.0.0+ REQUIRED on: August 15, 2015, 07:39:52 PM
...
I have tested it today on my desktop Kubuntu 14.04 with 4 GB RAM.

"Official" binary https://github.com/aeonix/aeon/releases/download/v0.9.1.1/aeon-0-9-1-1-linux64-tar.gz does not run at all (reports some error).
...

thanks for your report. i will look closer why it's not working as expected.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!