Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mnakao committed Jan 14, 2024
1 parent 797030b commit 91f6794
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions misc/app_history.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
require "csv"

###
Fugaku = true
PrePost = false
Exclusive_appname = ["ood_job_submitter_supercon2023", "ood_openfoam", "ood_vscode_supercon2023", "ood_openfoam_fundation", "ood_desktop_meeting", "--bulk", "--data", "-L", "-L rscgrp=small"]
###
#Fugaku = true
#PrePost = false
Fugaku = false
PrePost = true
###

APPNAME = 0
Expand All @@ -23,9 +27,7 @@ def fugaku_grep(prepost, line)
appname = line.split(",")[2][3..-3]
appname = line.split(",")[6][3..-3] if appname.include?("@") # specified mail address
appname = line.split(",")[7][3..-3] if appname.include?("-N")
return if(appname == "--bulk" || appname == "ood_openfoam" || appname == "ood_vscode_supercon2023" ||
appname == "ood_job_submitter_supercon2023" || appname == "ood_openfoam_fundation" ||
appname.include?("\"ood_desktop") || appname == "-L rscgrp=small") # Old log file
return if(Exclusive_appname.include?(appname) || appname.include?("\"ood_desktop"))
prepost.push([year_month, appname])
end
end
Expand Down

0 comments on commit 91f6794

Please sign in to comment.