Trace number 4393763

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
choco-solver 2019-06-14 parallelOPT20 6.05907 1.31974

General information on the benchmark

NameStillLife/StillLife-m1-s1/
StillLife-04-09.xml
MD5SUMe25e9e3192808473b45d33bf4350e517
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark20
Best CPU time to get the best result obtained on this benchmark1.82915
Satisfiable
(Un)Satisfiability was proved
Number of variables72
Number of constraints90
Number of domains2
Minimum domain size2
Maximum domain size9
Distribution of domain sizes[{"size":2,"count":36},{"size":9,"count":36}]
Minimum variable degree2
Maximum variable degree10
Distribution of variable degrees[{"degree":2,"count":36},{"degree":7,"count":4},{"degree":8,"count":18},{"degree":10,"count":14}]
Minimum constraint arity2
Maximum constraint arity9
Distribution of constraint arities[{"arity":2,"count":36},{"arity":3,"count":18},{"arity":4,"count":4},{"arity":6,"count":18},{"arity":9,"count":14}]
Number of extensional constraints54
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":54},{"type":"sum","count":36}]
Optimization problemYES
Type of objectivemax SUM

Quality of the solution as a function of time


Download the above graph as a PDF file / as an EPS file

Solver Data

0.00/0.00	c java -server -Xmx24000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4393763-1568419237.xml"  -tl '20160s' -p 8
0.13/0.18	c Choco e747e1e
0.13/0.18	c [HOME/instance-4393763-1568419237.xml, -tl, 20160s, -p, 8]
0.34/0.22	c 8 solvers in parallel
0.34/0.28	c parse instance...
1.30/0.67	c solve instance...
1.68/0.72	o 0 
1.68/0.73	o 4 
1.68/0.74	o 6 
1.68/0.75	o 6 
1.68/0.77	o 8 
1.68/0.78	o 10 
1.68/0.79	o 12 
2.28/0.81	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (23/25)
2.28/0.81		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
2.28/0.81		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
2.28/0.81		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
2.28/0.81		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
2.28/0.81		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
2.28/0.81	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (23/25)
2.28/0.81		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
2.28/0.81		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
2.28/0.81		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
2.28/0.81		at org.chocosolver.solver.Solver.repair(Solver.java:443)
2.28/0.81		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
2.28/0.81		at org.chocosolver.solver.Solver.solve(Solver.java:262)
2.28/0.81		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
2.28/0.81		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
2.28/0.81		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
2.28/0.81		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
2.28/0.81		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
2.28/0.81		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
2.28/0.81		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
2.28/0.81		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
2.28/0.81		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
2.28/0.81		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
2.28/0.81	o 13 
2.28/0.83	o 14 
2.28/0.86	o 16 
3.02/0.93	o 18 
3.02/0.98	o 19 
4.58/1.17	o 20 
5.32/1.29	s OPTIMUM FOUND
5.32/1.29	v <instantiation>
5.32/1.29	v 	<list>x[0][0] x[0][1] x[0][2] x[0][3] x[0][4] x[0][5] x[0][6] x[0][7] x[0][8] x[1][0] x[1][1] x[1][2] x[1][3] x[1][4] x[1][5] x[1][6] x[1][7] x[1][8] x[2][0] x[2][1] x[2][2] x[2][3] x[2][4] x[2][5] x[2][6] x[2][7] x[2][8] x[3][0] x[3][1] x[3][2] x[3][3] x[3][4] x[3][5] x[3][6] x[3][7] x[3][8] s[0][0] s[0][1] s[0][2] s[0][3] s[0][4] s[0][5] s[0][6] s[0][7] s[0][8] s[1][0] s[1][1] s[1][2] s[1][3] s[1][4] s[1][5] s[1][6] s[1][7] s[1][8] s[2][0] s[2][1] s[2][2] s[2][3] s[2][4] s[2][5] s[2][6] s[2][7] s[2][8] s[3][0] s[3][1] s[3][2] s[3][3] s[3][4] s[3][5] s[3][6] s[3][7] s[3][8] </list>
5.32/1.29	v 	<values>1 1 0 0 1 1 0 1 1 1 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 0 1 1 1 0 1 1 0 0 1 1 2 2 2 2 3 2 4 2 2 3 4 4 2 6 3 5 3 4 4 3 5 3 6 2 4 4 3 2 2 4 2 3 2 2 2 2 </values>
5.32/1.29	v </instantiation>

Verifier Data

