Skip to content

Commit 38f086f

Browse files
committed
Graph
1 parent 0943218 commit 38f086f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

scripts/data/create_graphs_ganak.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,8 @@ def get_dirs(ver : str):
477477

478478
# complex numbers from Mei
479479
"out-ganak-gpmc-mei-14294765-", # gpmc
480-
"out-ganak-gpmc-mei-14295250-0", # ganak, fixed complex
480+
# "out-ganak-gpmc-mei-14295250-0", # ganak, fixed complex
481+
"out-ganak-gpmc-mei-14295899-0", # mpfr ganak
481482
]
482483
# only_dirs = ["out-ganak-6828273"] #-- functional synth
483484
#"6393432", "6393432", "6349002",, "6349002", "6387743" "6356951"] #, "out-ganak-6318929.pbs101-4", "out-ganak-6328707.pbs101-7", "out-ganak-6318929.pbs101-7"] #,"6348728" "6346880", "6335522", "6328982", "6328707"]
@@ -584,7 +585,10 @@ def get_dirs(ver : str):
584585
replace(dirname,'out-ganak-mc','') as dirname,\
585586
replace(ganak_call,'././ganak_','') as call,\
586587
sum(mem_out) as 'mem out', \
587-
sum(signal == 11) as 'sig11', \
588+
sum(signal == 11) as 'sigSEGV', \
589+
sum(signal == 6) as 'sigABRT', \
590+
sum(signal == 14) as 'sigALRM', \
591+
sum(signal == 8) as 'sigFPE', \
588592
CAST(ROUND(avg(ganak_mem_MB), 0) AS INTEGER) as 'av memMB',\
589593
ROUND(avg(conflicts)/(1000.0*1000.0), 2) as 'av confM', \
590594
ROUND(avg(decisionsK)/(1000.0), 2) as 'av decM', \
@@ -610,8 +614,6 @@ def get_dirs(ver : str):
610614

611615
# out-ganak-mc2324-14063135-0|mc2023_track4_050.cnf|././ganak_d622244b9c9 --arjunverb 2 --maxcache 5000|4294967295
612616
if True:
613-
dirs = ""
614-
vers = ""
615617
for dir,ver in table_todo:
616618
with open("gen_table.sqlite", "w") as f:
617619
f.write(".mode table\n")

0 commit comments

Comments
 (0)