Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CLI arguments for cycles related options #80

Merged
merged 3 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion components/Cache/CacheImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ class FLEXUS_COMPONENT(Cache)

uint32_t transferTime(const MemoryTransport& trans)
{
if (theFlexus->isFastMode()) { return 0; }
DBG_Assert(trans[MemoryMessageTag] != nullptr);
return ((trans[MemoryMessageTag]->reqSize() > 0) ? cfg.BusTime_Data : cfg.BusTime_NoData) - 1;
}
Expand Down
2 changes: 1 addition & 1 deletion components/NetShim/MemoryNetworkImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ class FLEXUS_COMPONENT(MemoryNetwork)
1; // Note, this field really needs to be added to the NetworkMessage
msg->networkVC = 0;
msg->transmitLatency = transport[NetworkMessageTag]->size;
msg->flexusInFastMode = Flexus::Core::theFlexus->isFastMode();
msg->flexusInFastMode = false;
msg->hopCount = -1; // Note, the local switch also gets counted, so we start at -1
msg->startTS = Flexus::Core::theFlexus->cycleCount();
msg->myList = nullptr;
Expand Down
2 changes: 1 addition & 1 deletion components/NetShim/NetShimImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class FLEXUS_COMPONENT(NetShim)
<< " dst_port=" << transport[NetworkMessageTag]->dst_port));
}
msg->transmitLatency = transport[NetworkMessageTag]->size;
msg->flexusInFastMode = Flexus::Core::theFlexus->isFastMode();
msg->flexusInFastMode = false;
msg->hopCount = -1; // Note, the local switch also gets counted, so we start at -1
msg->startTS = Flexus::Core::theFlexus->cycleCount();
msg->myList = nullptr;
Expand Down
48 changes: 0 additions & 48 deletions components/SpatialPrefetcher/SpatialPrefetcher.hpp

This file was deleted.

Loading