diff --git a/.gitignore b/.gitignore index 2b0dc86..ecd0cee 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ build .nfs* *.o myeasylog.log -light \ No newline at end of file +light +exp-result \ No newline at end of file diff --git a/cal.py b/cal.py new file mode 100755 index 0000000..f3df957 --- /dev/null +++ b/cal.py @@ -0,0 +1,267 @@ +#!/usr/bin/python +# -*- coding: UTF-8 -*- + +from multiprocessing import set_forkserver_preload +import os +import os.path +from posixpath import split +from random import sample +import re +import shutil +from time import monotonic, sleep +from tokenize import Number + +# global limit +CUTOFF = 5000 +PUNISH = 2 #PAR2 +MEMS_MAX = 61440 # 60G + +class states(object): + res = "unknown" + time = CUTOFF*PUNISH + mems = MEMS_MAX + mono = False # only this one can solve + best = False # show the best performance + ls_time = 0 # LS_time + +class solver(object): + def __init__(self, res_dir, name): + self.res_dir = res_dir # save the results files + self.print_name = name # names want to show + self.datas = dict() # datas[ins] save the instances + def reset(self): + # SAT-ins UNSAT-ins solved-ins all-ins + self.sat_num = self.unsat_num = self.solved_num = self.all_num = 0 + self.avg_sat_time = self.avg_unsat_time = self.avg_solved_time = self.avg_all_time = 0.0 + self.PAR_sat_time = self.PAR_unsat_time = self.PAR_solved_time = self.PAR_all_time = 0.0 + self.mono_num = 0 + self.best_num = 0 + def cal_soln(self, ins_name): + self.all_num += 1 + state = self.datas[ins_name] + if(self.datas[ins_name].time > CUTOFF): + self.datas[ins_name] = states() + if(state.res=="sat"): + self.sat_num += 1 + self.solved_num += 1 + self.avg_sat_time += state.time + self.avg_solved_time += state.time + self.avg_all_time += state.time + self.PAR_sat_time += state.time + self.PAR_solved_time += state.time + self.PAR_all_time += state.time + elif(state.res=="unsat"): + self.unsat_num += 1 + self.solved_num += 1 + self.avg_unsat_time += state.time + self.avg_solved_time += state.time + self.avg_all_time += state.time + self.PAR_unsat_time += state.time + self.PAR_solved_time += state.time + self.PAR_all_time += state.time + else: + self.avg_all_time += CUTOFF + self.PAR_all_time += CUTOFF * PUNISH + def deal_avg(self): + if(self.sat_num>0): + self.avg_sat_time /= self.sat_num + self.PAR_sat_time /= self.sat_num + if(self.unsat_num>0): + self.avg_unsat_time /= self.unsat_num + self.PAR_unsat_time /= self.unsat_num + if(self.solved_num>0): + self.avg_solved_time /= self.solved_num + self.PAR_solved_time /= self.solved_num + if(self.all_num>0): + self.avg_all_time /= self.all_num + self.PAR_all_time /= self.all_num + def to_string(self, state): + line = "" + line += str(state.res) + " " + line += str(round(state.time,2)) + if state.mono: + line += "[M]" + elif state.best: + line += "[B]" + # if (state.byCDCL): + # line += "{C}" + # elif(state.byLS): + # line += "{L}" + line += str() + return line.ljust(18) + + return super().to_string(state) + + +class solver_SAT_standard_gnomon(solver): + def cal_soln(self, ins_name): + if(not ins_name in self.datas): + self.datas[ins_name] = states() + real_file_path = self.res_dir + "/" + ins_name + fstr = open(real_file_path, "r").read() + + if(not len(re.findall(r"s\s+UNSATISFIABLE", fstr))==0): + self.datas[ins_name].res = "unsat" + elif(not len(re.findall(r"s\s+SATISFIABLE", fstr))==0): + self.datas[ins_name].res = "sat" + + if(not self.datas[ins_name].res == "unknown"): + self.datas[ins_name].time = float(re.findall(r"c process-time:.*seconds", fstr)[0].split()[-2]) + if (self.datas[ins_name].time > CUTOFF*PUNISH): + self.datas[ins_name].res="unknown" + + + return super().cal_soln(ins_name) + def to_string(self, state): + return super().to_string(state) + + + + + +SOLVER_LEN = 20 +SAMPLE_LEN = 20 +NUMBER_LEN = 8 +print_title = True +class calculater(object): + solvers = [] + sample_dirs = [] # sample dirs, [sample_dir, sample_name]s + def __init__(self, solvers, sample_dirs): + self.solvers = solvers + self.sample_dirs = sample_dirs + def __show_in_mark_down(self, samp_name): + global print_title + if(print_title): + print_title = False + title = "| sample".ljust(SAMPLE_LEN+2) + title += " | solver".ljust(SOLVER_LEN+3) + title += " | #SAT".ljust(NUMBER_LEN+3) + title += " | avg_t".ljust(NUMBER_LEN+3) + title += " | #UNSAT".ljust(NUMBER_LEN+3) + title += " | avg_t".ljust(NUMBER_LEN+3) + title += " | #ALL".ljust(NUMBER_LEN+3) + title += " | PAR2_t".ljust(NUMBER_LEN+3) + title += " | best".ljust(NUMBER_LEN+3) + title += " | mono".ljust(NUMBER_LEN+3) + title += " |" + print(title) + + split = "| " + '-'*(SAMPLE_LEN) + split += " | " + '-'*(SOLVER_LEN) + split += " | " + '-'*(NUMBER_LEN) + split += " | " + '-'*(NUMBER_LEN) + split += " | " + '-'*(NUMBER_LEN) + split += " | " + '-'*(NUMBER_LEN) + split += " | " + '-'*(NUMBER_LEN) + split += " | " + '-'*(NUMBER_LEN) + split += " | " + '-'*(NUMBER_LEN) + split += " | " + '-'*(NUMBER_LEN) + split += " |" + self.split_line = split + print(split) + + + for slv in self.solvers: + line = "| " + (samp_name + "("+str(self.sample_ins_ct) + ")").ljust(SAMPLE_LEN) + line += " | " + slv.print_name.ljust(SOLVER_LEN) + line += " | " + str(slv.sat_num).ljust(NUMBER_LEN) + line += " | " + str(round(slv.avg_sat_time,2)).ljust(NUMBER_LEN) + line += " | " + str(slv.unsat_num).ljust(NUMBER_LEN) + line += " | " + str(round(slv.avg_unsat_time,2)).ljust(NUMBER_LEN) + line += " | " + str(slv.solved_num).ljust(NUMBER_LEN) + line += " | " + str(round(slv.PAR_all_time,2)).ljust(NUMBER_LEN) + line += " | " + str(slv.best_num).ljust(NUMBER_LEN) + line += " | " + str(slv.mono_num).ljust(NUMBER_LEN) + line += " |" + print(line) + + def cal_and_show(self): + for sample in self.sample_dirs: + title_line = "" + for slv in self.solvers: + title_line += slv.print_name.ljust(18) + print(title_line) + samp_dir = sample[0] + samp_name = sample[1] + print_line_ct = 0 + sample_ins_ct = 0 + for slv in self.solvers: + slv.reset() + for ins_name in open(samp_dir): + sample_ins_ct += 1 + ins_name = ins_name.strip() + best_time = CUTOFF*PUNISH + solved_ct = 0 + for slv in self.solvers: + slv.cal_soln(ins_name) + best_time = min(slv.datas[ins_name].time, best_time) + if not slv.datas[ins_name].res == "unknown": + solved_ct += 1 + if(not best_time == CUTOFF*PUNISH): + for slv in self.solvers: + if(slv.datas[ins_name].time == best_time): + slv.datas[ins_name].best = True + slv.best_num += 1 + if(solved_ct == 1): + slv.datas[ins_name].mono = True + slv.mono_num += 1 + + + line = "" + no_answer = True + answer_this = "unknown" + all_can_solve = True + have_diff_res = False + for slv in self.solvers: + stt = slv.datas[ins_name] + line += slv.to_string(stt) + if(not stt.res == "unknown"): + no_answer = False + answer_this = stt.res + elif(stt.res == "unknown"): + all_can_solve = False + line += ins_name + if(not all_can_solve and not no_answer): + have_diff_res = True + + if(True): + # if(False): + # if(no_answer): + # if(all_can_solve): + # if(have_diff_res): + # if(answer_this == "sat"): + # if(self.solvers[-2].datas[ins_name].res != self.solvers[-1].datas[ins_name].res): + print_line_ct += 1 + print(line) + + self.sample_ins_ct = sample_ins_ct + for slv in self.solvers: + slv.deal_avg() + self.__show_in_mark_down(samp_name) + if(print_line_ct>0): + print("print line ct = ", print_line_ct) + else: + print(self.split_line) + + +def gen_samples(dir): + samples = [] + for root, dirs, files in os.walk(dir): + for file in files: + sample_name = file.strip(".txt") + sample_dir = os.path.join(root, file) + # print(sample_dir, sample_name) + samples.append([sample_dir, sample_name]) + return samples + +if __name__ == "__main__": + solvers = [] + solvers.append(solver_SAT_standard_gnomon("./exp-result","light-cloud-circle")) + # solvers.append(solver_SAT_standard_gnomon("/pub/data/chenzh/res/huawei_sat/kissat-mab","origin-mab")) + # solvers.append(solver_SAT_standard_gnomon("/pub/data/chenzh/res/huawei_simp/kissat-mab","preprocess-mab")) + samples = [] + samples.append(["/pub/data/chenzh/data/sat2022/all.txt", "dump_sat"]) + clt = calculater(solvers, samples) + clt.cal_and_show() + + diff --git a/makefile b/makefile index cacecbf..ccbabcb 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ OBJECTS := $(addprefix build/,$(SOURCES:%=%.o)) # 声明编译器和编译选项 CXX := mpicxx -CXXFLAGS := -O0 -Wall -Wextra -MMD -MP -g +CXXFLAGS := -O3 -Wall -Wextra -MMD -MP -flto LIBS := -Wl,-Bstatic -lkissat -L kissat-inc/build -I kissat-inc/ \ -lm4ri -L m4ri-20140914/.libs -I m4ri-20140914/ \ diff --git a/run.sh b/run.sh index 045241b..2e68167 100755 --- a/run.sh +++ b/run.sh @@ -4,4 +4,4 @@ #valgrind -make -j 16 && mpirun -np 9 --allow-run-as-root ./light -i data/WS_500_16_70_10.apx_0.cnf --share=1 --threads=32 --times=1000 \ No newline at end of file +make -j 16 && mpirun -np 9 --allow-run-as-root ./light -i /pub/data/chenzh/data/sat2022/0205e0724a8a912dde9ad7dfba2aee0b-003-23-80.cnf --share=1 --threads=32 --times=3600 \ No newline at end of file diff --git a/run_solvers.sh b/run_solvers.sh new file mode 100755 index 0000000..dd152f2 --- /dev/null +++ b/run_solvers.sh @@ -0,0 +1,61 @@ +#!/bin/bash + +SEND_THREAD_NUM=1 +tmp_fifofile="/tmp/$$.fifo" # 脚本运行的当前进程ID号作为文件名 +mkfifo "$tmp_fifofile" # 新建一个随机fifo管道文件 +exec 6<>"$tmp_fifofile" # 定义文件描述符6指向这个fifo管道文件 +rm $tmp_fifofile +for i in $(seq 1 $SEND_THREAD_NUM) +do + echo # for循环 往 fifo管道文件中写入 $SEND_THREAD_NUM 个空行 +done >&6 + +CUTOFF_TIME=3600 + +instance1="/pub/data/chenzh/data/sat2022" + +res_sat1="./exp-result" + +res_no="./unused" +##################################################### + +ulimit -t 3600 + +all_datas=($instance1) +res_dir=($res_sat1) +for((i=0;i<${#all_datas[*]};i++)) +do + instance=${all_datas[$i]} + res_solver_ins=${res_dir[$i]} + if [ ! -d "$res_solver_ins" ]; then + mkdir -p $res_solver_ins + fi + for dir_file in `cat $instance/all.txt` + do + file=$dir_file + echo $file + touch $res_solver_ins/$file + read -u 6 + { + cd /home/qianyh/projects/Light + mpirun -np 9 --allow-run-as-root ./light -i $instance/$file --share=1 --threads=32 --times=$CUTOFF_TIME + echo >&6 + } >$res_solver_ins/$file & + done +done + +# res_solver_ins=$res_no +# if [ ! -d "$res_solver_ins" ]; then +# mkdir -p $res_solver_ins +# fi +# for((i=0;i<96;i++)) +# do +# read -u 6 +# { +# cd /home/chenzh/solvers/sota/kissat-MAB/build +# ./kissat /home/chenzh/data/hard_cnfs/49.cnf +# echo >&6 +# } >$res_solver_ins/$i & +# done + +exit 0 \ No newline at end of file diff --git a/src/distributed/leader.hpp b/src/distributed/leader.hpp index 80febcd..4cac329 100644 --- a/src/distributed/leader.hpp +++ b/src/distributed/leader.hpp @@ -103,14 +103,14 @@ void leader_main(light* S, int num_procs, int rank) { if(is_sat) { res = 10; printf("c [leader] received model size: %d\n", pre->vars); - printf("c SAT!!!!!!\n"); + // printf("c SAT!!!!!!\n"); MPI_Send(NULL, 0, MPI_INT, status.MPI_SOURCE, MODEL_REPORT_TAG, MPI_COMM_WORLD); sol = new int[pre->vars]; MPI_Recv(sol, pre->vars, MPI_INT, status.MPI_SOURCE, MODEL_REPORT_TAG, MPI_COMM_WORLD, MPI_STATUS_IGNORE); } else { res = 20; - printf("c UNSAT!!!!!!\n"); + // printf("s UNSATISFIABLE\n"); } break; } @@ -119,18 +119,19 @@ void leader_main(light* S, int num_procs, int rank) { MPI_Barrier(MPI_COMM_WORLD); if(res == 10) { - printf("s SAT\n"); + printf("s SATISFIABLE\n"); for (int i = 1; i <= pre->orivars; i++) if (pre->mapto[i]) pre->mapval[i] = (sol[abs(pre->mapto[i])-1] > 0 ? 1 : -1) * (pre->mapto[i] > 0 ? 1 : -1); pre->get_complete_model(); + printf("v "); for (int i = 1; i <= pre->orivars; i++) { printf("%d ", i * pre->mapval[i]); } printf("\n"); delete []sol; } else if(res == 20) { - printf("s UNSAT\n"); + printf("s UNSATISFIABLE\n"); } else { printf("s UNKNOWN\n"); } diff --git a/src/paras.hpp b/src/paras.hpp index da8eeb9..8659e25 100644 --- a/src/paras.hpp +++ b/src/paras.hpp @@ -10,10 +10,10 @@ PARA( DPS , int , '\0' , false , 0 , 0 , 1 , "DPS/NPS") \ PARA( DPS_period , int , '\0' , false , 10000 , 1 , 1e8 , "DPS sharing period") \ PARA( margin , int , '\0' , false , 0 , 0 , 1e3 , "DPS margin") \ - PARA( pakis , int , '\0' , false , 0 , 0 , 1 , "Use pakis diversity") \ + PARA( pakis , int , '\0' , false , 1 , 0 , 1 , "Use pakis diversity") \ PARA( reset , int , '\0' , false , 0 , 0 , 1 , "Dynamically reseting") \ PARA( reset_time , int , '\0' , false , 10 , 1 , 1e5 , "Reseting base interval (seconds)") \ - PARA( share , int , '\0' , false , 0 , 0 , 1 , "Sharing learnt clauses") \ + PARA( share , int , '\0' , false , 1 , 0 , 1 , "Sharing learnt clauses") \ PARA( share_intv , int , '\0' , false , 500000, 0 , 1e9 , "Sharing interval (microseconds)") \ PARA( share_lits , int , '\0' , false , 1500 , 0 , 1e6 , "Sharing lits (per every #share_intv seconds)") \ PARA( shuffle , int , '\0' , false , 1 , 0 , 1 , "Use random shuffle") \ diff --git a/src/workers/sharer.cpp b/src/workers/sharer.cpp index c3ebce8..2e0b65c 100644 --- a/src/workers/sharer.cpp +++ b/src/workers/sharer.cpp @@ -33,7 +33,7 @@ void share_clauses_to_next_node(const vec &cls) { std::swap(send_data_struct[i], send_data_struct[send_data_struct.size()-1]); send_data_struct.pop_back(); - printf("c [worker] free send request, now: %d\n", send_data_struct.size()); + //printf("c [worker] free send request, now: %d\n", send_data_struct.size()); } } @@ -73,7 +73,7 @@ void share_clauses_to_next_node(const vec &cls) { send_data_struct.push_back(std::make_pair(send_request, send_buf)); - printf("c [worker] send clauses: %d\n", send_length); + //printf("c [worker] send clauses: %d\n", send_length); } bool receive_clauses_from_last_node(vec &clauses) { @@ -137,7 +137,7 @@ void sharer::do_clause_sharing() { ++nums; auto clk_now = std::chrono::high_resolution_clock::now(); int solve_time = std::chrono::duration_cast(clk_now - clk_st).count(); - printf("c [worker] round %d, time: %d.%d\n", nums, solve_time / 1000, solve_time % 1000); + //printf("c [worker] round %d, time: %d.%d\n", nums, solve_time / 1000, solve_time % 1000); // printf("start sharing %d\n", sq->share_intv); for (int i = 0; i < producers.size(); i++) { cls.clear(); @@ -146,7 +146,7 @@ void sharer::do_clause_sharing() { //printf("c size %d\n", sq->cls.size()); int number = cls.size(); - printf("c [worker] thread-%d: get %d exported clauses\n", i, number); + //printf("c [worker] thread-%d: get %d exported clauses\n", i, number); //分享当前节点产生的子句 if(cls.size() > 0) share_clauses_to_next_node(cls); diff --git a/test1.log b/test1.log new file mode 100644 index 0000000..acd7cce --- /dev/null +++ b/test1.log @@ -0,0 +1,2032 @@ +002a0330958a14deb23dcc84b5489e8a-traffic_f_unknown.cnf +004b0f451f7d96f6a572e9e76360f51a-spg_420_280.cnf +00a62eb89afbf27e1addf8f5c437da9b-ortholatin-7.cnf +00aefd1fc30c425075166ca051e57218-barman-pfile10-038.sas.ex.15.cnf +0151bedac526ee195bc52e4134cd80e7-ssAES_4-4-8_round_8-10_faultAt_8_fault_injections_2_seed_1579630418.cnf +01813075a2ddb68ae1fc655ca003437e-sha256__zeroOut_12__freeIn_16__seed_1.cnf +01d142c43f3ce9a8c5ef7a1ecdbb6cba-urquhart3_25bis.shuffled.cnf +0205e0724a8a912dde9ad7dfba2aee0b-003-23-80.cnf +corrupted double-linked list +[seed6:3227994] *** Process received signal *** +[seed6:3227994] Signal: Aborted (6) +[seed6:3227994] Signal code: (-6) +[seed6:3227994] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f341db2e420] +[seed6:3227994] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7f341d96b00b] +[seed6:3227994] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7f341d94a859] +[seed6:3227994] [ 3] /lib/x86_64-linux-gnu/libc.so.6(+0x8d26e)[0x7f341d9b526e] +[seed6:3227994] [ 4] /lib/x86_64-linux-gnu/libc.so.6(+0x952fc)[0x7f341d9bd2fc] +[seed6:3227994] [ 5] /lib/x86_64-linux-gnu/libc.so.6(+0x9594c)[0x7f341d9bd94c] +[seed6:3227994] [ 6] /lib/x86_64-linux-gnu/libc.so.6(+0x95aaf)[0x7f341d9bdaaf] +[seed6:3227994] [ 7] /lib/x86_64-linux-gnu/libc.so.6(+0x96fe0)[0x7f341d9befe0] +[seed6:3227994] [ 8] /lib/x86_64-linux-gnu/libopen-pal.so.40(mca_base_pvar_finalize+0xa1)[0x7f341d6cb561] +[seed6:3227994] [ 9] /lib/x86_64-linux-gnu/libopen-pal.so.40(mca_base_var_finalize+0x3e9)[0x7f341d6c99c9] +[seed6:3227994] [10] /lib/x86_64-linux-gnu/libopen-pal.so.40(opal_finalize_util+0x52)[0x7f341d6a40b2] +[seed6:3227994] [11] /lib/x86_64-linux-gnu/libmpi.so.40(ompi_mpi_finalize+0x95c)[0x7f341d8324cc] +[seed6:3227994] [12] ./light(+0x17d15)[0x558a1ee15d15] +[seed6:3227994] [13] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f341d94c083] +[seed6:3227994] [14] ./light(+0x19b4e)[0x558a1ee17b4e] +[seed6:3227994] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 0 with PID 0 on node seed6 exited on signal 6 (Aborted). +-------------------------------------------------------------------------- +02223564bd2f5c20768e63cf28c785e3-mp1-squ_ali_s10x10_c39_abio_SAT.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +0240f5bddc39ad2f0a786c811fc434a8-SC21_Timetable_C_542_E_71_Cl_36_S_35.cnf +024af9416f8c1dad1b4f974757e38d51-8-5-6.cnf +02627689047d06fbb642eef14768d751-ps_200_300_70.cnf +[seed6:3229730] Read -1, expected 4264, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +0294158664d9ada36bd23fbb652cb823-smtlib-qfbv-aigs-countbits128-tseitin.cnf +02c6fe8483e4f4474b7ac9731772535d-ncc_none_7047_6_3_3_0_0_420.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +02f2343e32f9070f149708d77556b4aa-Kakuro-easy-117-ext.xml.hg_5.cnf +0398e6b20de133ba8b49c74b67dad7b7-6s133-sc2014.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +03ba29d5cb38d345357a74a7b5ccd759-20-100-lambda100-49_sat.cnf +03bb7baaa45980753a0e7050ae44755d-atco_enc3_opt1_03_53.cnf +03c44a93577c98119dc498053888937a-ctl_4291_567_1_unsat_pre.cnf +03fb9af7b390fe9e0739150ca3410cf0-4g_5color_166_100_02.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +04157f716c1e9606c6a530657bf8f957-Kakuro-easy-125-ext.xml.hg_4.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +0447371bb8a97e8fe5d3cee6de1db766-UTI-20-10p0-sc2009.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +047c92e7c0a36a23d8107f4313517719-rubikcube701-sc2017.cnf +047fbe00ecc60835f1ee9d458bbd7ee8-SAT_H_instances_childsnack_p06.hddl_2.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +048142b6048cb6c10415e08f68a2c3a3-GP_81_430_13.cnf +048a70da40ea4908c783b8314be2da97-aes_32_2_keyfind_1.cnf +0616ca6b1e0ae639d12e19ed310963a9-satcoin-genesis-SAT-4.cnf +064fe286277f695f42b556ef991036ff-sin_depth_miter_2.cnf +072785fd927ff0fd180ce8b9cc00078f-20180321_140826713_p_cnf_320_1120.cnf +[seed6:3239296] Read -1, expected 3033508, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +07b7859003d84402cbb1ebdc37655d55-6s186_Iter20.cnf +0810eb03d022334fdd1d5a6ad4969d47-gss-18-s100.cnf +0823bc5f954c6366702877556f0d3680-linked_list_swap_contents_safety_unwind66.cnf +0842eb01dc00232edc0b26ccb2f19f25-6-4-6-sc2018.cnf +0855033e761d91ae367e867c5a569f9e-atco_enc1_opt2_10_15.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +085b8ebc423dcbd70eceaa04229cf5cd-summle_X111102_steps8_I1-2-2-4-4-8-25-100.cnf +089456508f74be2d96f4112cc495f80a-Eternity-10-06_c18.cnf +08991fb6c7c45205df7f2bc2f51fb1d9-bobsmdct_k500.cnf +08e151e72fe10402a49463171aa557e8-abw-V-nos6.mtx-w220.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +090585dc32a79f2bf6fb61a2c7079682-mdp-28-16-sat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +09d8544494e54bc756438e69567b4ba7-mp1-klieber2017s-0300-034-t12.cnf +0a20cb72e5b005b8ed09d8a93184604a-j3037_9_gmto_bm1.cnf +0a3cb69074519646b0f2933ba7ad2d30-aws-encryption-sdk-c:aws_cryptosdk_hdr_write.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 2 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +0a514edbeace21927e52d75f2d4a8efd-ota-for-aws-iot-embedded-sdk:parseJSONbyModel.cnf +[seed6:3247106] Read -1, expected 4912, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +0b4421f6aac81e2dbc87c5b5ddae6511-52bits_12.dimacs.cnf +0b495cc867003b7ac112b7c47256228b-h31_large.cnf +0c0e6faa4abb622f5bea636ff04d341d-grid-color-12-14-2-cb.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +0c5d7e7aa3dd6024816078d2bdcfc4e3-Carry_Bits_Fast_8.cnf.cnf +0c75119940f87f2bc1dc3f53aeedc02b-20-100-lambda100-89_sat.cnf +0d209cb420326994f9c4898eb10228ab-008-80-8.cnf +0d4970edf84353e5a5798bca3f7f270e-SAT_H_instances_childsnack_p10.hddl_2.cnf +0dc468413b65339fad7e4f981bf2fb1e-reconf20_61_myciel4_2.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +0dcd0ec81c5e8dc13b72d43a4940279b-hantzsche_wendt_unit_147.cnf +0e775873f4c4bbc81ff92b87dd3e15e8-grid-strips-grid-y-3.045-NOTKNOWN.cnf +0e89b0f96c99f1a6aaaf66c3ae805919-SCPC-500-15.cnf +109aa0f5e177c1efb72f133a6f8c723b-hantzsche_wendt_unit_92.cnf +114f1b2ffd86e8a176bcbab664415520-bobsmdct_k88.cnf +129162378e8ad29b5485a9c53feee4b7-hantzsche_wendt_unit_93.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +13b13b34fe88f093aca06d6d035ee797-Lab-Project-FreeRTOS-Cellular-Library:Cellular_ATRemovePrefix.cnf +14f35ebcab936f66fc9292ff62cf39a7-h31.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +157c7496c04d3fc63565cd7999dc45a5-Carry_Save_Fast_1.cnf.cnf +[seed6:3256139] Read -1, expected 33260, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +161a73825fb50badeedbf8d12e1e043a-cfi-rigid-z2-0088-03-or_2.cnf +16a0949c23ac67c57c5773403daaca60-coreMQTT:MQTT_Connect.cnf +[seed6:3257258] Read -1, expected 430913544, errno = 14 +[seed6:3257258] *** Process received signal *** +[seed6:3257258] Signal: Segmentation fault (11) +[seed6:3257258] Signal code: Address not mapped (1) +[seed6:3257258] Failing at address: 0x2dd200002fe2 +[seed6:3257258] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f421ee41420] +[seed6:3257258] [ 1] ./light(+0x1a563)[0x55af4ec61563] +[seed6:3257258] [ 2] ./light(+0x188f8)[0x55af4ec5f8f8] +[seed6:3257258] [ 3] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f421ec5f083] +[seed6:3257258] [ 4] ./light(+0x19b4e)[0x55af4ec60b4e] +[seed6:3257258] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 2 with PID 0 on node seed6 exited on signal 11 (Segmentation fault). +-------------------------------------------------------------------------- +1b78438db7da55c2b4c4b8ec6b6cd6c6-soelberg_unit_158.cnf +[seed6:3257817] Read -1, expected 3872040, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +1ebab99edff4c0470c8aa753bb9d3353-summle_X8637_steps8_I1-2-2-4-4-8-25-100.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +1fabadca67bfeada7086035761b88b33-sum_of_three_cubes_165_unknown_representation.cnf +1fee9f154615842029ec63d8520f4b4e-GP_300_250_15.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +20840b5020649385e3f8f4965de7a123-hantzsche_wendt_unit_83.cnf +[seed6:3260089] Read -1, expected 7872, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +23e61c50ee2ac5cad1d337572abdebcf-aws-encryption-sdk-c:aws_cryptosdk_priv_hdr_parse_edks.cnf +24af39156d1daa122e5928d9aba11847-GP_100_948_33.cnf +[seed6:3261233] Read -1, expected 13508, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +2551afad6b364a7225cdd1b9fa82f7c0-worker_500_500_500_0.35.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +26342c62148962a09872831b7cef8aae-div-mitern165.cnf +26f8332e50a4ba5c371852e3737a3002-mdp-28-11-unsat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 3 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +2748e075d4b636ef260271a35302049b-cfi-rigid-t2-0048-01-or_3.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +27d9905476897885d29cea2744db9805-coreJSON:skipCollection.cnf +285cb2c9735ac73cad999fba3d669382-summle_X8634_steps8_I1-2-2-4-4-8-25-100.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +28b715dd946dba71ddd58a73d9f82c39-pj2005_k80.cnf +294924aff67e879595e55f15b10a79ef-grid-color-12-14-6-cb.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +2a43c3327fb817d82496449265d6630d-mdp-36-16-unsat.cnf +2c0379771c5313567ea9e230438f203f-reconf20_320_hc-square-2_1.cnf +[seed6:3266687] Read -1, expected 6160260, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +2c7cb0ff324a42a0699c23317c97a29a-6s320rb1_Iter8.cnf +[seed6:3267257] Read -1, expected 4996, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +[seed6:3267245] Read -1, expected 21267596, errno = 3 +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +2d01c7744a990469354a3c53cc2727fb-rphp_p95_r95.cnf +2f9cb22859718ab6c201726a91cfefe1-aws-encryption-sdk-c:aws_cryptosdk_priv_try_gen_key.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +30ca21da9753263cc8cda020802b58ce-GP_500_200_20.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +3159a02d096424aab6295c76360633a9-SCPC-500-10.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 8 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +3176c9024f756e99dbee852e5c0aa578-Break_triple_12_30.xml.cnf +31cc22a0f42ebaa109a5b807eb6178c2-Break_20_54.xml.cnf +324e19a2991a29d0765ad256fb7aee85-j3037_9_gmto_b.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +34c2410669b8063d4b0a16a40b071536-sum_of_three_cubes_still_open_large.cnf +351746fa3de2464c903c85e726cfed55-linked_list_swap_contents_safety_unwind67.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +354936f86e55ab8d00e6e1f5f7c140a9-xor_op_n44_d3.cnf +354c2088ae7648e1dc51d12947c8043a-bobsmdct_init_k88.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +35ad744923721e37a2f58443179c31a8-coreMQTT:MQTT_SerializeConnect.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +3666617901c8500d78700dac959729d4-pj2002_k9.cnf +[seed6:3274554] Read -1, expected 4224, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +367c25ad50259a685a25b86d6dd171b2-GP_100_950_33.cnf +[seed6:3275101] Read -1, expected 9164, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +36ecf4ba0451f40e4ede9a1b2ab914f7-af-synthesis_stb_50_200_4_sat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +372021735d9e46002b862aa2a038a818-j3045_4_rggt_bm1.cnf +39b3fde35939134f3b011ebb31842610-PancakeVsInsertSort_9_4.cnf +[seed6:3276629] Read -1, expected 8406084, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +3b97191d94abf3a5e97d6359d886d9df-summle_X111121_steps7_I1-2-2-4-4-8-25-100.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +3cbd82017c4a304c014dd87a69f6028c-bmc_QICE_req_sfl_30.cnf +3d2a6e5c2f8f58dee79fd50444009625-cfi-rigid-z2-0088-03-or_2_shuffle_all.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +[seed6:3278275] Read -1, expected 27716, errno = 3 +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +3d2b0088dccf11d1f82c89b7122c26e1-cfi-rigid-z2-0088-01-or_2_shuffle_all.cnf +[seed6:3278834] Read -1, expected 809389628, errno = 14 +[seed6:3278834] *** Process received signal *** +[seed6:3278834] Signal: Segmentation fault (11) +[seed6:3278834] Signal code: Address not mapped (1) +[seed6:3278834] Failing at address: 0xffffc3dfffffd94d +[seed6:3278834] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f877189c420] +[seed6:3278834] [ 1] ./light(+0x1a563)[0x562ced192563] +[seed6:3278834] [ 2] ./light(+0x188f8)[0x562ced1908f8] +[seed6:3278834] [ 3] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f87716ba083] +[seed6:3278834] [ 4] ./light(+0x19b4e)[0x562ced191b4e] +[seed6:3278834] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 3 with PID 0 on node seed6 exited on signal 11 (Segmentation fault). +-------------------------------------------------------------------------- +3d449de3d6e722c9ce4a38ec748ee3cf-sudoku-N30-10.cnf +[seed6:3279384] Read -1, expected 504098736, errno = 14 +[seed6:3279384] *** Process received signal *** +[seed6:3279384] Signal: Segmentation fault (11) +[seed6:3279384] Signal code: Address not mapped (1) +[seed6:3279384] Failing at address: 0xffffd6daffffec21 +[seed6:3279384] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7fa8bba9d420] +[seed6:3279384] [ 1] ./light(+0x1a563)[0x557e0f15f563] +[seed6:3279384] [ 2] ./light(+0x188f8)[0x557e0f15d8f8] +[seed6:3279384] [ 3] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7fa8bb8bb083] +[seed6:3279384] [ 4] ./light(+0x19b4e)[0x557e0f15eb4e] +[seed6:3279384] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 3 with PID 0 on node seed6 exited on signal 11 (Segmentation fault). +-------------------------------------------------------------------------- +3d4beaebb3d87819ce9ff59e72047ef7-sudoku-N30-20.cnf +[seed6:3279951] Read -1, expected 10120, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +3e2fe1556893706475f9dd19c1a7b8fe-mdp-32-12-sat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +3fb045f58aaf394165735c39c49fad92-linked_list_swap_contents_safety_unwind56.cnf +3fb297f59ad2dc32fd3f79d61951d8cb-Carry_Bits_Fast_4.cnf.cnf +3ff263696219ca9e301b0a1b345eb9aa-SCPC-500-4.cnf +41423c03ef173a5b81d6e6776f316fa5-PancakeVsInsertSort_7_8.cnf +4348c6b9af237291558b154a9de82969-aws-encryption-sdk-c:aws_cryptosdk_priv_hdr_parse_aad.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +43687a48fb119ca61b47c2fc69a71e7d-manthey_single-ordered-initialized-w42-b8.cnf +[seed6:3283836] Read -1, expected 10912, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +436d00b6d41912e800e9855d08c75139-manol-pipe-f7nidw.cnf +4408f3ebfc37275a23ef57cfcc8aba6d-aws-encryption-sdk-c:aws_cryptosdk_priv_hdr_parse_content_type.cnf +44ed91b4ca5a5d8323cab4c268d81fd1-grid-color-12-14-12-cb.cnf +4501f9a0e9fab5d5cff7133022b1f780-50bits_11.dimacs.cnf +4513c58c16e72a34f9f8518db7baeb9e-ktf_TF-3.tf_3_0.02_24.cnf +4551c996fc6f5fbe62b43076abb25077-knight_18.cnf +45784477d3143f470c0bd0137a1c01ed-sum_of_three_cubes_still_open.cnf +45ec40c74fdbf2fe41122ac1e31e6c8e-worker_30_120_30_0.8.cnf +[seed6:3288276] Read -1, expected 9092, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +47135a1fd4c86afbfec0c7879c45268b-SC22_Timetable_C_451_E_46_Cl_30_S_27.cnf +47a1a6f5687ed19c5c0f77c2c81f3f81-tseitin_grid_n14_m14.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +488b147304549670f31653c932684e2c-sin-mitern28.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +48e9f29a92930f1b367efc5754cb679b-af-synthesis_stb_50_80_7_sat.cnf +48eacbc152c7710dfd6fe17a8a17199e-SCPC-500-7.cnf +49f5d904bb2e762219287d33f5621971-ITC2021_Late_1.xml.cnf +4a85e090bda23cef9bf2aed55d489ab6-sin_depth_miter_5.cnf +4af0fbe3087b6e3ad54177e16b85ed06-grid-color-14-14-6-cb.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +4b45bebcc3f810b25cca2d16a1ff2084-hyp_cec_multi_3.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +4b537d3c18082eb884bf9429b8146214-gaussian.c.75.smt2-cvc4.cnf +[seed6:3293292] Read -1, expected 16284, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +4db2404ba78dda6f3bc89a2b03057fd2-intel036_Iter109.cnf +4f888358cd62fe7bc602ea6882cdfc6d-bivium-40-200-0s0-0x92fc13b11169afbb2ef11a684d9fe9a19e743cd6aa5ce23fb5-19.cnf +5099718e4b5b8fe2ba7f8b919fdfde2d-satcoin-genesis-SAT-5.cnf +[seed6:3294967] Read -1, expected 4053596, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +51dd2c14736f2d9164f749d6a633ccb5-j3045_10_mdd_bm1.cnf +51e4929accfa3a0e68bff09974c7f0f4-SAT_MS_sat_nurikabe_p16.pddl_166.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +5237a944490aeead04c7a4539e6b44d2-SC22_Timetable_C_451_E_43_Cl_30_S_27.cnf +terminate called after throwing an instance of 'std::bad_alloc' +terminate called after throwing an instance of 'std::bad_alloc' +terminate called after throwing an instance of 'std::bad_alloc' +terminate called after throwing an instance of 'std::bad_alloc' +terminate called after throwing an instance of 'terminate called after throwing an instance of 'std::bad_alloc' +terminate called after throwing an instance of 'std::bad_alloc' +std::bad_alloc' +terminate called after throwing an instance of 'std::bad_alloc' + what(): std::bad_alloc + what(): std::bad_alloc + what(): std::bad_alloc what(): std::bad_alloc what(): std::bad_alloc + what(): std::bad_alloc + what(): std::bad_alloc + + what(): std::bad_alloc + +[seed6:3296669] *** Process received signal *** +[seed6:3296653] *** Process received signal *** +[seed6:3296653] Signal: Aborted (6) +[seed6:3296653] Signal code: (-6) +[seed6:3296669] Signal: Aborted (6) +[seed6:3296669] Signal code: (-6) +[seed6:3296654] *** Process received signal *** +[seed6:3296655] *** Process received signal *** +[seed6:3296659] *** Process received signal *** +[seed6:3296659] Signal: Aborted (6) +[seed6:3296659] Signal code: (-6) +[seed6:3296654] Signal: Aborted (6) +[seed6:3296654] Signal code: (-6) +[seed6:3296654] [ 0] [seed6:3296657] *** Process received signal *** +[seed6:3296657] Signal: Aborted (6) +[seed6:3296657] Signal code: (-6) +[seed6:3296665] *** Process received signal *** +[seed6:3296665] Signal: Aborted (6) +[seed6:3296665] Signal code: (-6) +[seed6:3296655] Signal: Aborted (6) +[seed6:3296655] Signal code: (-6) +[seed6:3296655] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f8fa2bc9420] +[seed6:3296655] [ 1] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7fa2ba2f3420] +[seed6:3296654] [ 1] [seed6:3296669] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f5bbcf78420] +[seed6:3296669] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7f5bbcdb500b] +[seed6:3296669] [ 2] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7f8fa2a0600b] +[seed6:3296655] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7f8fa29e5859] +[seed6:3296655] [ 3] [seed6:3296667] *** Process received signal *** +[seed6:3296667] Signal: Aborted (6) +[seed6:3296667] Signal code: (-6) +[seed6:3296653] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f5d59122420] +[seed6:3296653] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7f5d58f5f00b] +[seed6:3296653] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7f5d58f3e859] +[seed6:3296653] [ 3] [seed6:3296659] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7efc7b53e420] +[seed6:3296659] [ 1] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7f5bbcd94859] +[seed6:3296669] [ 3] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7fa2ba13000b] +[seed6:3296654] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7fa2ba10f859] +[seed6:3296654] [ 3] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e911)[0x7fa2ba50a911] +[seed6:3296654] [ 4] [seed6:3296657] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f9a9595e420] +[seed6:3296657] [ 1] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e911)[0x7f5d59339911] +[seed6:3296653] [ 4] [seed6:3296665] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7feb3b19a420] +[seed6:3296665] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7feb3afd700b] +[seed6:3296665] [ 2] [seed6:3296667] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f5566616420] +[seed6:3296667] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7efc7b37b00b] +[seed6:3296659] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7efc7b35a859] +[seed6:3296659] [ 3] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa38c)[0x7fa2ba51638c] +[seed6:3296654] [ 5] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e911)[0x7f8fa2de0911] +[seed6:3296655] [ 4] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa38c)[0x7f8fa2dec38c] +[seed6:3296655] [ 5] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7feb3afb6859] +[seed6:3296665] [ 3] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa38c)[0x7f5d5934538c] +[seed6:3296653] [ 5] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa3f7)[0x7f5d593453f7] +[seed6:3296653] [ 6] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7f9a9579b00b] +[seed6:3296657] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7f9a9577a859] +[seed6:3296657] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7f556645300b] +[seed6:3296667] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7f5566432859] +[seed6:3296667] [ 3] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa3f7)[0x7fa2ba5163f7] +[seed6:3296654] [ 6] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa6a9)[0x7fa2ba5166a9] +/lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e911)[0x7feb3b3b1911] +[seed6:3296665] [ 4] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa3f7)[0x7f8fa2dec3f7] +[seed6:3296655] [ 6] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa6a9)[0x7f8fa2dec6a9] +[seed6:3296655] [ 7] [ 3] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e911)[0x7f5bbd18f911] +[seed6:3296669] [ 4] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e911)[0x7efc7b755911] +[seed6:3296659] [ 4] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa38c)[0x7f5bbd19b38c] +[seed6:3296669] [ 5] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa38c)[0x7efc7b76138c] +[seed6:3296659] [ 5] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e911)[0x7f556682d911] +[seed6:3296667] [ 4] [seed6:3296654] [ 7] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e522)[0x7fa2ba50a522] +[seed6:3296654] [ 8] ./light(+0x17e07)[0x558469205e07] +/lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa6a9)[0x7f5d593456a9] +[seed6:3296653] [ 7] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e522)[0x7f5d59339522] +[seed6:3296653] [ 8] ./light(+0x17e07)[0x5624adb3ce07] +[seed6:3296653] [ 9] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e522)[0x7f8fa2de0522] +[seed6:3296655] [ 8] ./light(+0x17e07)[0x5654c0200e07] +[seed6:3296655] [ 9] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa38c)[0x7feb3b3bd38c] +[seed6:3296665] [ 5] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa3f7)[0x7feb3b3bd3f7] +[seed6:3296665] [ 6] [seed6:3296654] [ 9] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7fa2ba111083] +[seed6:3296654] [10] ./light(+0x19b4e)[0x558469207b4e] +[seed6:3296654] *** End of error message *** +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f5d58f40083] +[seed6:3296653] [10] ./light(+0x19b4e)[0x5624adb3eb4e] +[seed6:3296653] *** End of error message *** +/lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e911)[0x7f9a95b75911] +[seed6:3296657] [ 4] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa38c)[0x7f9a95b8138c] +[seed6:3296657] [ 5] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa3f7)[0x7f5bbd19b3f7] +[seed6:3296669] [ 6] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa6a9)[0x7f5bbd19b6a9] +[seed6:3296669] [ 7] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f8fa29e7083] +[seed6:3296655] [10] ./light(+0x19b4e)[0x5654c0202b4e] +[seed6:3296655] *** End of error message *** +/lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa3f7)[0x7efc7b7613f7] +[seed6:3296659] [ 6] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa6a9)[0x7efc7b7616a9] +[seed6:3296659] [ 7] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa38c)[0x7f556683938c] +[seed6:3296667] [ 5] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa6a9)[0x7feb3b3bd6a9] +[seed6:3296665] [ 7] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa3f7)[0x7f55668393f7] +[seed6:3296667] [ 6] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e522)[0x7efc7b755522] +[seed6:3296659] [ 8] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e522)[0x7f5bbd18f522] +[seed6:3296669] [ 8] ./light(+0x17e07)[0x55bc83480e07] +[seed6:3296669] [ 9] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa3f7)[0x7f9a95b813f7] +[seed6:3296657] [ 6] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa6a9)[0x7f55668396a9] +[seed6:3296667] [ 7] ./light(+0x17e07)[0x55d7115f7e07] +[seed6:3296659] [ 9] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e522)[0x7feb3b3b1522] +[seed6:3296665] [ 8] ./light(+0x17e07)[0x56145a277e07] +[seed6:3296665] [ 9] /lib/x86_64-linux-gnu/libstdc++.so.6(+0xaa6a9)[0x7f9a95b816a9] +[seed6:3296657] [ 7] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f5bbcd96083] +[seed6:3296669] [10] ./light(+0x19b4e)[0x55bc83482b4e] +[seed6:3296669] *** End of error message *** +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7efc7b35c083] +[seed6:3296659] [10] ./light(+0x19b4e)[0x55d7115f9b4e] +[seed6:3296659] *** End of error message *** +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7feb3afb8083] +[seed6:3296665] [10] ./light(+0x19b4e)[0x56145a279b4e] +[seed6:3296665] *** End of error message *** +/lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e522)[0x7f556682d522] +[seed6:3296667] [ 8] ./light(+0x17e07)[0x5583a1e97e07] +[seed6:3296667] [ 9] /lib/x86_64-linux-gnu/libstdc++.so.6(+0x9e522)[0x7f9a95b75522] +[seed6:3296657] [ 8] ./light(+0x17e07)[0x55f9e34d4e07] +[seed6:3296657] [ 9] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f5566434083] +[seed6:3296667] [10] ./light(+0x19b4e)[0x5583a1e99b4e] +[seed6:3296667] *** End of error message *** +/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f9a9577c083] +[seed6:3296657] [10] ./light(+0x19b4e)[0x55f9e34d6b4e] +[seed6:3296657] *** End of error message *** +[seed6:3296652] *** An error occurred in MPI_Bcast +[seed6:3296652] *** reported by process [1281032193,0] +[seed6:3296652] *** on communicator MPI_COMM_WORLD +[seed6:3296652] *** MPI_ERR_COUNT: invalid count argument +[seed6:3296652] *** MPI_ERRORS_ARE_FATAL (processes in this communicator will now abort, +[seed6:3296652] *** and potentially your MPI job) +5457c05649be6f3bc4f743c5e6086a18-mdp-28-10-sat.cnf +[seed6:3296868] Read -1, expected 10759108, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +54d4838f065e6ca3579b357bc70ea566-div_miter_lec_4.cnf +5573681b2f40d5d8b30267ac59987e40-Carry_Bits_Fast_16.cnf.cnf +[seed6:3297956] Read -1, expected 8212, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +55add9c1c8ad002a0faa34ecf47919a1-SC22_Timetable_C_451_E_45_Cl_30_S_27.cnf +5601a7e094f61f3c5af461300c25243f-summle_X111107_steps8_I1-2-2-4-4-8-25-100.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +567964f034c8ffa65952897ce4927c6c-ablmulub16x4o.cnf +56e7489da32260e1bdd085a418592ec2-cliquecoloring_n18_k6_c5.cnf +5796ee4ac65929640e1b67ae2bfb9e8e-div_miter_lec_3.cnf +[seed6:3300728] Read -1, expected 14424, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +59047491e4828ed2bb79572330df6f77-mdp-32-16-unsat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 2 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +594b07c07aee036a7aca35d44e2316da-div-mitern168.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +59e596f5f845a2487370950b37ec3db2-aws-encryption-sdk-c:aws_cryptosdk_enc_ctx_size.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +5ac44f542fd2cd4492067deb7791629a-Carry_Bits_Fast_18.cnf.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +5c54a96de5bbfbfe9152afbc8822588d-cliquecoloring_n60_k5_c4.cnf +5c5fa629c2c62723eb2d3388db264521-Wallace_Bits_Fast_3.cnf.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +5c6495ff589cbbcb550e1655dadbd143-worker_40_80_35_0.85.cnf +5cc5e3d24402696ed4ec03edfa42d663-sudoku-N30-24.cnf +5d357f1e4b5abc96c90d305f629edd5c-ps_200_323_70.cnf +5e04f38ff11cee5d75fb98e12f6a14fc-sqrt-mitern172.cnf +5e25f9f0d4ef05401fd9ab45a2538c1c-summle_X111117_steps8_I1-2-2-4-4-8-25-100.cnf +5e66b728b2445ec69f27e0f1a49f4b29-006.cnf +5e933a625099cc1ec6a8299a7848a2ae-Kakuro-easy-112-ext.xml.hg_7.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 3 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +5f24ae73bb2a0ec3bef68d8a9680f04f-af-synthesis_stb_50_80_7_unsat.cnf +5ff92b9fa31963608674761e0d71fce8-sv-comp19_prop-reachsafety.triangular-longer_false-unreach-call.i-witness.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +608941b989227d93c62b3a9b4280011b-summle_X8639_steps8_I1-2-2-4-4-8-25-100.cnf +60a0ab2650e08f32c4fff6ff09369568-eqsparcl12bpwtrc12.cnf +61175b10026fe42cadd5e2f0088684ea-6s105_Iter99.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +622787535593269d5e9a1dc4fe01c4af-atco_enc1_opt2_10_16-sc2014.cnf +[seed6:3310692] Read -1, expected 7068, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +65138afdf7eb054be5131f2b0de84369-satch2ways12u.cnf +65514d6ff224df20ba8c1aeec1698ab6-PancakeVsInsertSort_8_7.cnf +6901858f1edbe3b1d327902dab720326-reconf20_20_grid10_4_4957.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +6965d5369d3ab26daaf074303c3d1739-mp1-squ_ali_s10x10_c39_abix_SAT.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +6a3e3d3a65a46608b44d81f9e4621087-6s105_Iter35.cnf +6b0dfcfa8cf0c0564f17ec0a5434b5b9-ITC2021_Early_4.xml.cnf +[seed6:3314013] Read -1, expected 10860, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +6b630aa05142274d965c8fc019db511e-bmc_QICE_rxrsp_vld_30.cnf +[seed6:3314566] Read -1, expected 3621040, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +6b7e3415d7bd20be605b1f9723c43d68-Carry_Bits_Fast_5.cnf.cnf +[seed6:3315125] Read -1, expected 34908, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +6c34b7032712e16b08d97a0449d610e2-puzzle30_sat.cnf +6d815089fb4095208754622b4c44a8f7-Carry_Bits_Fast_12.cnf.cnf +6dd57612dab7692b8c38225bb852ce36-hwmcc15deep-6s516r-k18-sc2017.cnf +6e1b970d637fca70d08b251766edade3-Nb8T61.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +6e3015f2ce1f17e4f2b81dae06d73eec-gus-md5-11.cnf +6e3ba15d8b33f40738f7e7d7355799a5-SC22_Timetable_C_436_E_41_Cl_29_S_27.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 2 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +6f956a3f95ccaf35a3de1fe72b9cf79e-soelberg_unit_109.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +6fa8b4b7f4b059bd46913dbe741c0b94-mdp-36-11-sat.cnf +6fb0757ee018642fedd0669aad3882fe-grid-color-12-14-10-cb.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +7016d1da3fdfe543de3b95f96a9ffe4c-summle_X8651_steps8_I1-2-2-4-4-8-25-100.cnf +7018eff980d8183192d7a309e508b320-grid-color-14-14-10-cb.cnf +70289686a242c8380ca26bda45ad1278-summle_X111104_steps6_I1-2-2-4-4-8-25-100.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +7101289c67f4c4ba117ad06ebb7d18a0-6s184.cnf +72329bc80f5f55dcc356a22f3f11ebec-GP_200_313_5.cnf +73ef1e87dbb7965ecb558e62dedb3a0c-SCPC-500-8.cnf +7703f7d1901ff09a0f177c52a1a7c107-linked_list_swap_contents_safety_unwind43.cnf +78a0e76b68b536e2ea7d801fc6061cd2-grid-color-12-14-14-cb.cnf +78cdffdf5bbb89beb753f9ffab7fa45f-sudoku-N30-6.cnf +7993005e2949524b293b216ed9c65126-cfi-rigid-s2-0064-03-or_2_shuffle_all.cnf +7a236bb9e1566b80fa7b593a7e973efa-SCPC-500-16.cnf +[seed6:3326145] Read -1, expected 463099292, errno = 14 +[seed6:3326145] *** Process received signal *** +[seed6:3326145] Signal: Segmentation fault (11) +[seed6:3326145] Signal code: Address not mapped (1) +[seed6:3326145] Failing at address: 0xfeb00001645 +[seed6:3326145] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f7fcc021420] +[seed6:3326145] [ 1] ./light(+0x1a563)[0x55a8b594d563] +[seed6:3326145] [ 2] ./light(+0x188f8)[0x55a8b594b8f8] +[seed6:3326145] [ 3] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f7fcbe3f083] +[seed6:3326145] [ 4] ./light(+0x19b4e)[0x55a8b594cb4e] +[seed6:3326145] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 3 with PID 0 on node seed6 exited on signal 11 (Segmentation fault). +-------------------------------------------------------------------------- +7a67847b81b414d659f005200cf56f6b-size_5_5_5_i198_r12.cnf +7ab6615515ffc5ceb8f6bd440d159c3d-pj2016_k80.cnf +7acf6cf25ddaf2ab98106e0bb3b9ddb1-af-synthesis_stb_50_140_3_sat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +7adc1ade3384505af00ff8f7be23f5bd-ex175_20.cnf +7af73f846548141cc97b8a149a20bfbf-vlsat2_57038_10572502.dimacs.cnf +7b933d3e6b425772ed19eb0fec52bbf9-j3037_1_rggt_b.cnf +7c15baa29f2228703e5161bfabd91773-reconf10_140_queen6_1.cnf +7c6a06895899eab7cb83b658898ac327-reconf10_145_queen6_2.cnf +7d2199baf2526263b5f753d290d2790b-md4__zeroOut_19__freeIn_23__seed_2.cnf +7d9025b2f7e76f783a4ae5e8c9bf8e5c-4d_euler_bricks.cnf +7e5396d6b00b82c2fc0ea1d7c6505afd-manthey_single-ordered-initialized-w50-b7.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +7e9318578a6bdd7dfa9fc261be8a0839-PancakeVsSelectionSort_7_7.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +7edaa759315f3762eee756c5bb843599-SC22_Timetable_C_436_E_42_Cl_29_S_27.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +7efdf72de31fa82aeceb7acbc29a59bf-vlsat2_113_1150.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +7f09f477d319cd79821c80504aa06a6e-Break_16_56.xml.cnf +7f4d55b70c61ffc611a58e01d52c19bb-SCPC-500-11.cnf +7fe153ced2c966dcdeb42b6714b4d6b7-sudoku-N30-11.cnf +7ff8c9781b3ada449ce489cdf444a760-Break_unsat_10_15.xml.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +80023e9fd0e627f71c2d953432613b5f-hyp_cec_multi_4.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +807133f4461a11e39a390dfcf67a4fc6-summle_X11113_steps8_I1-2-2-4-4-8-25-100.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +810ce4a78bc01ddc5a043d95f9584f2f-005-80-12.cnf +81b674a2aa6fbda9b06cf8ea334ddc44-beempgsol2b1.cnf +81e73c41a76d7b432cf86c43ffe23986-PancakeVsInsertSort_8_6.cnf +85aa1f0820da17412b8ee803b4a85207-sudoku-N30-4.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +885c0d25480fe4db3cd5d3b4bc044e76-SCPC-500-17.cnf +[seed6:3340444] Read -1, expected 7124, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +889b6d29998ade866e64c46f807a98bc-6s320rb1_Iter9.cnf +88bfa72210baef40a2903d95044dc19d-linked_list_swap_contents_safety_unwind40.cnf +8aee61ed27bf700a548ca9c097203749-SAT_MS_sat_snake_p01.pddl_39.cnf +8bb5819a23a8f1dff851d608bec008ca-ITC2021_Late_6.xml.cnf +[seed6:3342654] Read -1, expected 12824, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +8bfbffbfea9e5a5993bc024f39adff84-worker_40_80_40_0.85.cnf +8c0af30cc2a89e3fee97852633bed956-div_miter_lec_1.cnf +8c8b72ac19c0f93813b614a18abaf512-aws-encryption-sdk-c:aws_cryptosdk_keyring_trace_eq.cnf +[seed6:3343799] Read -1, expected 8020, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +8e659f42dd85a193fccc9cbbcc4627ed-sum_of_three_cubes_3_unknown_representation.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 2 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +8efdd60faa21ddcace492bff0479408b-Break_triple_20_54.xml.cnf +[seed6:3344944] Read -1, expected 112364, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +8f3d4a4fedf4689ae0e6df362478d551-PancakeVsSelectionSort_7_6.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +90add18e4ee4facb4f37737a9a2602cc-SC22_Timetable_C_436_E_40_Cl_29_S_27.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +90e839c4b05d4a7ac011435921551060-SC22_Timetable_C_436_E_43_Cl_29_S_27.cnf +[seed6:3346627] Read -1, expected 4660, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +90ec6ff35305fed1d9a87a3ecd87238b-linked_list_swap_contents_safety_unwind48.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +918ca8da0cbca88dcd34b0a6dec2b770-GP_100_950_32.cnf +920bbe559da4ea37fd636605316a791c-SCPC-500-19.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +925c82e25f5391fc2f1f7a4a9e093cec-6s186_Iter99.cnf +928436a6e8edbcde2d82504a85c88853-rphp_p90_r90.cnf +[seed6:3349239] Read -1, expected 9500, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +93695f689b57cdb57c9b6d0d726e0f53-Break_triple_18_48.xml.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +95c00d0ae51d5d0a2a931ce82b77701f-af-synthesis_stb_50_140_0_sat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +96f6aab24720f070a02e637f7252b482-grid-color-12-14-8-cb.cnf +98dbd257808e551fd26cad78ba520955-ITC2021_Late_2.xml.cnf +9954ccd77da65ad003b73bf38de3bd78-4d_perfect_euler_bricks.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +9cdf94203777c9f036f412bef1cc7c85-tseitin_n196_d3.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +9cea216ba8c5051e489af11150504ba6-Break_20_36.xml.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +9e35558ea8ffba630cd8c8f90e14af14-string_compare_safety_cbmc_unwinding_730.cnf +[seed6:3353692] Read -1, expected 16864, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +9f7ec7ef3a908c2e93b5553670a207b1-rphp_p14_r14.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +9f901378a6feabcc94019a018a70d42b-sin-mitern29.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +a09b0e7764666af044fa7e63dd7e7aef-PancakeVsSelectionSort_8_3.cnf +a0e98fd44b74e6f255ca1e5a20bc01fd-cfi-rigid-d3-0180-02-orig.cnf +a1158a2d8c8a1c6da02c2c4fcb32337f-6s158_Iter2.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +a130a3f95891daed1bfd71c77bd2d8a1-SAT_dat.k80.cnf +a2609893b71f219f4635d33ef1ff6eca-j3045_4_gmto_bm1.cnf +a2bdae1f9d9695e8cf80cfbbd5f7d61f-PancakeVsSelectionSort_8_4.cnf +[seed6:3358054] Read -1, expected 9272, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +a33d32bb816c0da62c7d946c18286a0d-SCPC-500-2.cnf +[seed6:3358625] Read -1, expected 19625504, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +a42230be4432b010789b6f97b090343c-soelberg_unit_223.cnf +a4451734e7f5f2ce7b481688a693c4e9-worker_20_20_16_0.9.cnf +[seed6:3359722] Read -1, expected 2166868, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +a44fce1796383ea31df08af3b0f65db3-soelberg_unit_159.cnf +a4bffff28417d6b4d72f7b9122988ba5-reconf10_68_queen15_2.cnf +[seed6:3360326] Read -1, expected 5976, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +a58badecf3c901594f06d021f54c3a11-aws-c-common:aws_priority_queue_s_sift_either.cnf +a5e0082efb1da4dabaa165c2bda5f85e-linked_list_swap_contents_safety_unwind41.cnf +a65dfd8b3468d202ff3ba8731018622e-j3037_10_gmto_bm1.cnf +a7aac5c83f236fd8b3de3275e3f5499d-edit_distance041_183.cnf +a7b23445c21b27eb3c918c1e96ba25df-hyp_cec_multi_1.cnf +a7cb2567e1f5b7ec2f4ba09931e29b96-s2n:s2n_stuffer_write_base64.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +aa4638ca3654f1a300c809125a3133ee-6s22_Iter57.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 2 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +aad5bbe8920c5afc84068bb1da27ee8f-LABS_n041_goal003.cnf +ab660e179140ea816eca23098fd50078-sum_of_three_cubes_33_unknown_representation.cnf +ac6256657058fe65dc7ddaf773ab83bf-SC21_Timetable_C_527_E_71_Cl_35_S_35.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +ae5f6e83a289d226a353efd95b663717-6s22_Iter99.cnf +af63ce577d1fea121ba80b4b1d148f0c-sudoku-N30-22.cnf +[seed6:3366904] Read -1, expected 16091312, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +af834fd3ce15078d2ab055c996758c00-sum_of_three_cubes_33_known_representation.cnf +b043968ec004b4ac19eb31926c24d22c-mdp-36-11-unsat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +b1c44904cf06682f973b60c8282f45e8-mp1-squ_ali_s10x10_c39_bail_SAT.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +b24684abee2e253a4aee233eed155a5b-GP_100_948_34.cnf +b29cb3449d70126d186e1f6a4fccc419-pj2015_k9.cnf +[seed6:3369674] Read -1, expected 60604, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +b2bcdd97e7d0ca8858b412eb34b26ba9-hyp_cec_multi_5.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +b344f80cef9889d952c76736d0ad92d9-9dlx_vliw_at_b_iq6.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +b3828c92f2c77f8d7581570685679d76-sin_depth_miter_8.cnf +b3cf73d0383f781adf09a2192fa03a15-string_compare_safety_cbmc_unwinding_670.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +b51583e32432c5778c7e3e996c3bfeba-sqrt_ineq_3.c.cnf +[seed6:3372434] Read -1, expected 9688, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +b88d206fb35ef87bd7ec5d4a1430ae0c-20-100-p100-55_sat.cnf +b8d10f8c82a85c03c000fbd005e5a838-worker_50_150_40_0.85.cnf +b8e3b884886922343f5cb72d92c24b97-frb75-13-2.used-as.sat04-878.cnf +b8f9b018d16835c564dcd8395118c79f-aws-encryption-sdk-c:aws_cryptosdk_priv_hdr_parse_alg_id.cnf +b913c17d26ac9f3ad15fa83dc98960c7-sudoku-N30-27.cnf +[seed6:3374668] Read -1, expected 15032, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +b96071f89fa1b1670b8375010b1dd42b-SCPC-500-9.cnf +b962abe508e5a677dbce14056111b48b-j3037_1_rggt_bm1.cnf +ba8621490e4e7212fffdb55fb6bd282d-combined-crypto1-wff-seed-108-wffvars-500-cryptocplx-31-overlap-2.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +bb0613595001749a0ada02f2da85bc89-PancakeVsInsertSort_7_7.cnf +bb80971144a5423532aea9424dade891-div-mitern174.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +bc16508e3f279bec0a072b939bbe6440-af-synthesis_stb_50_40_2_sat.cnf +bcb2104a3558d87ac3b2107c10d54648-mp1-blockpuzzle_5x12_s6_free3.cnf +bd5bc8b7711b75f3cd3ad935bf000659-af-synthesis_stb_50_20_8_unsat.cnf +be2b20414899ed839ac14bf8b9365692-pj2016_k140.cnf +[seed6:3379615] Read -1, expected 7638260, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c0d927c372e355081aa1f537cc910843-GP_100_948_32.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c0df94532b1ca8a705d3af05378f377d-SCPC-500-20.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c1b30b4e03c3024ad9d084e29e79aa46-BubbleVsPancakeSort_6_6.cnf +c1cb62f85f0c6a29c5d3c47d25fbc24a-Carry_Bits_Fast_23.cnf.cnf +c221c5dc006de79e561124dab52aae82-mdp-28-12-unsat.cnf +c23aed727ae2d9cbb888d771991995aa-tseitin_grid_n16_m16.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c2596b3f0d779d532a667962b1e54b42-pj2008_k300.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +[seed6:3383451] Read -1, expected 30948, errno = 3 +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c2828483a78420f9a90e3ed9728c06cc-GP_100_951_37.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c2894b8d82492f03bb73bbc65896c016-aws-c-common:aws_priority_queue_s_remove_node.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c2f827691e524e272d21de55b3749877-GP_100_951_35.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c33dc89922f1ddea4e7eeddafe4143b3-reconf20_20_grid10_1_6141.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c3b4a96d92da617218449abad4334d6d-div-mitern164.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c3de1f05d136b8ec420732ca829f3217-corePKCS11:C_CreateObject.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +c5be40965caf3abdba3994ff3d1f32b6-grid-color-12-14-4-cb.cnf +c846dfb21b50596aef8fbe5591d75eb0-UNSAT_MS_opt_snake_p20.pddl_29.cnf +c98459d6a1763d809729e276b9c4cbbd-linked_list_swap_contents_safety_unwind74.cnf +c9886f58320a360adbc8db9470563bea-ctl_4291_567_12_unsat.cnf +ca6db14aaa04027d2b8af47ec910bd68-cfi-rigid-s2-0064-04-or_2.cnf +cac1c09f968ef8654c499156d1292385-SCPC-500-18.cnf +[seed6:3389862] Read -1, expected 762731548, errno = 14 +[seed6:3389862] *** Process received signal *** +[seed6:3389862] Signal: Segmentation fault (11) +[seed6:3389862] Signal code: Address not mapped (1) +[seed6:3389862] Failing at address: 0x172800001737 +[seed6:3389862] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f8e3aec4420] +[seed6:3389862] [ 1] ./light(+0x1a563)[0x5559aa32d563] +[seed6:3389862] [ 2] ./light(+0x188f8)[0x5559aa32b8f8] +[seed6:3389862] [ 3] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f8e3ace2083] +[seed6:3389862] [ 4] ./light(+0x19b4e)[0x5559aa32cb4e] +[seed6:3389862] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 3 with PID 0 on node seed6 exited on signal 11 (Segmentation fault). +-------------------------------------------------------------------------- +cb3c725fd30d50c6785b907054194260-worker_40_40_30_0.9.cnf +cb8f9ffb66d9b5ef663e6759be0b5e4e-q_query_3_L200_coli.sat.cnf +cbd7e28e510e658abbbe312bdffc6407-worker_50_50_50_0.85.cnf +ccb55d1b802617fcb969e12859d66124-g2-mizh-md5-48-2.cnf +cd1585619fea2f2634525a3663873764-linked_list_swap_contents_safety_unwind55.cnf +cd361d33986dccd7f2d86016d6c35241-ecarev-110-4099-22-30-7.cnf +cd36b290c27ed9bafedfb2ca88469f01-mdp-28-12-sat.cnf +cd72a64e1b857fd30b9ec831cf462bf1-mp1-21.7.cnf +cd7c8f8aa9901293a9bc31839eafcc40-reconf10_42_queen20_4_0961.cnf +cda0871abcaa41bb403207731bd24fe5-af-synthesis_stb_50_100_4_unsat.cnf +cdcdc78497a72d622493b1bac4f0f28b-reconf20_26_3-FullIns_4_1.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +ce32731c73701c2ac2bed5341b6ae3ca-mp1-9_27.cnf +ce4345ce697134021029c2686d5eb04c-Carry_Save_Fast_3.cnf.cnf +cf194dbcba619ea53edb4170c056ac5b-grid-color-14-14-14-cb.cnf +cfa14a7015b0f7fecd98e898f3c95896-velev-vliw-sat-4.0-b8.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d065d395159d19735706e0b5cb823f17-af-synthesis_stb_50_20_8_sat.cnf +d0ee45ac97c6b5cc63a528f46a5797aa-linked_list_swap_contents_safety_unwind44.cnf +d1a4dc04e54d4fa58dfbbf61bd2415b4-SC22_Timetable_C_451_E_50_Cl_30_S_28.cnf +d1dbf88a58406c931fd696267ed8159e-s2n:s2n_stuffer_private_key_from_pem.cnf +d1f5c3af78f13f39595288976115d7d3-3d_perfect_euler_bricks.cnf +d21199e73859ca35386912c5c475d6c7-tseitin_n192_d3.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d32a1553afeebf44835370c9567b3598-cfi-rigid-t2-0048-01-or_3_shuffle_all.cnf +corrupted double-linked list +[seed6:3400984] *** Process received signal *** +[seed6:3400984] Signal: Aborted (6) +[seed6:3400984] Signal code: (-6) +[seed6:3400984] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7fa6e2cbb420] +[seed6:3400984] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7fa6e2af800b] +[seed6:3400984] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7fa6e2ad7859] +[seed6:3400984] [ 3] /lib/x86_64-linux-gnu/libc.so.6(+0x8d26e)[0x7fa6e2b4226e] +[seed6:3400984] [ 4] /lib/x86_64-linux-gnu/libc.so.6(+0x952fc)[0x7fa6e2b4a2fc] +[seed6:3400984] [ 5] /lib/x86_64-linux-gnu/libc.so.6(+0x9594c)[0x7fa6e2b4a94c] +[seed6:3400984] [ 6] /lib/x86_64-linux-gnu/libc.so.6(+0x96a49)[0x7fa6e2b4ba49] +[seed6:3400984] [ 7] ./light(+0x837a7)[0x5573dbc197a7] +[seed6:3400984] [ 8] /lib64/ld-linux-x86-64.so.2(+0x11f6b)[0x7fa6e3036f6b] +[seed6:3400984] [ 9] /lib/x86_64-linux-gnu/libc.so.6(+0x468a7)[0x7fa6e2afb8a7] +[seed6:3400984] [10] /lib/x86_64-linux-gnu/libc.so.6(on_exit+0x0)[0x7fa6e2afba60] +[seed6:3400984] [11] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfa)[0x7fa6e2ad908a] +[seed6:3400984] [12] ./light(+0x19b4e)[0x5573dbbafb4e] +[seed6:3400984] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 0 with PID 0 on node seed6 exited on signal 6 (Aborted). +-------------------------------------------------------------------------- +d3c07914f3ebb42906b986aa431243af-summle_X8646_steps8_I1-2-2-4-4-8-25-100.cnf +d3c22bb79a638adc35682226f35e3bc4-pj2003_k9.cnf +d40af7b45bba9c64033c0dd47b07f4a4-mdp-36-16-sat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d518d21a9d851741940749cb59f558af-rphp_p6_r28.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d60f78323b957025e55ca528d641b83b-SC22_Timetable_C_451_E_48_Cl_30_S_27.cnf +[seed6:3403249] Read -1, expected 71372, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d6947217ad779e1175c716cca42525c6-summle_X111113_steps7_I1-2-2-4-4-8-25-100.cnf +d6c845a5f92ebc059b3f0ab2f6d395ed-cfi-rigid-z2-0088-02-or_2_shuffle_all.cnf +d702aa8568706efda8308ef8d24f907b-div-mitern167.cnf +[seed6:3404902] Read -1, expected 429557896, errno = 14 +[seed6:3404902] *** Process received signal *** +[seed6:3404902] Signal: Segmentation fault (11) +[seed6:3404902] Signal code: Address not mapped (1) +[seed6:3404902] Failing at address: 0xffffdfbdffffe872 +[seed6:3404902] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f12ed912420] +[seed6:3404902] [ 1] ./light(+0x1a563)[0x561066ecc563] +[seed6:3404902] [ 2] ./light(+0x188f8)[0x561066eca8f8] +[seed6:3404902] [ 3] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f12ed730083] +[seed6:3404902] [ 4] ./light(+0x19b4e)[0x561066ecbb4e] +[seed6:3404902] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 2 with PID 0 on node seed6 exited on signal 11 (Segmentation fault). +-------------------------------------------------------------------------- +d7039acbd2f060fe1e32a273b07c2c77-sudoku-N30-29.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d78819115db81dee343d7777fbc5844f-cfi-rigid-s2-0064-02-or_2.cnf +[seed6:3406021] Read -1, expected 4644, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d79e09d2a1639a01528c0703df4d4946-pj2008_k400.cnf +[seed6:3406570] Read -1, expected 495871724, errno = 14 +[seed6:3406570] *** Process received signal *** +[seed6:3406570] Signal: Segmentation fault (11) +[seed6:3406570] Signal code: Address not mapped (1) +[seed6:3406570] Failing at address: 0x18dd0000188f +[seed6:3406570] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7ff2b398d420] +[seed6:3406570] [ 1] /lib/x86_64-linux-gnu/libc.so.6(cfree+0x20)[0x7ff2b38216f0] +[seed6:3406570] [ 2] /lib/x86_64-linux-gnu/libc.so.6(+0x468a7)[0x7ff2b37cd8a7] +[seed6:3406570] [ 3] /lib/x86_64-linux-gnu/libc.so.6(on_exit+0x0)[0x7ff2b37cda60] +[seed6:3406570] [ 4] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfa)[0x7ff2b37ab08a] +[seed6:3406570] [ 5] ./light(+0x19b4e)[0x559d5253cb4e] +[seed6:3406570] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 3 with PID 0 on node seed6 exited on signal 11 (Segmentation fault). +-------------------------------------------------------------------------- +d7f273dc6e97efe55c8b7f9cc547eb2d-sin_depth_miter_1.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d8602e623f87dd33f4a1a69ee42d15be-reconf20_50_grid10_3_6844.cnf +[seed6:3407500] Read -1, expected 11400, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +d87714e099c66f0034fb95727fa47ccc-Wallace_Bits_Fast_2.cnf.cnf +d892eb7b3b3a44192ee639e222eee058-reconf10_99_Ins_3_1.cnf +d8bb23406e76bf5a4b7a6edba8784a74-Lab-Project-FreeRTOS-Cellular-Library:Cellular_ATRemoveTrailingWhiteSpaces.cnf +d90c519010bfda89d1626c0321a55a64-j3045_10_gmto_bm1.cnf +d9e9100c382d44fb67af82f8d69814f1-cfi-rigid-t2-0048-03-or_3_shuffle_all.cnf +[seed6:3410276] Read -1, expected 14944368, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +dcac26e190c906c61ac7222d6d4628c7-grid-color-14-14-12-cb.cnf +dd0196aee30d0a83b6fe8bc7eba01806-aws-encryption-sdk-c:aws_cryptosdk_priv_hdr_parse_iv.cnf +ddc7ca4c5dcb102a3ecc63721498f746-SC22_Timetable_C_436_E_39_Cl_29_S_27.cnf +ddcb0cd9b7bca43c3a5189326ae88aab-linked_list_swap_contents_safety_unwind71.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +e011c703e4a2ff46069ec2af2997b580-sin_depth_miter_6.cnf +e01c39b7b41c9ff1621579b747254fab-ncc_none_3001_7_3_3_1_31_435991723.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +e02e21075d3bb8b0e64ea9b8122c75ff-PancakeVsInsertSort_6_7.cnf +e0b938c32e36e2939d712dd4024f9ec6-j3037_9_mdd_b.cnf +e28cf003c086c99f3a3d9a90aebf8ed1-intel046_Iter124.cnf +e4128445a07bb86afca1f3590d9adfa9-worker_80_80_80_0.8.cnf +e436f6303d3f499969eafe05b0914a4b-bmc_QICE_snp_vld_50.cnf +e47567e16e4aeb4d8f3806dfbfdfd646-sudoku-N30-8.cnf +corrupted double-linked list +[seed6:3416381] *** Process received signal *** +[seed6:3416381] Signal: Aborted (6) +[seed6:3416381] Signal code: (-6) +[seed6:3416381] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7fae26039420] +[seed6:3416381] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7fae25e7600b] +[seed6:3416381] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7fae25e55859] +[seed6:3416381] [ 3] /lib/x86_64-linux-gnu/libc.so.6(+0x8d26e)[0x7fae25ec026e] +[seed6:3416381] [ 4] /lib/x86_64-linux-gnu/libc.so.6(+0x952fc)[0x7fae25ec82fc] +[seed6:3416381] [ 5] /lib/x86_64-linux-gnu/libc.so.6(+0x9594c)[0x7fae25ec894c] +[seed6:3416381] [ 6] /lib/x86_64-linux-gnu/libc.so.6(+0x95a7c)[0x7fae25ec8a7c] +[seed6:3416381] [ 7] /lib/x86_64-linux-gnu/libc.so.6(+0x96fe0)[0x7fae25ec9fe0] +[seed6:3416381] [ 8] ./light(+0x83794)[0x55c4d912c794] +[seed6:3416381] [ 9] /lib64/ld-linux-x86-64.so.2(+0x11f6b)[0x7fae263b8f6b] +[seed6:3416381] [10] /lib/x86_64-linux-gnu/libc.so.6(+0x468a7)[0x7fae25e798a7] +[seed6:3416381] [11] /lib/x86_64-linux-gnu/libc.so.6(on_exit+0x0)[0x7fae25e79a60] +[seed6:3416381] [12] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfa)[0x7fae25e5708a] +[seed6:3416381] [13] ./light(+0x19b4e)[0x55c4d90c2b4e] +[seed6:3416381] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 0 with PID 0 on node seed6 exited on signal 6 (Aborted). +-------------------------------------------------------------------------- +e4f345877ba5fa2b8fb26be06a123748-rphp_p105_r105.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +[seed6:3416424] Read -1, expected 9064, errno = 3 +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +e55a49d8065d65650f24c0f3ecef30b6-af-synthesis_stb_50_120_4_unsat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +e5f5dbace0183455d167a88100312c34-Nb52T6.cnf +e6f793931983295561620a027d9b3e95-mdp-36-14-unsat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +e7c0d40392681b1a55d5d3c826a26766-reconf20_116_le450_25c_1.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +e7cd2c407974b35fa97f8e64a691bfa0-j3037_10_gmto_b.cnf +e85b6cb3e2751d5c80559433ba1adf06-vlsat2_24450_2770239.dimacs.cnf +e8d9e3a985463b8e4f45b6e09b77bf6c-cfi-rigid-t2-0048-02-or_3_shuffle_all.cnf +e97ebde59cb17ef6f7c4430224b21ed1-grid-color-14-14-8-cb.cnf +e992a45933d191dc4fbe8cc4836109f8-sum_of_three_cubes_165_known_representation.cnf +e99ce61fe251b404ec85f6246fd4bb19-Wallace_Bits_Fast_7.cnf.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +e9b4369f9a98e397ac69eb7740ffef49-Carry_Save_Fast_2.cnf.cnf +ea8a79747c7ab142a897b7e8e638245f-j3045_4_mdd_b.cnf +eb659cd21250abdc8c9cec49073c32c6-linked_list_swap_contents_safety_unwind59.cnf +eb8a25e0db5d0605e3e15670f7a07f27-grid-color-14-14-2-cb.cnf +ed410c758e5025f1bb97922574d1c2ff-reconf10_86_sp003_1.cnf +ed6920e7126f57daabfb85415607fdb5-sum_of_three_cubes_906_unknown_representation.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +ee06244cc0ed073bd6abf147dc27eff6-pj2016_k120.cnf +[seed6:3425835] Read -1, expected 10588, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +eede03732955f620b5291f9dcf9f95df-tseitin_n200_d3.cnf +[seed6:3426401] Read -1, expected 5300848, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +efc1b836380d0f84e7512f7b2ccdbb60-PancakeVsInsertSort_8_5.cnf +corrupted double-linked list +[seed6:3426944] *** Process received signal *** +[seed6:3426944] Signal: Aborted (6) +[seed6:3426944] Signal code: (-6) +[seed6:3426944] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f4b7bb5c420] +[seed6:3426944] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7f4b7b99900b] +[seed6:3426944] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7f4b7b978859] +[seed6:3426944] [ 3] /lib/x86_64-linux-gnu/libc.so.6(+0x8d26e)[0x7f4b7b9e326e] +[seed6:3426944] [ 4] /lib/x86_64-linux-gnu/libc.so.6(+0x952fc)[0x7f4b7b9eb2fc] +[seed6:3426944] [ 5] /lib/x86_64-linux-gnu/libc.so.6(+0x9594c)[0x7f4b7b9eb94c] +[seed6:3426944] [ 6] /lib/x86_64-linux-gnu/libc.so.6(+0x96a49)[0x7f4b7b9eca49] +[seed6:3426944] [ 7] ./light(+0x837a7)[0x560a7e4937a7] +[seed6:3426944] [ 8] /lib64/ld-linux-x86-64.so.2(+0x11f6b)[0x7f4b7bed7f6b] +[seed6:3426944] [ 9] /lib/x86_64-linux-gnu/libc.so.6(+0x468a7)[0x7f4b7b99c8a7] +[seed6:3426944] [10] /lib/x86_64-linux-gnu/libc.so.6(on_exit+0x0)[0x7f4b7b99ca60] +[seed6:3426944] [11] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfa)[0x7f4b7b97a08a] +[seed6:3426944] [12] ./light(+0x19b4e)[0x560a7e429b4e] +[seed6:3426944] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 0 with PID 0 on node seed6 exited on signal 6 (Aborted). +-------------------------------------------------------------------------- +f0f279c7d5043e783f73237cf6bddf33-Break_triple_20_72.xml.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +f1afd5e8d4b842c15c6a2c420b2b2dba-pj2018_k10.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +f1b3d254596523910f3af07fc1942e64-Break_unsat_12_19.xml.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 6 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +f2a73aa514c859c91db462e1e2a1315b-af-synthesis_stb_50_140_1_sat.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +f5f1d6a47ed7449a18d872a3f93d8aa5-GP_120_400_15.cnf +f64806fd4fe79f1efaefa7ce68d93ee1-sin_depth_miter_4.cnf +f8a966a2ba189ad5fa45f870f3c5e200-sudoku-N30-7.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 4 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +f8ad493b11bf0692c1f3919642cebdb1-PancakeVsInsertSort_9_3.cnf +[seed6:3430875] Read -1, expected 6912, errno = 3 +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +f8b7241f662ab4d36337b74bb7984122-summle_X111119_steps7_I1-2-2-4-4-8-25-100.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 3 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +f9dd957b2f5940a3e3adaa2eeaaba011-mdp-36-12-sat.cnf +fa88b447f6b41b04686085480678affe-UNSAT_H_instances_childsnack_p12.hddl_1.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +fb5cf4ad3c46dd294eb8253218524ba6-cfi-rigid-r2-0072-01-or_3.cnf +free(): double free detected in tcache 2 +[seed6:3433090] *** Process received signal *** +[seed6:3433090] Signal: Aborted (6) +[seed6:3433090] Signal code: (-6) +[seed6:3433090] [ 0] /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f36d6d79420] +[seed6:3433090] [ 1] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0xcb)[0x7f36d6bb600b] +[seed6:3433090] [ 2] /lib/x86_64-linux-gnu/libc.so.6(abort+0x12b)[0x7f36d6b95859] +[seed6:3433090] [ 3] /lib/x86_64-linux-gnu/libc.so.6(+0x8d26e)[0x7f36d6c0026e] +[seed6:3433090] [ 4] /lib/x86_64-linux-gnu/libc.so.6(+0x952fc)[0x7f36d6c082fc] +[seed6:3433090] [ 5] /lib/x86_64-linux-gnu/libc.so.6(+0x96f6d)[0x7f36d6c09f6d] +[seed6:3433090] [ 6] /lib/x86_64-linux-gnu/libopen-pal.so.40(+0x53426)[0x7f36d6919426] +[seed6:3433090] [ 7] /lib/x86_64-linux-gnu/libopen-pal.so.40(mca_base_var_group_finalize+0xa9)[0x7f36d6919979] +[seed6:3433090] [ 8] /lib/x86_64-linux-gnu/libopen-pal.so.40(mca_base_var_finalize+0x3e4)[0x7f36d69149c4] +[seed6:3433090] [ 9] /lib/x86_64-linux-gnu/libopen-pal.so.40(opal_finalize_util+0x52)[0x7f36d68ef0b2] +[seed6:3433090] [10] /lib/x86_64-linux-gnu/libmpi.so.40(ompi_mpi_finalize+0x95c)[0x7f36d6a7d4cc] +[seed6:3433090] [11] ./light(+0x17d15)[0x564a24b98d15] +[seed6:3433090] [12] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f36d6b97083] +[seed6:3433090] [13] ./light(+0x19b4e)[0x564a24b9ab4e] +[seed6:3433090] *** End of error message *** +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 0 with PID 0 on node seed6 exited on signal 6 (Aborted). +-------------------------------------------------------------------------- +fbf3b9f8a03a1efedae3da04622fe96e-sqrt-mitern168.cnf +fca7a5a04aaed5f0eacccc4139dc894a-satcoin-genesis-SAT-8192.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +fdfd5975c57d7cd2264ef6aff6cb4815-SE_PR_stb_588_138.apx_1.cnf +fe800e62b55609cb152965c223e72280-div-mitern171.cnf +fe96b630b3e761821308b544368dd521-GP_100_950_34.cnf +fec4ba2cf2416933dcf7b8153be97344-bz-X-4-7-6.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 7 with PID 0 on node seed6 exited on signal 9 (Killed). +-------------------------------------------------------------------------- +fee70cede2b5b55bfbdb6e48fbe7ce4f-DLTM_twitter690_74_16.cnf +ff3be72b9f5f44036875aa48f5434456-worker_20_60_20_0.9.cnf +fff3f8c76467cdf9d92689969fd94281-mod2c-rand3bip-sat-240-2.shuffled-as.sat05-2519.cnf +-------------------------------------------------------------------------- +Primary job terminated normally, but 1 process returned +a non-zero exit code. Per user-direction, the job has been aborted. +-------------------------------------------------------------------------- +-------------------------------------------------------------------------- +mpirun noticed that process rank 5 with PID 0 on node seed6 exited on signal 9 (Killed). +--------------------------------------------------------------------------