OK	20

Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (11815 MiB free)
  memory of node 1: 16384 MiB (10777 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4393763-1568419237/watcher-4393763-1568419237 -o /tmp/evaluation-result-4393763-1568419237/solver-4393763-1568419237 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node119-1568417505-21287 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1369376920 HOME/instance-4393763-1568419237.xml 

running on 8 cores: 0,2,4,6,1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 20160 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 20190 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 31744000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 31795200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
Current StackSize limit: 8192 KiB

solver pid=22797, runsolver pid=22794

[startup+0.100135 s]*
/proc/loadavg: 6.01 7.07 6.45 2/211 22818
/proc/meminfo: memFree=23118216/32770624 swapFree=66939840/67108860
[pid=22797] ppid=22794 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/22797/stat : 22797 (xcsp3-exec) S 22794 22797 21260 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 417838577 115843072 363 33554432000 4194304 5098028 140732357923504 140732357921608 140382132650620 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 29433856 140732357927797 140732357928041 140732357928041 140732357930954 0
/proc/22797/statm: 28282 363 304 221 0 87 0
[pid=22799] ppid=22797 vsize=28227388 memory=29180 CPUtime=0.13 cores=0-7
/proc/22799/stat : 22799 (java) S 22797 22797 21260 0 -1 1077944320 5687 0 0 0 11 2 0 0 20 0 20 0 417838577 28904845312 7295 33554432000 4194304 4196468 140722386713792 140722386696336 139628377714423 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
/proc/22799/statm: 7056847 7295 3151 1 0 7019032 0
[pid=22799/tid=22800] ppid=22797 vsize=28227388 memory=8317482817917895235 CPUtime=0.09 cores=0-7
/proc/22799/task/22800/stat : 22800 (java) R 22797 22797 21260 0 -1 4202560 3598 0 0 0 8 1 0 0 20 0 20 0 417838577 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628381940720 139628377736349 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22801] ppid=22797 vsize=28227388 memory=4872558044660077418 CPUtime=0 cores=0-7
/proc/22799/task/22801/stat : 22801 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628330334480 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22802] ppid=22797 vsize=28227388 memory=140610438751872 CPUtime=0 cores=0-7
/proc/22799/task/22802/stat : 22802 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628329281936 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22803] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22803/stat : 22803 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628328229392 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22804] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22804/stat : 22804 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628327176848 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22805] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22805/stat : 22805 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628326124304 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22806] ppid=22797 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/22799/task/22806/stat : 22806 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628325071760 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22807] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22807/stat : 22807 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628324019216 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22808] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22808/stat : 22808 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 7295 33554432000 4194304 4196468 140722386713792 139628322966672 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22809] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22809/stat : 22809 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838579 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626976057328 139628377725570 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22810] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22810/stat : 22810 (java) S 22797 22797 21260 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 417838580 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626975003552 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22811] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22811/stat : 22811 (java) S 22797 22797 21260 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417838580 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626973950960 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22812] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22812/stat : 22812 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838582 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626972899536 139628377733019 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22813] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22813/stat : 22813 (java) R 22797 22797 21260 0 -1 4202560 419 0 0 0 0 0 0 0 20 0 20 0 417838582 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626635323888 139628377726358 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22814] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22814/stat : 22814 (java) R 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417838582 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626634271344 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22815] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22815/stat : 22815 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838583 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626633218800 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22816] ppid=22797 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/22799/task/22816/stat : 22816 (java) R 22797 22797 21260 0 -1 4202560 353 0 0 0 1 0 0 0 20 0 20 0 417838583 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626632166256 139628356371749 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22817] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22817/stat : 22817 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417838583 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626631112928 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22818] ppid=22797 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/22799/task/22818/stat : 22818 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838583 28904845312 7295 33554432000 4194304 4196468 140722386713792 139626630060464 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 30632 KiB

