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

DataGeneratorTool Output File Efficiency #1

Closed jhunterh closed 5 months ago

jhunterh commented 5 months ago

Need to update the DataGenerator to rollover output files when they reach a certain size. Need to update the DataGenerator to improve efficiency of writing to output file. Writing to file on every load and store is causing performance issues.

CapdinCrando commented 5 months ago

I concur, you may want to store the data in a vector of a struct type, then write to file after the program is finished. With file IO pipe optimization, it should write faster that way.