Page 5 of 10

Re: Stockfish 9

Posted: Thu Feb 01, 2018 8:16 pm
by syzygy
Krzysztof Grzelak wrote:
Evert wrote:I tried to add elo++ in my own code, but sadly it didn't help.

Tell you what though, if you think it's so easy to improve Stockfish, why don't you prove it?
You need to change the way programmers think. Too many programmers fell into the so-called programming experience - and this is not good.
Says you, who obviously has no clue.

Re: Stockfish 9

Posted: Thu Feb 01, 2018 8:22 pm
by Krzysztof Grzelak
syzygy wrote:Says you, who obviously has no clue.
I have a notion of what I write, because in this respect nothing has changed.

Re: Stockfish 9

Posted: Thu Feb 01, 2018 8:56 pm
by syzygy
Krzysztof Grzelak wrote:
syzygy wrote:Says you, who obviously has no clue.
I have a notion of what I write, because in this respect nothing has changed.
No you don't.

Re: Stockfish 9

Posted: Thu Feb 01, 2018 9:03 pm
by Hai
Krzysztof Grzelak wrote:
Evert wrote:I tried to add elo++ in my own code, but sadly it didn't help.

Tell you what though, if you think it's so easy to improve Stockfish, why don't you prove it?
You need to change the way programmers think. Too many programmers fell into the so-called programming experience - and this is not good.

You need to change the way programmers think. Too many programmers fell into the so-called programming experience - and this is not good.[/quote]

You only need to rent amazon ec2 instances and donate them to Stockfish framework.
For example if the Stockfish framework needs 100 cores + 3 years for 100 ELO.
You should change it into much more cores and much less time for 100 ELO.

If everybody here would rent and donate at least 1 machine, then Stockfish would reach +100 ELO after 6 months.

Re: Stockfish 9

Posted: Thu Feb 01, 2018 9:04 pm
by Krzysztof Grzelak
syzygy wrote:No you don't.
I am sorry but what you are aiming for now.

Re: Stockfish 9

Posted: Thu Feb 01, 2018 9:11 pm
by Rodolfo Leoni
tpoppins wrote:Image

Try Ctrl+F5 in your browser.
It worked! Thanks to all people who suggested this magic Ctrl + F5. I'll try it again tomorrow to check if there's a SF 10 release! :lol:

Seriously, my best congrats to Marco and the whole team. Their work is great. :D

Re: Stockfish 9

Posted: Thu Feb 01, 2018 9:17 pm
by Krzysztof Grzelak
Hai wrote:You only need to rent amazon ec2 instances and donate them to Stockfish framework.
For example if the Stockfish framework needs 100 cores + 3 years for 100 ELO.
You should change it into much more cores and much less time for 100 ELO.

If everybody here would rent and donate at least 1 machine, then Stockfish would reach +100 ELO after 6 months.
Perhaps yes, maybe no, I do not know.

Re: Stockfish 9

Posted: Thu Feb 01, 2018 9:18 pm
by kgburcham
syzygy wrote:
Krzysztof Grzelak wrote:
syzygy wrote:Says you, who obviously has no clue.
I have a notion of what I write, because in this respect nothing has changed.
No you don't.
funny post, interesting.

kgburcham

Re: Stockfish 9

Posted: Thu Feb 01, 2018 9:42 pm
by Nordlandia
Different browser solved the issue for few already. It's cache related

https://stockfishchess.org/

Re: Stockfish 9

Posted: Thu Feb 01, 2018 10:09 pm
by Steve Maughan
Hi Evert,
Evert wrote:I tried to add elo++ in my own code, but sadly it didn't help.
Clearly elo++ is only going to increment by 1. You need to add a for loop e.g.

Code: Select all

for&#40;i = 0; i < desired_improvement; i++) elo++;
That should do the trick :lol:

Steve