TurboSpork
A machine learning framework in C
|
TODO
Arena are used universally throughout TurboSpork for memory managment. Any function that allocates memory in TurboSpork uses arenas to do so. TurboSpork uses mg_arena.h
to handle arena operations. You should familiarize yourself with arenas and arena memory managment before using the library. In short, arenas are purely linear allocators. For more detail, you can look at the mg_arena.h github page.