Skip to content

Commit

Permalink
Changes for core PR
Browse files Browse the repository at this point in the history
  • Loading branch information
bliu1013 committed Oct 9, 2024
1 parent a32c1b7 commit 5dd7aa1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/sst/elements/memHierarchy/memTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ static const std::string NONE = "None";
enum class MemEventStatus { OK, Stall, Reject };

/* Define an address region by start/end & interleaving */
class MemRegion : public SST::Core::Serialization::serializable, SST::Core::Serialization::serializable_type<MemRegion> {
class MemRegion : public SST::Core::Serialization::serializable {
public:
SST::MemHierarchy::Addr start; // First address that is part of the region
SST::MemHierarchy::Addr end; // Last address that is part of the region
Expand Down
3 changes: 3 additions & 0 deletions src/sst/elements/simpleElementExample/basicSimLifeCycle.cc
Original file line number Diff line number Diff line change
Expand Up @@ -337,5 +337,8 @@ void basicSimLifeCycle::serialize_order(SST::Core::Serialization::serializer& se

break;
}
case SST::Core::Serialization::serializer::MAP:
// Mapping mode not supported
break;
}
}

0 comments on commit 5dd7aa1

Please sign in to comment.