Lines Matching +full:runs +full:- +full:on
3 # Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
4 # All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
6 # SPDX-License-Identifier: BSD-2-Clause
10 # Read all input files specified on the command line, or stdin and parse
34 runs = []
57 runs.append(data)
59 data['test'] = line.split()[-2] + " " + line.split('-- ')[1]
60 data['bp'] = data['test'].rsplit()[-1]
76 data['degree'] = int(line.split(':')[1]) - 1
105 return pd.DataFrame(runs)
109 runs = read_logs() variable
110 print(runs) # Print summary (about 10 lines)
111 print('First entry:\n', runs.iloc[0])
112 print('Last entry:\n', runs.iloc[-1])