Added some Metadata

This commit is contained in:
2025-06-01 18:58:54 +02:00
parent 8b80f1fd28
commit ba8cb1ae01
3 changed files with 73 additions and 32 deletions

View File

@@ -1,3 +1,4 @@
from venv import create
import pandas as pd
import os
@@ -11,6 +12,9 @@ data_markers = {
"mpi_red_datatype": "# MPI_Datatype for reductions :",
"mpi_red_op": "# MPI_Op",
"end_of_table": "# All processes entering MPI_Finalize",
"creation_time": "# CREATION_TIME :",
"n_nodes": "# N_NODES :",
"off_mem_flag": "# OFF_MEM_FLAG :"
}
column_names = [
@@ -24,20 +28,29 @@ column_names = [
"mpi_datatype",
"mpi_red_datatype",
"mpi_red_op",
"creation_time",
"n_nodes",
"off_mem_flag",
]
data = list()
for file in os.listdir("data/"):
with open("data/"+file, 'r') as f:
lines = f.readlines()
past_preheader = False
in_header = False
in_body = False
btype = None
proc_num = None
mpi_datatype = None
mpi_red_datatype = None
mpi_red_op = None
btype = "NA"
proc_num = "NA"
mpi_datatype = "NA"
mpi_red_datatype = "NA"
mpi_red_op = "NA"
creation_time = "NA"
n_nodes = "NA"
off_mem_flag = "NA"
for line in lines:
if data_markers["block_separator"] in line:
@@ -55,6 +68,16 @@ for file in os.listdir("data/"):
elif data_markers["mpi_red_op"] in line:
mpi_red_op = line.split()[-1]
if not in_header and not in_body and not past_preheader:
if data_markers["n_nodes"] in line:
n_nodes = line.split()[-1]
if data_markers["creation_time"] in line:
creation_time = line.split()[-1]
if data_markers["off_mem_flag"] in line:
off_mem_flag = line.split(":")[-1].strip()
if off_mem_flag == "": off_mem_flag = "NA"
else: off_mem_flag = off_mem_flag.replace("-off_cache","")
if past_preheader and in_header:
if data_markers["benchmark_type"] in line:
btype = line.split()[2]
@@ -66,7 +89,15 @@ for file in os.listdir("data/"):
if data_markers["end_of_table"] in line:
break
data.append([btype, proc_num]+[int(s) if s.isdigit()
else float(s) for s in line.split()] + [mpi_datatype, mpi_red_datatype, mpi_red_op])
else float(s) for s in line.split()] +
[
mpi_datatype,
mpi_red_datatype,
mpi_red_op,
creation_time,
n_nodes,
off_mem_flag,
])
df = pd.DataFrame(data, columns=column_names)
df.to_csv("data.csv", index=False)