From a4799429921b0992c2d042fd7368fbb0c6716d97 Mon Sep 17 00:00:00 2001 From: Connor Aird Date: Fri, 17 May 2024 13:25:45 +0100 Subject: [PATCH] Remove branch from perflog and update memory units --- benchmarks/reframe/exx_runonly.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/benchmarks/reframe/exx_runonly.py b/benchmarks/reframe/exx_runonly.py index a34255c54..d414fedc2 100644 --- a/benchmarks/reframe/exx_runonly.py +++ b/benchmarks/reframe/exx_runonly.py @@ -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):