pycachesim icon indicating copy to clipboard operation
pycachesim copied to clipboard

Python Cache Hierarchy Simulator

Results 4 pycachesim issues
Sort by recently updated
recently updated
newest added

cachesim: backend.c: added support for 4 bit LFSR (pseudo random) replacement algorithm, added fuction to get all dirty lines in a given level as a list cachesim: cache.py: changed few...

I see that 64bit support was added pretty recently. I get a lot of nondeterministic segfaults when trying to use the backend.c by itself. Randomly on these line: https://github.com/RRZE-HPC/pycachesim/blob/1741d353473206f4322760335ba43855673ed43a/cachesim/backend.c#L187 https://github.com/RRZE-HPC/pycachesim/blob/1741d353473206f4322760335ba43855673ed43a/cachesim/backend.c#L154...

Currently a Write Allocate Miss leads to a LOAD on the same cache level. This in-turn produces a LOAD and MISS in the statics. A better solution would be to...

Online/live visualization support using vtkInterface. To install use `pycachesim[ONLINE_VIS]`. - [ ] When visualizing `CacheSimulator` show all at the same time (e.g., in multiple or different colors) - [ ]...

enhancement