Use trace file stem as SystemC module name

There were many reports of users worrying about the warning message.
This commit is contained in:
2025-09-24 08:17:31 +02:00
parent 7e77593f23
commit 6af3dd5b28

View File

@@ -131,7 +131,7 @@ Simulator::instantiateInitiator(const DRAMSys::Config::Initiator& initiator)
auto player = std::make_unique<StlPlayer>(
config, tracePath.c_str(), *traceType, storageEnabled);
return std::make_unique<RequestIssuer>(config.name.c_str(),
return std::make_unique<RequestIssuer>(tracePath.stem().c_str(),
std::move(player),
memoryManager,
interfaceClk,