jhunterh / Cache-Hierarchy-Simulation-Tool

This tool is a highly configurable cache hierarchy simulator for use in computer architecture research and study.
0 stars 0 forks source link

Refactor datasetparser to dynamically read dataset #52

Open jhunterh opened 5 months ago

jhunterh commented 5 months ago

Currently, the datasetparser reads the entire dataset into a single vector in memory before beginning a simulation. This works fine until the dataset becomes too large to fit into memory. This class needs to be refactored to dynamically read that dataset as instructions are processed to avoid potential memory issues.