[startup+0.210596 s]*
/proc/loadavg: 6.01 7.07 6.45 2/211 22818
/proc/meminfo: memFree=23104252/32770624 swapFree=66939840/67108860
[pid=22797] ppid=22794 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/22797/stat : 22797 (xcsp3-exec) S 22794 22797 21260 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 417838577 115843072 363 33554432000 4194304 5098028 140732357923504 140732357921608 140382132650620 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 29433856 140732357927797 140732357928041 140732357928041 140732357930954 0
/proc/22797/statm: 28282 363 304 221 0 87 0
[pid=22799] ppid=22797 vsize=28227388 memory=40916 CPUtime=0.34 cores=0-7
/proc/22799/stat : 22799 (java) S 22797 22797 21260 0 -1 1077944320 9512 0 0 0 30 4 0 0 20 0 20 0 417838577 28904845312 10229 33554432000 4194304 4196468 140722386713792 140722386696336 139628377714423 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
/proc/22799/statm: 7056847 10229 3268 1 0 7019032 0
[pid=22799/tid=22800] ppid=22797 vsize=28227388 memory=8318255677412212789 CPUtime=0.19 cores=0-7
/proc/22799/task/22800/stat : 22800 (java) R 22797 22797 21260 0 -1 4202560 6635 0 0 0 17 2 0 0 20 0 20 0 417838577 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628381947520 139628357254479 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22801] ppid=22797 vsize=28227388 memory=342 CPUtime=0 cores=0-7
/proc/22799/task/22801/stat : 22801 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628330334480 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22802] ppid=22797 vsize=28227388 memory=140610441845557 CPUtime=0 cores=0-7
/proc/22799/task/22802/stat : 22802 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628329281936 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22803] ppid=22797 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/22799/task/22803/stat : 22803 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628328229392 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22804] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22804/stat : 22804 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628327176848 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22805] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22805/stat : 22805 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628326124304 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22806] ppid=22797 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/22799/task/22806/stat : 22806 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628325071760 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22807] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22807/stat : 22807 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628324019216 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22808] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22808/stat : 22808 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28904845312 10229 33554432000 4194304 4196468 140722386713792 139628322966672 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22809] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22809/stat : 22809 (java) S 22797 22797 21260 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 20 0 417838579 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626976057328 139628377725570 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22810] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22810/stat : 22810 (java) S 22797 22797 21260 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 417838580 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626975003552 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22811] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22811/stat : 22811 (java) S 22797 22797 21260 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417838580 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626973950960 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22812] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22812/stat : 22812 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838582 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626972899536 139628377733019 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22813] ppid=22797 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/22799/task/22813/stat : 22813 (java) S 22797 22797 21260 0 -1 1077944384 511 0 0 0 1 0 0 0 20 0 20 0 417838582 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626635323888 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22814] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22814/stat : 22814 (java) S 22797 22797 21260 0 -1 1077944384 58 0 0 0 0 0 0 0 20 0 20 0 417838582 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626634271344 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22815] ppid=22797 vsize=28227388 memory=-1 CPUtime=0.01 cores=0-7
/proc/22799/task/22815/stat : 22815 (java) S 22797 22797 21260 0 -1 1077944384 274 0 0 0 1 0 0 0 20 0 20 0 417838583 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626633218800 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22816] ppid=22797 vsize=28227388 memory=-1 CPUtime=0.07 cores=0-7
/proc/22799/task/22816/stat : 22816 (java) R 22797 22797 21260 0 -1 4202560 718 0 0 0 7 0 0 0 20 0 20 0 417838583 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626632166064 139628356343959 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22817] ppid=22797 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22817/stat : 22817 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417838583 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626631112928 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22818] ppid=22797 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/22799/task/22818/stat : 22818 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838583 28904845312 10229 33554432000 4194304 4196468 140722386713792 139626630060464 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 42368 KiB

[startup+0.310411 s]*
/proc/loadavg: 6.01 7.07 6.45 4/211 22818
/proc/meminfo: memFree=23097120/32770624 swapFree=66939840/67108860
[pid=22797] ppid=22794 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/22797/stat : 22797 (xcsp3-exec) S 22794 22797 21260 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 417838577 115843072 363 33554432000 4194304 5098028 140732357923504 140732357921608 140382132650620 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 29433856 140732357927797 140732357928041 140732357928041 140732357930954 0
/proc/22797/statm: 28282 363 304 221 0 87 0
[pid=22799] ppid=22797 vsize=28231644 memory=50036 CPUtime=0.52 cores=0-7
/proc/22799/stat : 22799 (java) S 22797 22797 21260 0 -1 1077944320 10868 0 0 0 47 5 0 0 20 0 20 0 417838577 28909203456 12509 33554432000 4194304 4196468 140722386713792 140722386696336 139628377714423 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
/proc/22799/statm: 7057911 12509 3357 1 0 7019032 0
[pid=22799/tid=22800] ppid=22797 vsize=28231644 memory=8317482817917895235 CPUtime=0.29 cores=0-7
/proc/22799/task/22800/stat : 22800 (java) R 22797 22797 21260 0 -1 4202560 7777 0 0 0 26 3 0 0 20 0 20 0 417838577 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628381948208 139628361794910 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22801] ppid=22797 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22801/stat : 22801 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628330334480 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22802] ppid=22797 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22802/stat : 22802 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417838578 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628329281936 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22803] ppid=22797 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22803/stat : 22803 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628328229392 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22804] ppid=22797 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22804/stat : 22804 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628327176848 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22805] ppid=22797 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22805/stat : 22805 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628326124304 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22806] ppid=22797 vsize=28231644 memory=140610317150895 CPUtime=0 cores=0-7
/proc/22799/task/22806/stat : 22806 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628325071760 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22807] ppid=22797 vsize=28231644 memory=140610317153200 CPUtime=0 cores=0-7
/proc/22799/task/22807/stat : 22807 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838578 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628324019216 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22808] ppid=22797 vsize=28231644 memory=140610317155504 CPUtime=0 cores=0-7
/proc/22799/task/22808/stat : 22808 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 417838578 28909203456 12509 33554432000 4194304 4196468 140722386713792 139628322966672 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22809] ppid=22797 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22809/stat : 22809 (java) S 22797 22797 21260 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 20 0 417838579 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626976057328 139628377725570 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22810] ppid=22797 vsize=28231644 memory=281220634324880 CPUtime=0 cores=0-7
/proc/22799/task/22810/stat : 22810 (java) S 22797 22797 21260 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 417838580 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626975003552 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22811] ppid=22797 vsize=28231644 memory=281220634322576 CPUtime=0 cores=0-7
/proc/22799/task/22811/stat : 22811 (java) S 22797 22797 21260 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 417838580 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626973950960 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22812] ppid=22797 vsize=28231644 memory=281220634329488 CPUtime=0 cores=0-7
/proc/22799/task/22812/stat : 22812 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838582 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626972899536 139628377733019 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22813] ppid=22797 vsize=28231644 memory=281220634270768 CPUtime=0.02 cores=0-7
/proc/22799/task/22813/stat : 22813 (java) S 22797 22797 21260 0 -1 1077944384 527 0 0 0 2 0 0 0 20 0 20 0 417838582 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626635323888 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22814] ppid=22797 vsize=28231644 memory=281220634343312 CPUtime=0.01 cores=0-7
/proc/22799/task/22814/stat : 22814 (java) S 22797 22797 21260 0 -1 1077944384 75 0 0 0 1 0 0 0 20 0 20 0 417838582 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626634271344 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22815] ppid=22797 vsize=28231644 memory=281220634350224 CPUtime=0.03 cores=0-7
/proc/22799/task/22815/stat : 22815 (java) R 22797 22797 21260 0 -1 4202560 379 0 0 0 3 0 0 0 20 0 20 0 417838583 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626633218800 139628362840701 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22816] ppid=22797 vsize=28231644 memory=281220634347920 CPUtime=0.12 cores=0-7
/proc/22799/task/22816/stat : 22816 (java) S 22797 22797 21260 0 -1 1077944384 795 0 0 0 12 0 0 0 20 0 20 0 417838583 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626632166256 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22817] ppid=22797 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22817/stat : 22817 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 417838583 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626631112928 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22818] ppid=22797 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/22799/task/22818/stat : 22818 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 417838583 28909203456 12509 33554432000 4194304 4196468 140722386713792 139626630060464 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51488 KiB

