Changeset c899175
- Timestamp:
- May 4, 2022, 12:57:43 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 3b5dcfa
- Parents:
- 1f4fde5 (diff), d1c47c2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/plot.py
r1f4fde5 rc899175 46 46 "Median Update Latency" : Field('us' , 0, True), 47 47 "Tail Update Latency" : Field('us' , 0, True), 48 "Update Ratio" : Field('%' , 0, False), 48 49 } 49 50 -
benchmark/process-mutilate.py
r1f4fde5 rc899175 14 14 parser = argparse.ArgumentParser(description='Python Script to convert output from mutilate to rmit like output') 15 15 parser.add_argument('--out', nargs='?', type=argparse.FileType('w'), default=sys.stdout) 16 parser.add_argument('--var', nargs='?', type=str, default='Target QPS') 16 17 try: 17 18 options = parser.parse_args() … … 112 113 continue 113 114 114 d = { 'Target QPS': int(rate) }115 d = { options.var : int(rate) } 115 116 116 117 w = extract( f, d ) -
src/ControlStruct/MultiLevelExit.cpp
r1f4fde5 rc899175 594 594 } 595 595 596 // check if loop node and if so add else clause if it exists 597 const WhileDoStmt * whilePtr = dynamic_cast<const WhileDoStmt *>(kid.get()); 598 if ( whilePtr && whilePtr->else_) ret.push_back(whilePtr->else_); 599 const ForStmt * forPtr = dynamic_cast<const ForStmt *>(kid.get()); 600 if ( forPtr && forPtr->else_) ret.push_back(forPtr->else_); 601 596 602 if ( ! break_label.empty() ) { 597 603 ret.push_back( labelledNullStmt( ret.back()->location, break_label ) );
Note: See TracChangeset
for help on using the changeset viewer.