Amoeba 2.6
Moderators: hgm, Harvey Williamson, bob
Forum rules
This textbox is used to restore diagrams posted with the [d] tag before the upgrade.
This textbox is used to restore diagrams posted with the [d] tag before the upgrade.
Amoeba 2.6
I have just released Amoeba version 2.6.
You can download binary for windows (x86 & x64) or linux (x64) here:
https://github.com/abulmo/amoeba/releases/tag/v2.6
I hope you will enjoy it.
You can download binary for windows (x86 & x64) or linux (x64) here:
https://github.com/abulmo/amoeba/releases/tag/v2.6
I hope you will enjoy it.
Richard Delorme
- Graham Banks
- Posts: 30733
- Joined: Sun Feb 26, 2006 9:52 am
- Location: Auckland, NZ
-
Frank Quisinsky
- Posts: 4819
- Joined: Wed Nov 18, 2009 6:16 pm
- Location: Trier, Germany
- Contact:
Re: Amoeba 2.6
Richard,
in big steps your engine in running to higher places in rating list systems. I follow with big interest your development. Thanks for your work!
Best
Frank
in big steps your engine in running to higher places in rating list systems. I follow with big interest your development. Thanks for your work!
Best
Frank
I like computer chess!
-
Jamal Bubker
- Posts: 260
- Joined: Mon May 24, 2010 2:32 pm
Re: Amoeba 2.6
Merci Richard pour la sortie de cette nouvelle mouture !
Merci sincèrement pour les efforts que tu investis dans l'amélioration de ton module !
La communauté te remercie

Merci sincèrement pour les efforts que tu investis dans l'amélioration de ton module !
La communauté te remercie
Re: Amoeba 2.6
Thank You Richard for very strong Engine Smile
It is pleasure to see how interesting style of play has Amoeba.
Below, link with macOS compile:
https://www.dropbox.com/s/5mrzu5n9ps2w3 ... S.zip?dl=0
It is pleasure to see how interesting style of play has Amoeba.
Below, link with macOS compile:
https://www.dropbox.com/s/5mrzu5n9ps2w3 ... S.zip?dl=0
Regards, Dariusz
Re: Amoeba 2.6
Thanks Richard, for a greatly improved engine.

Re: Amoeba 2.6
Thank you, I upload your executable here:
https://github.com/abulmo/amoeba/releas ... -macOS.zip
May I ask you which compiler and compilation options did you use?
https://github.com/abulmo/amoeba/releas ... -macOS.zip
May I ask you which compiler and compilation options did you use?
Richard Delorme
Re: Amoeba 2.6
I used dmd compiler from site: https://dlang.org
In makefile I change DC to dmd
ifeq ($(DC),)
DC = dmd
endif
In makefile I change DC to dmd
ifeq ($(DC),)
DC = dmd
endif
Regards, Dariusz
Re: Amoeba 2.6
1) dmd produces slow executables (about half speed for Amoeba). It is better to use ldc2 or gdc.
2) From the command line, there is no need to edit the makefile to change the compiler, just do to build amoeba with dmd or to build amoeba with ldc2 and profile guided optimization.
3)I do have an old mac mini (a core 2 duo from 2009) somewhere, I will try to build a faster executable with ldc2. Unfortunately, It does not support popcount instruction, so I cannot test the fastest version.
2) From the command line, there is no need to edit the makefile to change the compiler, just do
Code: Select all
DC=dmd makeCode: Select all
DC=ldc2 make pgo3)I do have an old mac mini (a core 2 duo from 2009) somewhere, I will try to build a faster executable with ldc2. Unfortunately, It does not support popcount instruction, so I cannot test the fastest version.
Richard Delorme
