xref: /libCEED/benchmarks/postprocess_table.py (revision ed094490f53e580908aa80e9fe815a6fd76d7526)
1#!/usr/bin/env python3
2
3# Copyright (c) 2017-2025, Lawrence Livermore National Security, LLC and other CEED contributors.
4# All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
5#
6# SPDX-License-Identifier: BSD-2-Clause
7#
8# This file is part of CEED:  http://github.com/ceed
9
10import pandas as pd
11from postprocess_base import read_logs
12
13# Load the data
14runs = read_logs()
15
16# Data output
17print('Writing data to \'benchmark_data.csv\'...')
18runs.to_csv('benchmark_data.csv', sep='\t', index=False)
19print('Writing complete')
20