- Timestamp:
- Aug 25, 2022, 11:47:33 AM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 82b9e956
- Parents:
- 8baa40aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/process-mutilate.py
r8baa40aa re9a7bdb3 109 109 # checking if it is a file 110 110 if os.path.isfile(f): 111 match = re.search("({})\.([0-9]+)\.([0-9]+)".format(names_re), filename) 111 match = re.search("({})\.([0-9]+)\.([0-9]+)\.([0-9]+)".format(names_re), filename) 112 print(filename, match) 112 113 try: 113 series = match[1]114 series = "{}-{}%".format(match[1], match[3]) 114 115 rate = match[2] 115 rep = match[ 3]116 rep = match[4] 116 117 except: 117 118 continue
Note: See TracChangeset
for help on using the changeset viewer.