Skip to content

Commit

Permalink
Remove branch from perflog and update memory units
Browse files Browse the repository at this point in the history
  • Loading branch information
connoraird committed May 17, 2024
1 parent 5fea4c1 commit a479942
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions benchmarks/reframe/exx_runonly.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,9 @@ def validate_solution(self):
def extract_runtime_perf(self):
return sn.extractsingle(r'Total run time was:\s+(\S+)\s+seconds', self.stdout, 1, float)

@performance_function('s', perf_key='Memory')
@performance_function('MB', perf_key='Memory')
def extract_memory_perf(self):
return sn.extractsingle(r'Max total mem use is\s+(\S+)\s+MB', self.stdout, 1, float)

@performance_function('s', perf_key='Branch')
def extract_branch_perf(self):
return sn.extractsingle(r'Version comment: Git Branch:\s+(\S+)\s+; tag, hash: .*', self.stdout, 1, float)

@rfm.simple_test
class test_EXX_isol_C2H4_4proc_PBE0ERI_fullSZP_0_4_SCF(ConquestBaseBenchmark):
Expand Down

0 comments on commit a479942

Please sign in to comment.