[startup+0.701502 s]
/proc/loadavg: 6.01 7.07 6.45 6/211 22818
/proc/meminfo: memFree=23081652/32770624 swapFree=66939840/67108860
[pid=22797] ppid=22794 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/22797/stat : 22797 (xcsp3-exec) S 22794 22797 21260 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 417838577 115843072 363 33554432000 4194304 5098028 140732357923504 140732357921608 140382132650620 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 29433856 140732357927797 140732357928041 140732357928041 140732357930954 0
/proc/22797/statm: 28282 363 304 221 0 87 0
[pid=22799] ppid=22797 vsize=28700744 memory=97528 CPUtime=1.68 cores=0-7
/proc/22799/stat : 22799 (java) S 22797 22797 21260 0 -1 1077944320 16284 0 0 0 160 8 0 0 20 0 28 0 417838577 29389561856 24382 33554432000 4194304 4196468 140722386713792 140722386696336 139628377714423 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
/proc/22799/statm: 7175186 24382 3455 1 0 7136288 0
[pid=22799/tid=22800] ppid=22797 vsize=28700744 memory=0 CPUtime=0.67 cores=0-7
/proc/22799/task/22800/stat : 22800 (java) S 22797 22797 21260 0 -1 1077944384 9444 0 0 0 62 5 0 0 20 0 28 0 417838577 29389561856 24382 33554432000 4194304 4196468 140722386713792 139628381955200 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22801] ppid=22797 vsize=28700744 memory=140610317362032 CPUtime=0 cores=0-7
/proc/22799/task/22801/stat : 22801 (java) S 22797 22797 21260 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 28 0 417838578 29389561856 24382 33554432000 4194304 4196468 140722386713792 139628330334480 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22802] ppid=22797 vsize=28700744 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22802/stat : 22802 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417838578 29389561856 24382 33554432000 4194304 4196468 140722386713792 139628329281936 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22803] ppid=22797 vsize=28700744 memory=1256 CPUtime=0 cores=0-7
/proc/22799/task/22803/stat : 22803 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417838578 29389561856 24382 33554432000 4194304 4196468 140722386713792 139628328229392 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0

################
# More data... #
################

# the end of solver process 22797 was just reported to runsolver
# cumulated CPU time of all completed processes:  user=5.92065 s, system=0.138427 s

Solver just ended.
??? end of watcher thread
Dumping a history of the last processes samples

