Chessengine in flames

Code, algorithms, languages, construction...
Post Reply
sandermvdb
Posts: 24
Joined: Wed Jun 01, 2016 3:52 pm

Chessengine in flames

Post by sandermvdb » Thu Sep 08, 2016 9:41 pm

I've created a Flamegraph of my chess program, see attached html-file (must be renamed).
I think it looks really cool and can be very useful for profiling the application!

Some statistics
- eval-function costs about 33%
- generating moves about 27%
- quiescence about 21%
- sorting about 9%
- SEE-function about 3%

Some extra info
- engine is written in java
- elo-score is about 2000-2100
- search was done till a depth of 12 and aborted when enough stack-dumps were created
- calculation was started at the chess start position
- LMR, IID, null-move and check-extensions were disabled because I wanted to focus on a 'clean' depth
- I used an NPM module called javaFlameGraph to create the graph (some hacking was needed...):
https://github.com/saquibkhan/javaFlameGraph
- method-inlining was disabled to show more info. this does influence the relative performance figures but not that much

What do you think?! :)
Attachments
04 - flame -12-noinlining.txt
(138.82 KiB) Downloaded 381 times

Post Reply