Difference between revisions of "Seer"

From Chessprogramming wiki
Jump to: navigation, search
Line 6: Line 6:
 
an [[UCI]] compliant [[:Category:Open Source|open source chess engine]] by [[Connor McMonigle]], written in [[Cpp|C++]],  
 
an [[UCI]] compliant [[:Category:Open Source|open source chess engine]] by [[Connor McMonigle]], written in [[Cpp|C++]],  
 
licensed under the [[Free Software Foundation#GPL|GNU GPL]] and first released in October 2020.  
 
licensed under the [[Free Software Foundation#GPL|GNU GPL]] and first released in October 2020.  
Seer uses a custom [[NNUE]] implementation with training code written in [https://en.wikipedia.org/wiki/PyTorch PyTorch] and inference code relying on [https://en.wikipedia.org/wiki/OpenMP OpenMP] [[SIMD and SWAR Techniques|SIMD]] for auto vectorization <ref>[https://github.com/connormcmonigle/seer-nnue GitHub - connormcmonigle/seer-nnue: UCI chess engine using NNUE for position evaluation]</ref>.
+
Seer uses a custom [[NNUE]] implementation based on [[Float|32-bit float]] weights with training code written in [https://en.wikipedia.org/wiki/PyTorch PyTorch] and inference code relying on [https://en.wikipedia.org/wiki/OpenMP OpenMP] [[SIMD and SWAR Techniques|SIMD]] for auto vectorization <ref>[https://github.com/connormcmonigle/seer-nnue GitHub - connormcmonigle/seer-nnue: UCI chess engine using NNUE for position evaluation]</ref>.
 +
Due to [[BMI2#PEXTBitboards|PEXT Bitboards]], Seer requires [[BMI2]] for a reasonable performance, as well as either [[SSE]], [[AVX]], [[AVX2]] or [[AVX-512]] to calculate the NNUE.
  
 
=Features=
 
=Features=
Line 42: Line 43:
 
=Forum Posts=
 
=Forum Posts=
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=72613&start=427 Re: New engine releases 2020] by [[Connor McMonigle]], [[CCC]], October 18, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=72613&start=427 Re: New engine releases 2020] by [[Connor McMonigle]], [[CCC]], October 18, 2020
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=75433 Seer] by [[Gerd Isenberg]], [[CCC]], October 18, 2020
  
 
=External Links=
 
=External Links=

Revision as of 19:59, 18 October 2020

Home * Engines * Seer

Greek Seer [1]

Seer,
an UCI compliant open source chess engine by Connor McMonigle, written in C++, licensed under the GNU GPL and first released in October 2020. Seer uses a custom NNUE implementation based on 32-bit float weights with training code written in PyTorch and inference code relying on OpenMP SIMD for auto vectorization [2]. Due to PEXT Bitboards, Seer requires BMI2 for a reasonable performance, as well as either SSE, AVX, AVX2 or AVX-512 to calculate the NNUE.

Features

[3]

Board Representation

Search

Evaluation

See also

Forum Posts

External Links

Chess Engine

Misc

References

Up one level