Author

Topic: [ANN] AEON [2019-09-27: Upgrade to version 0.13.0.0 ASAP HF@1146200 Oct 25] - page 209. (Read 625666 times)

sr. member
Activity: 240
Merit: 250
I'm getting about 940 H/s on a gtx 970, is that any good?


I dont think so, my fx does 850.
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
I'm getting about 940 H/s on a gtx 970, is that any good?
sr. member
Activity: 240
Merit: 250



AEON PHYSICAL WALLETS FOR SALE

5k aeon included. These will be silver made.

Let me know if anyone is interested.
hero member
Activity: 500
Merit: 500
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
hero member
Activity: 500
Merit: 500
@BoscoMurray: thanks for feedback and good test. i edit my previous instructions
sr. member
Activity: 450
Merit: 250
Without making any changes to default settings or clocking the card, my 7950 is giving 343 H/s
sr. member
Activity: 450
Merit: 250
Thanks for the help folks. Got it working.

Arux, you were correct, bar a small typo (missing the SDK directory). My libs line looks like:

Quote
LIBS   = -ljansson -Wl,./lib/x86_64/sdk/libOpenCL.so -ldl
hero member
Activity: 500
Merit: 500

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.
hero member
Activity: 637
Merit: 500
Win64 AMD gpu miner update:
With the above parameters (two posts above), the GPU driver crashes after some time and mining stops.
Too unstable to use at the moment.
member
Activity: 77
Merit: 10

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
sr. member
Activity: 450
Merit: 250

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
hero member
Activity: 637
Merit: 500
I built the win64 version of the AMD gpu miner.

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).

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);
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
}
],
}
]
}

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.
legendary
Activity: 2968
Merit: 1198
Thanks for the clear instructions Arux!

Hopefully folks with the right equipment can reproduce and we'll get some test reports soon.
hero member
Activity: 500
Merit: 500

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.



legendary
Activity: 2968
Merit: 1198
What about windows version

There is a windows version of 0.9.5.0 that I will be uploading soon
He probably meant the Wolf0's miner.
The Aeon-Win-x64-0.9.5.0 compiled and uploaded by myagui is already there and I'm using it.

Oh okay. I meant an official build (or core, not GPU miner) but I don't know if any problem with the myagui build.

As for the miner, I asked Wolf0 to specify the build dependences to help address the problems people had building it.

Not to be lazy... but where can I download either the wolf or the myagui miner? - I'd like to start mining AEON Again...

Here's the wolf AMD miner:


There are NVIDIA miner and (modified Wolf's) cpuminer in the OP

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
full member
Activity: 121
Merit: 100
What about windows version

There is a windows version of 0.9.5.0 that I will be uploading soon
He probably meant the Wolf0's miner.
The Aeon-Win-x64-0.9.5.0 compiled and uploaded by myagui is already there and I'm using it.

Oh okay. I meant an official build (or core, not GPU miner) but I don't know if any problem with the myagui build.

As for the miner, I asked Wolf0 to specify the build dependences to help address the problems people had building it.

Not to be lazy... but where can I download either the wolf or the myagui miner? - I'd like to start mining AEON Again...
legendary
Activity: 2968
Merit: 1198
What about windows version

There is a windows version of 0.9.5.0 that I will be uploading soon
He probably meant the Wolf0's miner.
The Aeon-Win-x64-0.9.5.0 compiled and uploaded by myagui is already there and I'm using it.

Oh okay. I meant an official build (or core, not GPU miner) but I don't know if any problem with the myagui build.

As for the miner, I asked Wolf0 to specify the build dependences to help address the problems people had building it.
sr. member
Activity: 352
Merit: 250
What about windows version

There is a windows version of 0.9.5.0 that I will be uploading soon
He probably meant the Wolf0's miner.
The Aeon-Win-x64-0.9.5.0 compiled and uploaded by myagui is already there and I'm using it.
legendary
Activity: 2968
Merit: 1198
What about windows version
Is there a windows Gui wallet on the horizon. 

Yes it is in development. I had to take some time off to finish up some unrelated work but i will be getting back to it soon.
legendary
Activity: 2968
Merit: 1198
What about windows version

There is a windows version of 0.9.5.0 that I will be uploading soon
Jump to: