ftmemsim/config.json
Filipe Rodrigues 684c0c9f5c Improved how random-rw handles random page generation.
Added more realistic values for `{simple, random}-rw`.
2023-07-12 11:20:14 +01:00

26 lines
537 B
JSON

{
"trace_skip": 0,
"debug_output_period_secs": 1.0,
"hemem": {
"read_hot_threshold": 8,
"write_hot_threshold": 4,
"global_cooling_threshold": 18,
"memories": [
{
"name": "ram",
"page_capacity": 32768,
"read_latency_ns": 1.5,
"write_latency_ns": 1.0,
"fault_latency_ns": 10.0
},
{
"name": "optane",
"page_capacity": 262144,
"read_latency_ns": 5.0,
"write_latency_ns": 4.0,
"fault_latency_ns": 50.0
}
]
}
}