[startup+0.801089 s]
/proc/loadavg: 6.01 7.07 6.45 6/211 22818
/proc/meminfo: memFree=23081652/32770624 swapFree=66939840/67108860
[pid=22797] ppid=22794 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/22797/stat : 22797 (xcsp3-exec) S 22794 22797 21260 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 417838577 115843072 363 33554432000 4194304 5098028 140732357923504 140732357921608 140382132650620 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 29433856 140732357927797 140732357928041 140732357928041 140732357930954 0
/proc/22797/statm: 28282 363 304 221 0 87 0
[pid=22799] ppid=22797 vsize=28768328 memory=178712 CPUtime=2.28 cores=0-7
/proc/22799/stat : 22799 (java) S 22797 22797 21260 0 -1 1077944320 18076 0 0 0 217 11 0 0 20 0 28 0 417838577 29458767872 44678 33554432000 4194304 4196468 140722386713792 140722386696336 139628377714423 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
/proc/22799/statm: 7192082 44678 3462 1 0 7153184 0
[pid=22799/tid=22800] ppid=22797 vsize=28768328 memory=2832 CPUtime=0.68 cores=0-7
/proc/22799/task/22800/stat : 22800 (java) S 22797 22797 21260 0 -1 1077944384 9444 0 0 0 63 5 0 0 20 0 28 0 417838577 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628381955200 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22801] ppid=22797 vsize=28768328 memory=668 CPUtime=0 cores=0-7
/proc/22799/task/22801/stat : 22801 (java) S 22797 22797 21260 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 28 0 417838578 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628330334480 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22802] ppid=22797 vsize=28768328 memory=1256 CPUtime=0 cores=0-7
/proc/22799/task/22802/stat : 22802 (java) S 22797 22797 21260 0 -1 1077944384 9 0 0 0 0 0 0 0 20 0 28 0 417838578 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628329281936 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22803] ppid=22797 vsize=28768328 memory=1076 CPUtime=0 cores=0-7
/proc/22799/task/22803/stat : 22803 (java) S 22797 22797 21260 0 -1 1077944384 10 0 0 0 0 0 0 0 20 0 28 0 417838578 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628328229392 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22804] ppid=22797 vsize=28768328 memory=7014751519650698577 CPUtime=0 cores=0-7
/proc/22799/task/22804/stat : 22804 (java) S 22797 22797 21260 0 -1 1077944384 8 0 0 0 0 0 0 0 20 0 28 0 417838578 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628327176848 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22805] ppid=22797 vsize=28768328 memory=7667775651891468652 CPUtime=0 cores=0-7
/proc/22799/task/22805/stat : 22805 (java) S 22797 22797 21260 0 -1 1077944384 10 0 0 0 0 0 0 0 20 0 28 0 417838578 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628326124304 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22806] ppid=22797 vsize=28768328 memory=7881696724453321575 CPUtime=0 cores=0-7
/proc/22799/task/22806/stat : 22806 (java) S 22797 22797 21260 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 28 0 417838578 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628325071760 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22807] ppid=22797 vsize=28768328 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22807/stat : 22807 (java) S 22797 22797 21260 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 28 0 417838578 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628324019216 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22808] ppid=22797 vsize=28768328 memory=33 CPUtime=0 cores=0-7
/proc/22799/task/22808/stat : 22808 (java) S 22797 22797 21260 0 -1 1077944384 4 0 0 0 0 0 0 0 20 0 28 0 417838578 29458767872 44678 33554432000 4194304 4196468 140722386713792 139628322966672 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22809] ppid=22797 vsize=28768328 memory=6944656575208382560 CPUtime=0 cores=0-7
/proc/22799/task/22809/stat : 22809 (java) S 22797 22797 21260 0 -1 1077944384 20 0 0 0 0 0 0 0 20 0 28 0 417838579 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626976057328 139628377725570 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22810] ppid=22797 vsize=28768328 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22810/stat : 22810 (java) S 22797 22797 21260 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 28 0 417838580 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626975003552 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22811] ppid=22797 vsize=28768328 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22811/stat : 22811 (java) S 22797 22797 21260 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 28 0 417838580 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626973950960 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22812] ppid=22797 vsize=28768328 memory=6297835844906604903 CPUtime=0 cores=0-7
/proc/22799/task/22812/stat : 22812 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417838582 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626972899536 139628377733019 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22813] ppid=22797 vsize=28768328 memory=7811607157294262098 CPUtime=0.27 cores=0-7
/proc/22799/task/22813/stat : 22813 (java) R 22797 22797 21260 0 -1 4202560 1477 0 0 0 27 0 0 0 20 0 28 0 417838582 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626635310496 139628362643893 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22814] ppid=22797 vsize=28768328 memory=7523071198212214892 CPUtime=0.25 cores=0-7
/proc/22799/task/22814/stat : 22814 (java) R 22797 22797 21260 0 -1 4202560 1041 0 0 0 24 1 0 0 20 0 28 0 417838582 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626634260576 139628362595748 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22815] ppid=22797 vsize=28768328 memory=-7749694995119233653 CPUtime=0.24 cores=0-7
/proc/22799/task/22815/stat : 22815 (java) R 22797 22797 21260 0 -1 1077944384 1125 0 0 0 24 0 0 0 20 0 28 0 417838583 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626633218928 139628377724629 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22816] ppid=22797 vsize=28768328 memory=-8529969244802432963 CPUtime=0.49 cores=0-7
/proc/22799/task/22816/stat : 22816 (java) R 22797 22797 21260 0 -1 4202560 2168 0 0 0 48 1 0 0 20 0 28 0 417838583 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626632163192 139628356669640 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22817] ppid=22797 vsize=28768328 memory=1400504754925836930 CPUtime=0 cores=0-7
/proc/22799/task/22817/stat : 22817 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417838583 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626631112928 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22818] ppid=22797 vsize=28768328 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22818/stat : 22818 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417838583 29458767872 44678 33554432000 4194304 4196468 140722386713792 139626630060464 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
Current children cumulated CPU time: 2.28 s
Current children cumulated vsize: 28881456 KiB
Current children cumulated memory: 180164 KiB

