trace INSTANCE_ID refactoring

This commit is contained in:
Blaise Tine 2024-07-09 13:33:17 -07:00
parent 1322499c3f
commit 3efced37c5
32 changed files with 299 additions and 263 deletions

View file

@ -145,6 +145,17 @@ public:
dram_ = new ramulator::Gem5Wrapper(ram_config, MEM_BLOCK_SIZE);
Stats::statlist.output("ramulator.ddr4.log");
// dump device configuration
std::cout << "CONFIGS:"
<< " num_threads=" << NUM_THREADS
<< ", num_warps=" << NUM_WARPS
<< ", num_cores=" << NUM_CORES
<< ", num_clusters=" << NUM_CLUSTERS
<< ", socket_size=" << SOCKET_SIZE
<< ", local_mem_base=0x" << std::hex << LMEM_BASE_ADDR << std::dec
<< ", num_barriers=" << NUM_BARRIERS
<< std::endl;
// reset the device
this->reset();