Code Monkey home page Code Monkey logo

bingomatic's People

Contributors

bartmassey avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

bingomatic's Issues

Do not reinitialize card

Since "all cards are equal" statistically, there is no need to shuffle up a new card for each new game. Random draws should be sufficient to get our statistics. This would improve performance substantially, since shuffling up a card is way more expensive than running a game.

The marker bitboards (or counters once we move to counters in issue #5) will still have to be cleared for each game.

Split out rdrand; fix RNG performance issues

The "rdrand" random number stuff in this repo should be moved into its own repo. Also, should be fixed in the non-RDRAND case to use a faster and more reliable generator than lrand48(): preferably something with a large state.

Right now, RDRAND is the limiting factor in performance. Its output is not being used very efficiently, but still it is about 5x slower than multiple calls to lrand48(). Its quality still justifies having it, I guess.

Add SIMD support

It would be nice to use the on-chip SIMD support for integers bigger than 64 bits. There are some nice things that could be done with this.

Validate randrange() implementation

The current implementation of randrange() is a hacked-up version of somebody's blog post code. An effort should be made to verify that it is correct.

Replace bitboards with counters

As stated in issue #2, right now the performance bottleneck is the RNG. Once that is fixed, the bitboards should be replaced with counters to improve performance.

An array of counters per card can be used along with a per-marker array of counter indices to bump. This should reduce the per-card win test cost quite a bit.

Handle free square

The center "free square" is currently ignored. Some sort of handling should be introduced.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.