[startup+1.20779 s]
/proc/loadavg: 6.01 7.07 6.45 13/218 22921
/proc/meminfo: memFree=22960200/32770624 swapFree=66939840/67108860
[pid=22797] ppid=22794 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/22797/stat : 22797 (xcsp3-exec) S 22794 22797 21260 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 417838577 115843072 363 33554432000 4194304 5098028 140732357923504 140732357921608 140382132650620 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 29433856 140732357927797 140732357928041 140732357928041 140732357930954 0
/proc/22797/statm: 28282 363 304 221 0 87 0
[pid=22799] ppid=22797 vsize=28769356 memory=193716 CPUtime=5.32 cores=0-7
/proc/22799/stat : 22799 (java) S 22797 22797 21260 0 -1 1077944320 21130 0 0 0 519 13 0 0 20 0 28 0 417838577 29459820544 48429 33554432000 4194304 4196468 140722386713792 140722386696336 139628377714423 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
/proc/22799/statm: 7192339 48429 3489 1 0 7153441 0
[pid=22799/tid=22800] ppid=22797 vsize=28769356 memory=0 CPUtime=0.68 cores=0-7
/proc/22799/task/22800/stat : 22800 (java) S 22797 22797 21260 0 -1 1077944384 9448 0 0 0 63 5 0 0 20 0 28 0 417838577 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628381955200 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22801] ppid=22797 vsize=28769356 memory=6656426216303648864 CPUtime=0 cores=0-7
/proc/22799/task/22801/stat : 22801 (java) S 22797 22797 21260 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628330334480 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22802] ppid=22797 vsize=28769356 memory=6656426216303648864 CPUtime=0 cores=0-7
/proc/22799/task/22802/stat : 22802 (java) S 22797 22797 21260 0 -1 1077944384 9 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628329281936 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22803] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22803/stat : 22803 (java) S 22797 22797 21260 0 -1 1077944384 10 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628328229392 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22804] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22804/stat : 22804 (java) S 22797 22797 21260 0 -1 1077944384 8 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628327176848 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22805] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22805/stat : 22805 (java) S 22797 22797 21260 0 -1 1077944384 10 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628326124304 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22806] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22806/stat : 22806 (java) S 22797 22797 21260 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628325071760 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22807] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22807/stat : 22807 (java) S 22797 22797 21260 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628324019216 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22808] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22808/stat : 22808 (java) S 22797 22797 21260 0 -1 1077944384 4 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 48429 33554432000 4194304 4196468 140722386713792 139628322966672 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22809] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22809/stat : 22809 (java) S 22797 22797 21260 0 -1 1077944384 20 0 0 0 0 0 0 0 20 0 28 0 417838579 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626976057328 139628377725570 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22810] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22810/stat : 22810 (java) S 22797 22797 21260 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 28 0 417838580 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626975003552 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22811] ppid=22797 vsize=28769356 memory=288230574492221466 CPUtime=0 cores=0-7
/proc/22799/task/22811/stat : 22811 (java) S 22797 22797 21260 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 28 0 417838580 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626973950960 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22812] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22812/stat : 22812 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417838582 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626972899536 139628377733019 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22813] ppid=22797 vsize=28769356 memory=140610438752561 CPUtime=0.58 cores=0-7
/proc/22799/task/22813/stat : 22813 (java) R 22797 22797 21260 0 -1 4202560 1769 0 0 0 58 0 0 0 20 0 28 0 417838582 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626635316912 139628377735770 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22814] ppid=22797 vsize=28769356 memory=6935649255759568960 CPUtime=0.59 cores=0-7
/proc/22799/task/22814/stat : 22814 (java) R 22797 22797 21260 0 -1 4202560 1564 0 0 0 58 1 0 0 20 0 28 0 417838582 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626634259216 139628362840707 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22815] ppid=22797 vsize=28769356 memory=4638778398332698720 CPUtime=0.62 cores=0-7
/proc/22799/task/22815/stat : 22815 (java) R 22797 22797 21260 0 -1 4202560 2043 0 0 0 62 0 0 0 20 0 28 0 417838583 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626633217984 139628377735770 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22816] ppid=22797 vsize=28769356 memory=6656426216303648864 CPUtime=0.69 cores=0-7
/proc/22799/task/22816/stat : 22816 (java) R 22797 22797 21260 0 -1 1077944384 2607 0 0 0 68 1 0 0 20 0 28 0 417838583 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626632160208 139628377724629 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22817] ppid=22797 vsize=28769356 memory=5787213827062983249 CPUtime=0 cores=0-7
/proc/22799/task/22817/stat : 22817 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417838583 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626631112928 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22818] ppid=22797 vsize=28769356 memory=5859271421084521832 CPUtime=0 cores=0-7
/proc/22799/task/22818/stat : 22818 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417838583 29459820544 48429 33554432000 4194304 4196468 140722386713792 139626630060464 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
Current children cumulated CPU time: 5.32 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 195168 KiB

