Skip to content
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
5 changes: 3 additions & 2 deletions src/sst/core/impl/timevortex/timeVortexBinnedMap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,9 @@ class TimeVortexBinnedMap_ts : public TimeVortexBinnedMapBase<true>
"sst",
"timevortex.map.binned.ts",
SST_ELI_ELEMENT_VERSION(1,0,0),
"[EXPERIMENTAL] Thread safe verion of TimeVortex based on std::map with events binned into time buckets. Do not reference this element directly, just specify sst.timevortex.map.binned and this version will be selected when it is needed based on other parameters.")

"[EXPERIMENTAL] Thread-safe verion of TimeVortex based on std::map with events binned into time buckets."
" Do not reference this element directly; just specify sst.timevortex.map.binned and this version will"
" be selected when it is needed based on other parameters.")

TimeVortexBinnedMap_ts(Params& params) : TimeVortexBinnedMapBase<true>(params) {}
SST_ELI_EXPORT(TimeVortexBinnedMap_ts)
Expand Down
7 changes: 4 additions & 3 deletions src/sst/core/impl/timevortex/timeVortexPQ.cc
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,10 @@ class TimeVortexPQ_ts : public TimeVortexPQBase<true>
TimeVortexPQ_ts,
"sst",
"timevortex.priority_queue.ts",
SST_ELI_ELEMENT_VERSION(1,0,0),
"Thread safe verion of TimeVortex based on std::priority_queue. Do not reference this element directly, just specify sst.timevortex.priority_queue and this version will be selected when it is needed based on other parameters.")

SST_ELI_ELEMENT_VERSION(1, 0, 0),
"Thread-safe verion of TimeVortex based on std::priority_queue. Do not reference this element directly; just"
" specify sst.timevortex.priority_queue and this version will be selected when it is needed based on other"
" parameters.")

TimeVortexPQ_ts(Params& params) : TimeVortexPQBase<true>(params) {}
TimeVortexPQ_ts() : TimeVortexPQBase<true>() {} // For serialization only
Expand Down
Loading