Changeset e9a7bdb3 for benchmark


Ignore:
Timestamp:
Aug 25, 2022, 11:47:33 AM (20 months ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
82b9e956
Parents:
8baa40aa
Message:

Fixed process after new memcd results

File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/process-mutilate.py

    r8baa40aa re9a7bdb3  
    109109        # checking if it is a file
    110110        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)
    112113                try:
    113                         series = match[1]
     114                        series = "{}-{}%".format(match[1], match[3])
    114115                        rate = match[2]
    115                         rep = match[3]
     116                        rep = match[4]
    116117                except:
    117118                        continue
Note: See TracChangeset for help on using the changeset viewer.