[startup+1.30097 s]
/proc/loadavg: 6.01 7.07 6.45 13/218 22921
/proc/meminfo: memFree=22960200/32770624 swapFree=66939840/67108860
[pid=22797] ppid=22794 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/22797/stat : 22797 (xcsp3-exec) S 22794 22797 21260 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 417838577 115843072 363 33554432000 4194304 5098028 140732357923504 140732357921608 140382132650620 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 29433856 140732357927797 140732357928041 140732357928041 140732357930954 0
/proc/22797/statm: 28282 363 304 221 0 87 0
[pid=22799] ppid=22797 vsize=28769356 memory=196468 CPUtime=6.03 cores=0-7
/proc/22799/stat : 22799 (java) S 22797 22797 21260 0 -1 1077944320 21295 0 0 0 590 13 0 0 20 0 28 0 417838577 29459820544 49117 33554432000 4194304 4196468 140722386713792 140722386696336 139628377714423 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
/proc/22799/statm: 7192339 49117 3491 1 0 7153441 0
[pid=22799/tid=22800] ppid=22797 vsize=28769356 memory=190904 CPUtime=0.68 cores=0-7
/proc/22799/task/22800/stat : 22800 (java) D 22797 22797 21260 0 -1 4202560 9448 0 0 0 63 5 0 0 20 0 28 0 417838577 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628381945552 139628361758053 0 4 0 16800975 18446744071582151416 0 0 -1 1 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22801] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22801/stat : 22801 (java) S 22797 22797 21260 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628330334480 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22802] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22802/stat : 22802 (java) S 22797 22797 21260 0 -1 1077944384 9 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628329281936 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22803] ppid=22797 vsize=28769356 memory=1452 CPUtime=0 cores=0-7
/proc/22799/task/22803/stat : 22803 (java) S 22797 22797 21260 0 -1 1077944384 10 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628328229392 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22804] ppid=22797 vsize=28769356 memory=97528 CPUtime=0 cores=0-7
/proc/22799/task/22804/stat : 22804 (java) S 22797 22797 21260 0 -1 1077944384 8 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628327176848 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22805] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22805/stat : 22805 (java) S 22797 22797 21260 0 -1 1077944384 10 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628326124304 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22806] ppid=22797 vsize=28769356 memory=140610317362032 CPUtime=0 cores=0-7
/proc/22799/task/22806/stat : 22806 (java) S 22797 22797 21260 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628325071760 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22807] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22807/stat : 22807 (java) S 22797 22797 21260 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628324019216 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22808] ppid=22797 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/22799/task/22808/stat : 22808 (java) S 22797 22797 21260 0 -1 1077944384 4 0 0 0 0 0 0 0 20 0 28 0 417838578 29459820544 49117 33554432000 4194304 4196468 140722386713792 139628322966672 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22809] ppid=22797 vsize=28769356 memory=97912369492522 CPUtime=0 cores=0-7
/proc/22799/task/22809/stat : 22809 (java) S 22797 22797 21260 0 -1 1077944384 20 0 0 0 0 0 0 0 20 0 28 0 417838579 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626976057328 139628377725570 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22810] ppid=22797 vsize=28769356 memory=97912369492523 CPUtime=0 cores=0-7
/proc/22799/task/22810/stat : 22810 (java) S 22797 22797 21260 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 28 0 417838580 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626975003552 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22811] ppid=22797 vsize=28769356 memory=97912369492524 CPUtime=0 cores=0-7
/proc/22799/task/22811/stat : 22811 (java) S 22797 22797 21260 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 28 0 417838580 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626973950960 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22812] ppid=22797 vsize=28769356 memory=97912369492525 CPUtime=0 cores=0-7
/proc/22799/task/22812/stat : 22812 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417838582 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626972899536 139628377733019 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22813] ppid=22797 vsize=28769356 memory=97912369492526 CPUtime=0.67 cores=0-7
/proc/22799/task/22813/stat : 22813 (java) R 22797 22797 21260 0 -1 4202560 1855 0 0 0 67 0 0 0 20 0 28 0 417838582 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626635304160 139628356903872 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22814] ppid=22797 vsize=28769356 memory=97912369492527 CPUtime=0.63 cores=0-7
/proc/22799/task/22814/stat : 22814 (java) R 22797 22797 21260 0 -1 4202560 1564 0 0 0 62 1 0 0 20 0 28 0 417838582 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626634250832 139628361182347 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22815] ppid=22797 vsize=28769356 memory=1256 CPUtime=0.7 cores=0-7
/proc/22799/task/22815/stat : 22815 (java) R 22797 22797 21260 0 -1 4202560 2061 0 0 0 70 0 0 0 20 0 28 0 417838583 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626633218928 139628356962216 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22816] ppid=22797 vsize=28769356 memory=1076 CPUtime=0.72 cores=0-7
/proc/22799/task/22816/stat : 22816 (java) S 22797 22797 21260 0 -1 1077944384 2661 0 0 0 71 1 0 0 20 0 28 0 417838583 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626632166256 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22817] ppid=22797 vsize=28769356 memory=14008 CPUtime=0 cores=0-7
/proc/22799/task/22817/stat : 22817 (java) S 22797 22797 21260 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 417838583 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626631112928 139628377724629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
[pid=22799/tid=22818] ppid=22797 vsize=28769356 memory=22404 CPUtime=0 cores=0-7
/proc/22799/task/22818/stat : 22818 (java) S 22797 22797 21260 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 417838583 29459820544 49117 33554432000 4194304 4196468 140722386713792 139626630060464 139628377725570 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 16834560 140722386719722 140722386719894 140722386719894 140722386722767 0
Current children cumulated CPU time: 6.03 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 197920 KiB

