Skip to content

Commit

Permalink
add ranged plots
Browse files Browse the repository at this point in the history
  • Loading branch information
greole committed Feb 18, 2024
1 parent 04ccee5 commit 0de2ab6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion LidDrivenCavity3D/assets/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ def col_divide(df_orig, df_comparisson):
ret = deepcopy(df_orig).set_index("jobid")
df_orig = df_orig.set_index("jobid")
df_comparisson = df_comparisson.set_index("jobid")
# dont normalize nCells, nProcs, or deviceRankOverSubscription
for c in df_orig.columns:
if c == "nCells" or c == "nProcs":
if c == "nCells" or c == "nProcs" or c == "deviceRankOverSubscription":
continue
try:
ret[c] = df_comparisson[c] / df_orig[c]
Expand Down

0 comments on commit 0de2ab6

Please sign in to comment.