Child status: 0
Real time (s): 1.31974
CPU time (s): 6.05907
CPU user time (s): 5.92065
CPU system time (s): 0.138427
CPU usage (%): 459.112
Max. virtual memory (cumulated for all children) (KiB): 28882484
Max. memory (cumulated for all children) (KiB): 197920

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 5.92065
system time used= 0.138427
maximum resident set size= 197240
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 21861
page faults= 0
swaps= 0
block input operations= 0
block output operations= 72
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 4146
involuntary context switches= 108


# summary of solver processes directly reported to runsolver:
#   pid: 22797
#   total CPU time (s): 6.05907
#   total CPU user time (s): 5.92065
#   total CPU system time (s): 0.138427

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.034409 second user time and 0.056305 second system time

The end

Launcher Data

Begin job on node119 at 2019-09-14 01:59:57
IDJOB=4393763
IDBENCH=115996
IDSOLVER=2841
FILE ID=node119/4393763-1568419237
RUNJOBID= node119-1568417505-21287
PBS_JOBID= 21702275
Free space on /tmp= 61504 MiB

SOLVER NAME= choco-solver parallel 2019-06-14
BENCH NAME= XCSP17/StillLife/StillLife-m1-s1/StillLife-04-09.xml
COMMAND LINE= xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 24000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4393763-1568419237/watcher-4393763-1568419237 -o /tmp/evaluation-result-4393763-1568419237/solver-4393763-1568419237 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node119-1568417505-21287 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1369376920 HOME/instance-4393763-1568419237.xml

TIME LIMIT= 20160 seconds
MEMORY LIMIT= 31000 MiB
NBCORE= 8

MD5SUM BENCH= e25e9e3192808473b45d33bf4350e517
RANDOM SEED=1369376920

node119.alineos.net Linux 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.47
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.47
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.47
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.47
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        23135136 kB
MemAvailable:   31817976 kB
Buffers:          203580 kB
Cached:          8744092 kB
SwapCached:        61108 kB
Active:          2820140 kB
Inactive:        6192348 kB
Active(anon):       3816 kB
Inactive(anon):   102432 kB
Active(file):    2816324 kB
Inactive(file):  6089916 kB
Unevictable:      107736 kB
Mlocked:          107736 kB
SwapTotal:      67108860 kB
SwapFree:       66939840 kB
Dirty:             26036 kB
Writeback:             0 kB
AnonPages:        111044 kB
Mapped:            44216 kB
Shmem:             32816 kB
Slab:             214780 kB
SReclaimable:     184872 kB
SUnreclaim:        29908 kB
KernelStack:        3472 kB
PageTables:         5288 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     498656 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     65536 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      126336 kB
DirectMap2M:    33419264 kB

Free space on /tmp at the end= 61476 MiB
End job on node119 at 2019-09-14 01:59:59