Trace number 4394521

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 parallelOPT38 3893.33 530.399

General information on the benchmark

NameStillLife/StillLife-m1-s1/
StillLife-06-12.xml
MD5SUM7162d4a2bfb4649e5ff01c254dbd946c
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark38
Best CPU time to get the best result obtained on this benchmark41.4225
Satisfiable
(Un)Satisfiability was proved
Number of variables144
Number of constraints172
Number of domains2
Minimum domain size2
Maximum domain size9
Distribution of domain sizes[{"size":2,"count":72},{"size":9,"count":72}]
Minimum variable degree2
Maximum variable degree10
Distribution of variable degrees[{"degree":2,"count":72},{"degree":7,"count":4},{"degree":8,"count":28},{"degree":10,"count":40}]
Minimum constraint arity2
Maximum constraint arity9
Distribution of constraint arities[{"arity":2,"count":72},{"arity":3,"count":28},{"arity":4,"count":4},{"arity":6,"count":28},{"arity":9,"count":40}]
Number of extensional constraints100
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":100},{"type":"sum","count":72}]
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-4394521-1568418819.xml"  -tl '20160s' -p 8
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4394521-1568418819.xml, -tl, 20160s, -p, 8]
0.34/0.22	c 8 solvers in parallel
0.34/0.29	c parse instance...
1.69/0.76	c solve instance...
2.16/0.82	o 0 
2.16/0.82	o 4 
2.16/0.83	o 6 
2.16/0.84	o 8 
2.16/0.86	o 10 
2.16/0.86	o 11 
2.16/0.86	o 13 
2.16/0.87	o 15 
2.16/0.89	o 17 
2.71/0.93	o 28 
2.71/0.97	o 29 
2.71/0.98	o 30 
3.50/1.03	o 32 
4.26/1.11	o 33 
5.02/1.26	o 34 
6.49/1.45	o 35 
7.23/1.52	o 36 
7.23/1.79	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (41/43)
7.23/1.79		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
7.23/1.79		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
7.23/1.79		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
7.23/1.79		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
7.23/1.79		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
7.23/1.79	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (41/43)
7.23/1.79		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
7.23/1.79		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
7.23/1.79		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
7.23/1.79		at org.chocosolver.solver.Solver.repair(Solver.java:443)
7.23/1.79		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
7.23/1.79		at org.chocosolver.solver.Solver.solve(Solver.java:262)
7.23/1.79		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
7.23/1.79		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
7.23/1.79		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
7.23/1.79		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
7.23/1.79		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
7.23/1.79		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
7.23/1.79		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
7.23/1.79		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
7.23/1.79		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
7.23/1.79		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
7.23/1.79	o 37 
1571.33/198.39	o 38 
3893.01/530.34	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (88/90)
3893.01/530.34		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
3893.01/530.34		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
3893.01/530.34		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
3893.01/530.34		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
3893.01/530.34		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
3893.01/530.34	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (88/90)
3893.01/530.34		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
3893.01/530.34		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
3893.01/530.34		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
3893.01/530.34		at org.chocosolver.solver.Solver.repair(Solver.java:443)
3893.01/530.34		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
3893.01/530.34		at org.chocosolver.solver.Solver.solve(Solver.java:262)
3893.01/530.34		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
3893.01/530.34		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
3893.01/530.34		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
3893.01/530.34		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
3893.01/530.34		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
3893.01/530.34		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
3893.01/530.34		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
3893.01/530.34		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
3893.01/530.34		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
3893.01/530.34		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
3893.01/530.35	s OPTIMUM FOUND
3893.01/530.35	v <instantiation>
3893.01/530.35	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[0][9] x[0][10] x[0][11] 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[1][9] x[1][10] x[1][11] 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[2][9] x[2][10] x[2][11] 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] x[3][9] x[3][10] x[3][11] x[4][0] x[4][1] x[4][2] x[4][3] x[4][4] x[4][5] x[4][6] x[4][7] x[4][8] x[4][9] x[4][10] x[4][11] x[5][0] x[5][1] x[5][2] x[5][3] x[5][4] x[5][5] x[5][6] x[5][7] x[5][8] x[5][9] x[5][10] x[5][11] 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[0][9] s[0][10] s[0][11] 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[1][9] s[1][10] s[1][11] 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[2][9] s[2][10] s[2][11] 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] s[3][9] s[3][10] s[3][11] s[4][0] s[4][1] s[4][2] s[4][3] s[4][4] s[4][5] s[4][6] s[4][7] s[4][8] s[4][9] s[4][10] s[4][11] s[5][0] s[5][1] s[5][2] s[5][3] s[5][4] s[5][5] s[5][6] s[5][7] s[5][8] s[5][9] s[5][10] s[5][11] </list>
3893.01/530.35	v 	<values>0 1 1 0 0 1 1 0 1 1 0 1 1 0 0 1 0 0 1 0 1 0 1 1 1 1 1 0 1 1 0 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 1 1 1 0 1 0 1 0 0 1 0 0 1 1 0 1 1 0 1 1 0 0 1 1 0 2 2 2 2 2 2 2 4 2 3 4 2 3 6 5 3 4 5 3 5 3 5 3 2 2 3 3 4 3 3 4 5 3 5 5 4 4 5 5 3 5 4 3 3 4 3 3 2 2 3 5 3 5 3 5 4 3 5 6 3 2 4 3 2 4 2 2 2 2 2 2 2 </values>
3893.01/530.35	v </instantiation>

Verifier Data

OK	38

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 (15300 MiB free)
  memory of node 1: 16384 MiB (15496 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4394521-1568418819/watcher-4394521-1568418819 -o /tmp/evaluation-result-4394521-1568418819/solver-4394521-1568418819 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node102-1568416723-7197 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 80656897 HOME/instance-4394521-1568418819.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
solver pid=9094, runsolver pid=9091
Current StackSize limit: 8192 KiB


[startup+0.100135 s]*
/proc/loadavg: 5.22 5.81 4.30 2/213 9115
/proc/meminfo: memFree=31519468/32770624 swapFree=66995524/67108860
[pid=9094] ppid=9091 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/9094/stat : 9094 (xcsp3-exec) S 9091 9094 7170 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 418133378 115843072 363 33554432000 4194304 5098028 140730869140880 140730869138984 140117651518076 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38903808 140730869142391 140730869142633 140730869142633 140730869145546 0
/proc/9094/statm: 28282 363 305 221 0 87 0
[pid=9096] ppid=9094 vsize=28227388 memory=29564 CPUtime=0.12 cores=0-7
/proc/9096/stat : 9096 (java) S 9094 9094 7170 0 -1 1077944320 5795 0 0 0 11 1 0 0 20 0 20 0 418133379 28904845312 7391 33554432000 4194304 4196468 140724203954000 140724203936544 140033284673271 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
/proc/9096/statm: 7056847 7391 3152 1 0 7019032 0
[pid=9096/tid=9097] ppid=9094 vsize=28227388 memory=576460756329955445 CPUtime=0.08 cores=0-7
/proc/9096/task/9097/stat : 9097 (java) R 9094 9094 7170 0 -1 4202560 3709 0 0 0 8 0 0 0 20 0 20 0 418133379 28904845312 7391 33554432000 4194304 4196468 140724203954000 140033288889424 140032920573392 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9098] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9098/stat : 9098 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 7391 33554432000 4194304 4196468 140724203954000 140033249954960 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9099] ppid=9094 vsize=28227388 memory=13987483790190232 CPUtime=0 cores=0-7
/proc/9096/task/9099/stat : 9099 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032834579472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9100] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9100/stat : 9100 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032833526672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9101] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9101/stat : 9101 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032832473872 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9102] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9102/stat : 9102 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032831421072 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9103] ppid=9094 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/9096/task/9103/stat : 9103 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032830368272 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9104] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9104/stat : 9104 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032829315472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9105] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9105/stat : 9105 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032828262672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9106] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9106/stat : 9106 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133381 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032785730416 140033284684418 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9107] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9107/stat : 9107 (java) S 9094 9094 7170 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 418133382 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032784676384 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9108] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9108/stat : 9108 (java) S 9094 9094 7170 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 418133382 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032783623536 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9109] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9109/stat : 9109 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133384 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032782571856 140033284691867 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9110] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9110/stat : 9110 (java) S 9094 9094 7170 0 -1 1077944384 418 0 0 0 0 0 0 0 20 0 20 0 418133384 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032781519216 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9111] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9111/stat : 9111 (java) R 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 418133384 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032780466416 140033284684418 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9112] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9112/stat : 9112 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133384 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032779413616 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9113] ppid=9094 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/9096/task/9113/stat : 9113 (java) R 9094 9094 7170 0 -1 4202560 354 0 0 0 1 0 0 0 20 0 20 0 418133384 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032661907440 140033263794817 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9114] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9114/stat : 9114 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 418133385 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032660855904 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9115] ppid=9094 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/9096/task/9115/stat : 9115 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133385 28904845312 7391 33554432000 4194304 4196468 140724203954000 140032659803184 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 31016 KiB

[startup+0.210165 s]*
/proc/loadavg: 5.22 5.81 4.30 2/213 9115
/proc/meminfo: memFree=31508304/32770624 swapFree=66995524/67108860
[pid=9094] ppid=9091 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/9094/stat : 9094 (xcsp3-exec) S 9091 9094 7170 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 418133378 115843072 363 33554432000 4194304 5098028 140730869140880 140730869138984 140117651518076 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38903808 140730869142391 140730869142633 140730869142633 140730869145546 0
/proc/9094/statm: 28282 363 305 221 0 87 0
[pid=9096] ppid=9094 vsize=28227388 memory=40296 CPUtime=0.34 cores=0-7
/proc/9096/stat : 9096 (java) S 9094 9094 7170 0 -1 1077944320 9373 0 0 0 31 3 0 0 20 0 20 0 418133379 28904845312 10074 33554432000 4194304 4196468 140724203954000 140724203936544 140033284673271 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
/proc/9096/statm: 7056847 10074 3251 1 0 7019032 0
[pid=9096/tid=9097] ppid=9094 vsize=28227388 memory=8318255677412212789 CPUtime=0.2 cores=0-7
/proc/9096/task/9097/stat : 9097 (java) R 9094 9094 7170 0 -1 4202560 6645 0 0 0 18 2 0 0 20 0 20 0 418133379 28904845312 10074 33554432000 4194304 4196468 140724203954000 140033288902992 140033268753758 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9098] ppid=9094 vsize=28227388 memory=288230600413020516 CPUtime=0 cores=0-7
/proc/9096/task/9098/stat : 9098 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 10074 33554432000 4194304 4196468 140724203954000 140033249954960 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9099] ppid=9094 vsize=28227388 memory=13713701116683928 CPUtime=0 cores=0-7
/proc/9096/task/9099/stat : 9099 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032834579472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9100] ppid=9094 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/9096/task/9100/stat : 9100 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032833526672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9101] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9101/stat : 9101 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032832473872 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9102] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9102/stat : 9102 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032831421072 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9103] ppid=9094 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/9096/task/9103/stat : 9103 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032830368272 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9104] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9104/stat : 9104 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032829315472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9105] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9105/stat : 9105 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032828262672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9106] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9106/stat : 9106 (java) S 9094 9094 7170 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 418133381 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032785730416 140033284684418 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9107] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9107/stat : 9107 (java) S 9094 9094 7170 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 418133382 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032784676384 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9108] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9108/stat : 9108 (java) S 9094 9094 7170 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 418133382 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032783623536 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9109] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9109/stat : 9109 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133384 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032782571856 140033284691867 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9110] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9110/stat : 9110 (java) S 9094 9094 7170 0 -1 1077944384 423 0 0 0 0 0 0 0 20 0 20 0 418133384 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032781519216 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9111] ppid=9094 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/9096/task/9111/stat : 9111 (java) S 9094 9094 7170 0 -1 1077944384 105 0 0 0 1 0 0 0 20 0 20 0 418133384 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032780466416 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9112] ppid=9094 vsize=28227388 memory=-1 CPUtime=0.02 cores=0-7
/proc/9096/task/9112/stat : 9112 (java) S 9094 9094 7170 0 -1 1077944384 104 0 0 0 2 0 0 0 20 0 20 0 418133384 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032779413616 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9113] ppid=9094 vsize=28227388 memory=0 CPUtime=0.08 cores=0-7
/proc/9096/task/9113/stat : 9113 (java) R 9094 9094 7170 0 -1 4202560 788 0 0 0 8 0 0 0 20 0 20 0 418133384 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032661907440 140033263193422 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9114] ppid=9094 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9114/stat : 9114 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 418133385 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032660855904 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9115] ppid=9094 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/9096/task/9115/stat : 9115 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133385 28904845312 10074 33554432000 4194304 4196468 140724203954000 140032659803184 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 41748 KiB

[startup+0.309464 s]*
/proc/loadavg: 5.22 5.81 4.30 4/213 9115
/proc/meminfo: memFree=31502440/32770624 swapFree=66995524/67108860
[pid=9094] ppid=9091 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/9094/stat : 9094 (xcsp3-exec) S 9091 9094 7170 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 418133378 115843072 363 33554432000 4194304 5098028 140730869140880 140730869138984 140117651518076 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38903808 140730869142391 140730869142633 140730869142633 140730869145546 0
/proc/9094/statm: 28282 363 305 221 0 87 0
[pid=9096] ppid=9094 vsize=28231644 memory=49772 CPUtime=0.53 cores=0-7
/proc/9096/stat : 9096 (java) S 9094 9094 7170 0 -1 1077944320 10788 0 0 0 49 4 0 0 20 0 20 0 418133379 28909203456 12443 33554432000 4194304 4196468 140724203954000 140724203936544 140033284673271 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
/proc/9096/statm: 7057911 12443 3338 1 0 7019032 0
[pid=9096/tid=9097] ppid=9094 vsize=28231644 memory=8317482817917895235 CPUtime=0.3 cores=0-7
/proc/9096/task/9097/stat : 9097 (java) R 9094 9094 7170 0 -1 4202560 7751 0 0 0 27 3 0 0 20 0 20 0 418133379 28909203456 12487 33554432000 4194304 4196468 140724203954000 140033288904384 140033268753758 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9098] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9098/stat : 9098 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28909203456 12487 33554432000 4194304 4196468 140724203954000 140033249954960 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9099] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9099/stat : 9099 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032834579472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9100] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9100/stat : 9100 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032833526672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9101] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9101/stat : 9101 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032832473872 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9102] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9102/stat : 9102 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032831421072 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9103] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9103/stat : 9103 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 418133380 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032830368272 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9104] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9104/stat : 9104 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032829315472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9105] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9105/stat : 9105 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032828262672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9106] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9106/stat : 9106 (java) S 9094 9094 7170 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 418133381 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032785730416 140033284684418 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9107] ppid=9094 vsize=28231644 memory=280045692329344 CPUtime=0 cores=0-7
/proc/9096/task/9107/stat : 9107 (java) S 9094 9094 7170 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 418133382 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032784676384 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9108] ppid=9094 vsize=28231644 memory=280045692333952 CPUtime=0 cores=0-7
/proc/9096/task/9108/stat : 9108 (java) S 9094 9094 7170 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 418133382 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032783623536 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9109] ppid=9094 vsize=28231644 memory=280045692338560 CPUtime=0 cores=0-7
/proc/9096/task/9109/stat : 9109 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133384 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032782571856 140033284691867 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9110] ppid=9094 vsize=28231644 memory=280045692343168 CPUtime=0.02 cores=0-7
/proc/9096/task/9110/stat : 9110 (java) R 9094 9094 7170 0 -1 4202560 575 0 0 0 2 0 0 0 20 0 20 0 418133384 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032781509600 140033265376365 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9111] ppid=9094 vsize=28231644 memory=280045692347776 CPUtime=0.02 cores=0-7
/proc/9096/task/9111/stat : 9111 (java) S 9094 9094 7170 0 -1 1077944384 136 0 0 0 2 0 0 0 20 0 20 0 418133384 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032780466416 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9112] ppid=9094 vsize=28231644 memory=280045692352384 CPUtime=0.03 cores=0-7
/proc/9096/task/9112/stat : 9112 (java) S 9094 9094 7170 0 -1 1077944384 107 0 0 0 3 0 0 0 20 0 20 0 418133384 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032779413616 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9113] ppid=9094 vsize=28231644 memory=280045692356992 CPUtime=0.13 cores=0-7
/proc/9096/task/9113/stat : 9113 (java) S 9094 9094 7170 0 -1 1077944384 929 0 0 0 13 0 0 0 20 0 20 0 418133384 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032661907440 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9114] ppid=9094 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9114/stat : 9114 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 418133385 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032660855904 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9115] ppid=9094 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/9096/task/9115/stat : 9115 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133385 28909203456 12487 33554432000 4194304 4196468 140724203954000 140032659803184 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51224 KiB

[startup+0.700929 s]
/proc/loadavg: 5.22 5.81 4.30 4/213 9115
/proc/meminfo: memFree=31488420/32770624 swapFree=66995524/67108860
[pid=9094] ppid=9091 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/9094/stat : 9094 (xcsp3-exec) S 9091 9094 7170 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 418133378 115843072 363 33554432000 4194304 5098028 140730869140880 140730869138984 140117651518076 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38903808 140730869142391 140730869142633 140730869142633 140730869145546 0
/proc/9094/statm: 28282 363 305 221 0 87 0
[pid=9096] ppid=9094 vsize=28233768 memory=87828 CPUtime=1.69 cores=0-7
/proc/9096/stat : 9096 (java) S 9094 9094 7170 0 -1 1077944320 15693 0 0 0 162 7 0 0 20 0 20 0 418133379 28911378432 21957 33554432000 4194304 4196468 140724203954000 140724203936544 140033284673271 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
/proc/9096/statm: 7058442 21957 3455 1 0 7019544 0
[pid=9096/tid=9097] ppid=9094 vsize=28233768 memory=4580 CPUtime=0.68 cores=0-7
/proc/9096/task/9097/stat : 9097 (java) R 9094 9094 7170 0 -1 4202560 9346 0 0 0 64 4 0 0 20 0 20 0 418133379 28911378432 21957 33554432000 4194304 4196468 140724203954000 140033288910336 140032921590654 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9098] ppid=9094 vsize=28233768 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9098/stat : 9098 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28911378432 21957 33554432000 4194304 4196468 140724203954000 140033249954960 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9099] ppid=9094 vsize=28233768 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9099/stat : 9099 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 418133380 28911378432 21957 33554432000 4194304 4196468 140724203954000 140032834579472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9100] ppid=9094 vsize=28233768 memory=8556 CPUtime=0 cores=0-7
/proc/9096/task/9100/stat : 9100 (java) S 9094 9094 7170 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 418133380 28911378432 21957 33554432000 4194304 4196468 140724203954000 140032833526672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0

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

[pid=9096/tid=9113] ppid=9094 vsize=28769356 memory=1000 CPUtime=1.06 cores=0-7
/proc/9096/task/9113/stat : 9113 (java) S 9094 9094 7170 0 -1 1077944384 12899 0 0 0 103 3 0 0 20 0 28 0 418133384 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032661907440 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9114] ppid=9094 vsize=28769356 memory=14008 CPUtime=0 cores=0-7
/proc/9096/task/9114/stat : 9114 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 418133385 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032660855904 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9115] ppid=9094 vsize=28769356 memory=0 CPUtime=0.27 cores=0-7
/proc/9096/task/9115/stat : 9115 (java) S 9094 9094 7170 0 -1 1077944384 3470 0 0 0 12 15 0 0 20 0 28 0 418133385 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032659803184 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9280] ppid=9094 vsize=28769356 memory=8303054830060986464 CPUtime=329.94 cores=0-7
/proc/9096/task/9280/stat : 9280 (java) R 9094 9094 7170 0 -1 4202560 14867 0 0 0 32972 22 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032649539384 140032927006048 0 4 0 16800975 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9281] ppid=9094 vsize=28769356 memory=1452 CPUtime=330.05 cores=0-7
/proc/9096/task/9281/stat : 9281 (java) R 9094 9094 7170 0 -1 4202560 11610 0 0 0 32992 13 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032645329720 140032926700979 0 4 0 16800975 0 0 0 -1 2 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9282] ppid=9094 vsize=28769356 memory=7366428 CPUtime=0.01 cores=0-7
/proc/9096/task/9282/stat : 9282 (java) S 9094 9094 7170 0 -1 1077944384 88 0 0 0 1 0 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032647439440 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9283] ppid=9094 vsize=28769356 memory=3440 CPUtime=330.06 cores=0-7
/proc/9096/task/9283/stat : 9283 (java) R 9094 9094 7170 0 -1 4202560 122832 0 0 0 32901 105 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032576835976 140032926703816 0 4 0 16800975 0 0 0 -1 5 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9284] ppid=9094 vsize=28769356 memory=2832 CPUtime=329.85 cores=0-7
/proc/9096/task/9284/stat : 9284 (java) R 9094 9094 7170 0 -1 4202560 90738 0 0 0 32811 174 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032648489520 140032926700979 0 4 0 16800975 0 0 0 -1 1 0 0 2 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9285] ppid=9094 vsize=28769356 memory=5904 CPUtime=329.83 cores=0-7
/proc/9096/task/9285/stat : 9285 (java) R 9094 9094 7170 0 -1 4202560 69613 0 0 0 32829 154 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032575782320 140032928895532 0 4 0 16800975 0 0 0 -1 6 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9286] ppid=9094 vsize=28769356 memory=664 CPUtime=329.94 cores=0-7
/proc/9096/task/9286/stat : 9286 (java) R 9094 9094 7170 0 -1 4202560 11422 0 0 0 32971 23 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032650593328 140032926700979 0 4 0 16800975 0 0 0 -1 4 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9287] ppid=9094 vsize=28769356 memory=1452 CPUtime=330.06 cores=0-7
/proc/9096/task/9287/stat : 9287 (java) R 9094 9094 7170 0 -1 4202560 287012 0 0 0 32685 321 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032646382648 140033270741396 0 4 0 16800975 0 0 0 -1 3 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
Current children cumulated CPU time: 3889.45 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 7366852 KiB

[startup+530.201 s]*
/proc/loadavg: 7.11 7.10 5.72 8/221 9340
/proc/meminfo: memFree=24168968/32770624 swapFree=66995568/67108860
[pid=9094] ppid=9091 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/9094/stat : 9094 (xcsp3-exec) S 9091 9094 7170 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 418133378 115843072 363 33554432000 4194304 5098028 140730869140880 140730869138984 140117651518076 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38903808 140730869142391 140730869142633 140730869142633 140730869145546 0
/proc/9094/statm: 28282 363 305 221 0 87 0
[pid=9096] ppid=9094 vsize=28769356 memory=7365400 CPUtime=3892.31 cores=0-7
/proc/9096/stat : 9096 (java) S 9094 9094 7170 0 -1 1077944320 973593 0 0 0 388020 1211 0 0 20 0 28 0 418133379 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140724203936544 140033284673271 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
/proc/9096/statm: 7192339 1841350 3549 1 0 7153441 0
[pid=9096/tid=9097] ppid=9094 vsize=28769356 memory=8317482817917895235 CPUtime=0.77 cores=0-7
/proc/9096/task/9097/stat : 9097 (java) S 9094 9094 7170 0 -1 1077944384 9750 0 0 0 73 4 0 0 20 0 28 0 418133379 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140033288914048 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9098] ppid=9094 vsize=28769356 memory=4476 CPUtime=2.51 cores=0-7
/proc/9096/task/9098/stat : 9098 (java) S 9094 9094 7170 0 -1 1077944384 11600 0 0 0 221 30 0 0 20 0 28 0 418133380 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140033249954960 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9099] ppid=9094 vsize=28769356 memory=4104 CPUtime=2.49 cores=0-7
/proc/9096/task/9099/stat : 9099 (java) S 9094 9094 7170 0 -1 1077944384 9740 0 0 0 220 29 0 0 20 0 28 0 418133380 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032834579472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9100] ppid=9094 vsize=28769356 memory=1408 CPUtime=2.49 cores=0-7
/proc/9096/task/9100/stat : 9100 (java) S 9094 9094 7170 0 -1 1077944384 12187 0 0 0 218 31 0 0 20 0 28 0 418133380 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032833526672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9101] ppid=9094 vsize=28769356 memory=3828 CPUtime=2.48 cores=0-7
/proc/9096/task/9101/stat : 9101 (java) S 9094 9094 7170 0 -1 1077944384 12209 0 0 0 218 30 0 0 20 0 28 0 418133380 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032832473872 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9102] ppid=9094 vsize=28769356 memory=1452 CPUtime=2.54 cores=0-7
/proc/9096/task/9102/stat : 9102 (java) S 9094 9094 7170 0 -1 1077944384 9966 0 0 0 226 28 0 0 20 0 28 0 418133380 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032831421072 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9103] ppid=9094 vsize=28769356 memory=7365400 CPUtime=2.48 cores=0-7
/proc/9096/task/9103/stat : 9103 (java) S 9094 9094 7170 0 -1 1077944384 9560 0 0 0 218 30 0 0 20 0 28 0 418133380 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032830368272 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 2 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9104] ppid=9094 vsize=28769356 memory=1616 CPUtime=2.44 cores=0-7
/proc/9096/task/9104/stat : 9104 (java) S 9094 9094 7170 0 -1 1077944384 8917 0 0 0 212 32 0 0 20 0 28 0 418133380 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032829315472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9105] ppid=9094 vsize=28769356 memory=3440 CPUtime=2.53 cores=0-7
/proc/9096/task/9105/stat : 9105 (java) S 9094 9094 7170 0 -1 1077944384 10200 0 0 0 223 30 0 0 20 0 28 0 418133380 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032828262672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 2 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9106] ppid=9094 vsize=28769356 memory=2832 CPUtime=0.6 cores=0-7
/proc/9096/task/9106/stat : 9106 (java) S 9094 9094 7170 0 -1 1077944384 55578 0 0 0 42 18 0 0 20 0 28 0 418133381 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032785730416 140033284684418 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9107] ppid=9094 vsize=28769356 memory=820 CPUtime=0 cores=0-7
/proc/9096/task/9107/stat : 9107 (java) S 9094 9094 7170 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 28 0 418133382 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032784676448 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9108] ppid=9094 vsize=28769356 memory=1764 CPUtime=0 cores=0-7
/proc/9096/task/9108/stat : 9108 (java) S 9094 9094 7170 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 28 0 418133382 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032783623552 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9109] ppid=9094 vsize=28769356 memory=288230574492221466 CPUtime=0 cores=0-7
/proc/9096/task/9109/stat : 9109 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 418133384 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032782571856 140033284691867 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9110] ppid=9094 vsize=28769356 memory=288230621803970871 CPUtime=2.34 cores=0-7
/proc/9096/task/9110/stat : 9110 (java) S 9094 9094 7170 0 -1 1077944384 14402 0 0 0 231 3 0 0 20 0 28 0 418133384 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032781519216 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9111] ppid=9094 vsize=28769356 memory=14136632290839084 CPUtime=2.35 cores=0-7
/proc/9096/task/9111/stat : 9111 (java) S 9094 9094 7170 0 -1 1077944384 18581 0 0 0 232 3 0 0 20 0 28 0 418133384 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032780466416 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9112] ppid=9094 vsize=28769356 memory=920 CPUtime=1.96 cores=0-7
/proc/9096/task/9112/stat : 9112 (java) S 9094 9094 7170 0 -1 1077944384 11513 0 0 0 194 2 0 0 20 0 28 0 418133384 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032779413616 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9113] ppid=9094 vsize=28769356 memory=4476 CPUtime=1.06 cores=0-7
/proc/9096/task/9113/stat : 9113 (java) S 9094 9094 7170 0 -1 1077944384 12899 0 0 0 103 3 0 0 20 0 28 0 418133384 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032661907440 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9114] ppid=9094 vsize=28769356 memory=4104 CPUtime=0 cores=0-7
/proc/9096/task/9114/stat : 9114 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 418133385 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032660855904 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9115] ppid=9094 vsize=28769356 memory=1408 CPUtime=0.27 cores=0-7
/proc/9096/task/9115/stat : 9115 (java) S 9094 9094 7170 0 -1 1077944384 3470 0 0 0 12 15 0 0 20 0 28 0 418133385 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032659803184 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9280] ppid=9094 vsize=28769356 memory=3828 CPUtime=330.35 cores=0-7
/proc/9096/task/9280/stat : 9280 (java) R 9094 9094 7170 0 -1 4202560 14875 0 0 0 33013 22 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032649543192 140032921591047 0 4 0 16800975 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9281] ppid=9094 vsize=28769356 memory=1452 CPUtime=330.46 cores=0-7
/proc/9096/task/9281/stat : 9281 (java) R 9094 9094 7170 0 -1 4202560 11622 0 0 0 33033 13 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032645332960 140032926700961 0 4 0 16800975 0 0 0 -1 2 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9282] ppid=9094 vsize=28769356 memory=7366432 CPUtime=0.01 cores=0-7
/proc/9096/task/9282/stat : 9282 (java) S 9094 9094 7170 0 -1 1077944384 88 0 0 0 1 0 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032647439440 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9283] ppid=9094 vsize=28769356 memory=1616 CPUtime=330.47 cores=0-7
/proc/9096/task/9283/stat : 9283 (java) R 9094 9094 7170 0 -1 4202560 122854 0 0 0 32942 105 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032576835976 140033269050288 0 4 0 16800975 0 0 0 -1 5 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9284] ppid=9094 vsize=28769356 memory=8317482817917895235 CPUtime=330.25 cores=0-7
/proc/9096/task/9284/stat : 9284 (java) R 9094 9094 7170 0 -1 4202560 90743 0 0 0 32851 174 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032648489520 140032926286848 0 4 0 16800975 0 0 0 -1 1 0 0 2 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9285] ppid=9094 vsize=28769356 memory=776 CPUtime=330.24 cores=0-7
/proc/9096/task/9285/stat : 9285 (java) R 9094 9094 7170 0 -1 4202560 69617 0 0 0 32870 154 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032575782320 140032927656195 0 4 0 16800975 0 0 0 -1 6 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9286] ppid=9094 vsize=28769356 memory=1564 CPUtime=330.35 cores=0-7
/proc/9096/task/9286/stat : 9286 (java) R 9094 9094 7170 0 -1 4202560 11432 0 0 0 33012 23 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032650593464 140032927655983 0 4 0 16800975 0 0 0 -1 4 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9287] ppid=9094 vsize=28769356 memory=8112282956445269571 CPUtime=330.47 cores=0-7
/proc/9096/task/9287/stat : 9287 (java) R 9094 9094 7170 0 -1 4202560 287018 0 0 0 32726 321 0 0 20 0 28 0 418153218 29459820544 1841350 33554432000 4194304 4196468 140724203954000 140032646382648 140032927006142 0 4 0 16800975 0 0 0 -1 3 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
Current children cumulated CPU time: 3892.31 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 7366852 KiB

[startup+530.31 s]
/proc/loadavg: 7.11 7.10 5.72 8/221 9340
/proc/meminfo: memFree=24168968/32770624 swapFree=66995568/67108860
[pid=9094] ppid=9091 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/9094/stat : 9094 (xcsp3-exec) S 9091 9094 7170 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 418133378 115843072 363 33554432000 4194304 5098028 140730869140880 140730869138984 140117651518076 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38903808 140730869142391 140730869142633 140730869142633 140730869145546 0
/proc/9094/statm: 28282 363 305 221 0 87 0
[pid=9096] ppid=9094 vsize=28769356 memory=7365396 CPUtime=3893.01 cores=0-7
/proc/9096/stat : 9096 (java) S 9094 9094 7170 0 -1 1077944320 973710 0 0 0 388089 1212 0 0 20 0 28 0 418133379 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140724203936544 140033284673271 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
/proc/9096/statm: 7192339 1841349 3549 1 0 7153441 0
[pid=9096/tid=9097] ppid=9094 vsize=28769356 memory=7366428 CPUtime=0.77 cores=0-7
/proc/9096/task/9097/stat : 9097 (java) S 9094 9094 7170 0 -1 1077944384 9750 0 0 0 73 4 0 0 20 0 28 0 418133379 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140033288914048 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9098] ppid=9094 vsize=28769356 memory=7365400 CPUtime=2.52 cores=0-7
/proc/9096/task/9098/stat : 9098 (java) S 9094 9094 7170 0 -1 1077944384 11613 0 0 0 222 30 0 0 20 0 28 0 418133380 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140033249954960 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9099] ppid=9094 vsize=28769356 memory=7365400 CPUtime=2.49 cores=0-7
/proc/9096/task/9099/stat : 9099 (java) S 9094 9094 7170 0 -1 1077944384 9741 0 0 0 220 29 0 0 20 0 28 0 418133380 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032834579472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9100] ppid=9094 vsize=28769356 memory=1452 CPUtime=2.51 cores=0-7
/proc/9096/task/9100/stat : 9100 (java) S 9094 9094 7170 0 -1 1077944384 12189 0 0 0 219 32 0 0 20 0 28 0 418133380 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032833526672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9101] ppid=9094 vsize=28769356 memory=248 CPUtime=2.49 cores=0-7
/proc/9096/task/9101/stat : 9101 (java) S 9094 9094 7170 0 -1 1077944384 12217 0 0 0 219 30 0 0 20 0 28 0 418133380 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032832473872 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9102] ppid=9094 vsize=28769356 memory=280045693871968 CPUtime=2.54 cores=0-7
/proc/9096/task/9102/stat : 9102 (java) S 9094 9094 7170 0 -1 1077944384 9973 0 0 0 226 28 0 0 20 0 28 0 418133380 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032831421072 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9103] ppid=9094 vsize=28769356 memory=79740362836100 CPUtime=2.48 cores=0-7
/proc/9096/task/9103/stat : 9103 (java) S 9094 9094 7170 0 -1 1077944384 9560 0 0 0 218 30 0 0 20 0 28 0 418133380 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032830368272 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 2 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9104] ppid=9094 vsize=28769356 memory=7017355310956796139 CPUtime=2.45 cores=0-7
/proc/9096/task/9104/stat : 9104 (java) S 9094 9094 7170 0 -1 1077944384 8924 0 0 0 213 32 0 0 20 0 28 0 418133380 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032829315472 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9105] ppid=9094 vsize=28769356 memory=3632 CPUtime=2.53 cores=0-7
/proc/9096/task/9105/stat : 9105 (java) S 9094 9094 7170 0 -1 1077944384 10200 0 0 0 223 30 0 0 20 0 28 0 418133380 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032828262672 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 2 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9106] ppid=9094 vsize=28769356 memory=21704 CPUtime=0.6 cores=0-7
/proc/9096/task/9106/stat : 9106 (java) S 9094 9094 7170 0 -1 1077944384 55587 0 0 0 42 18 0 0 20 0 28 0 418133381 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032785730416 140033284684418 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9107] ppid=9094 vsize=28769356 memory=0 CPUtime=0 cores=0-7
/proc/9096/task/9107/stat : 9107 (java) S 9094 9094 7170 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 28 0 418133382 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032784676448 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9108] ppid=9094 vsize=28769356 memory=7810769406357302115 CPUtime=0 cores=0-7
/proc/9096/task/9108/stat : 9108 (java) S 9094 9094 7170 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 28 0 418133382 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032783623552 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9109] ppid=9094 vsize=28769356 memory=235 CPUtime=0 cores=0-7
/proc/9096/task/9109/stat : 9109 (java) S 9094 9094 7170 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 418133384 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032782571856 140033284691867 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9110] ppid=9094 vsize=28769356 memory=196 CPUtime=2.34 cores=0-7
/proc/9096/task/9110/stat : 9110 (java) S 9094 9094 7170 0 -1 1077944384 14402 0 0 0 231 3 0 0 20 0 28 0 418133384 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032781519216 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9111] ppid=9094 vsize=28769356 memory=7366972 CPUtime=2.35 cores=0-7
/proc/9096/task/9111/stat : 9111 (java) S 9094 9094 7170 0 -1 1077944384 18581 0 0 0 232 3 0 0 20 0 28 0 418133384 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032780466416 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9112] ppid=9094 vsize=28769356 memory=2016 CPUtime=1.96 cores=0-7
/proc/9096/task/9112/stat : 9112 (java) S 9094 9094 7170 0 -1 1077944384 11513 0 0 0 194 2 0 0 20 0 28 0 418133384 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032779413616 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9113] ppid=9094 vsize=28769356 memory=1156 CPUtime=1.06 cores=0-7
/proc/9096/task/9113/stat : 9113 (java) S 9094 9094 7170 0 -1 1077944384 12899 0 0 0 103 3 0 0 20 0 28 0 418133384 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032661907440 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9114] ppid=9094 vsize=28769356 memory=1000 CPUtime=0 cores=0-7
/proc/9096/task/9114/stat : 9114 (java) S 9094 9094 7170 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 418133385 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032660855904 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9115] ppid=9094 vsize=28769356 memory=4104 CPUtime=0.27 cores=0-7
/proc/9096/task/9115/stat : 9115 (java) S 9094 9094 7170 0 -1 1077944384 3470 0 0 0 12 15 0 0 20 0 28 0 418133385 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032659803184 140033284684418 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9280] ppid=9094 vsize=28769356 memory=1408 CPUtime=330.44 cores=0-7
/proc/9096/task/9280/stat : 9280 (java) R 9094 9094 7170 0 -1 4202560 14879 0 0 0 33022 22 0 0 20 0 28 0 418153218 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032649539384 140032927747920 0 4 0 16800975 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9281] ppid=9094 vsize=28769356 memory=8112282956445269571 CPUtime=330.56 cores=0-7
/proc/9096/task/9281/stat : 9281 (java) R 9094 9094 7170 0 -1 4202560 11625 0 0 0 33043 13 0 0 20 0 28 0 418153218 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032645329584 140032921591699 0 4 0 16800975 0 0 0 -1 2 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9282] ppid=9094 vsize=28769356 memory=6784 CPUtime=0.01 cores=0-7
/proc/9096/task/9282/stat : 9282 (java) S 9094 9094 7170 0 -1 1077944384 88 0 0 0 1 0 0 0 20 0 28 0 418153218 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032647439440 140033284683477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9283] ppid=9094 vsize=28769356 memory=1452 CPUtime=330.56 cores=0-7
/proc/9096/task/9283/stat : 9283 (java) R 9094 9094 7170 0 -1 4202560 122864 0 0 0 32951 105 0 0 20 0 28 0 418153218 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032576834928 140032921591699 0 4 0 16800975 0 0 0 -1 5 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9284] ppid=9094 vsize=28769356 memory=7365400 CPUtime=330.35 cores=0-7
/proc/9096/task/9284/stat : 9284 (java) R 9094 9094 7170 0 -1 4202560 90743 0 0 0 32861 174 0 0 20 0 28 0 418153218 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032648487352 140032926700979 0 4 0 16800975 0 0 0 -1 1 0 0 2 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9285] ppid=9094 vsize=28769356 memory=7366432 CPUtime=330.33 cores=0-7
/proc/9096/task/9285/stat : 9285 (java) R 9094 9094 7170 0 -1 4202560 69619 0 0 0 32879 154 0 0 20 0 28 0 418153218 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032575783088 140032923839454 0 4 0 16800975 0 0 0 -1 6 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9286] ppid=9094 vsize=28769356 memory=3632 CPUtime=330.44 cores=0-7
/proc/9096/task/9286/stat : 9286 (java) R 9094 9094 7170 0 -1 4202560 11432 0 0 0 33021 23 0 0 20 0 28 0 418153218 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032650593328 140032929820971 0 4 0 16800975 0 0 0 -1 4 0 0 1 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
[pid=9096/tid=9287] ppid=9094 vsize=28769356 memory=21704 CPUtime=330.56 cores=0-7
/proc/9096/task/9287/stat : 9287 (java) R 9094 9094 7170 0 -1 4202560 287069 0 0 0 32735 321 0 0 20 0 28 0 418153218 29459820544 1841349 33554432000 4194304 4196468 140724203954000 140032646384784 140033270741376 0 4 0 16800975 0 0 0 -1 3 0 0 3 0 0 6293624 6294260 38117376 140724203955178 140724203955350 140724203955350 140724203958223 0
Current children cumulated CPU time: 3893.01 s
Current children cumulated vsize: 28882484 KiB
Current children cumulated memory: 7366848 KiB

Child status: 0
Real time (s): 530.399
CPU time (s): 3893.33
CPU user time (s): 3881.15
CPU system time (s): 12.1747
CPU usage (%): 734.037
Max. virtual memory (cumulated for all children) (KiB): 28882484
Max. memory (cumulated for all children) (KiB): 7373064

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 3881.15
system time used= 12.1747
maximum resident set size= 7374180
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 976368
page faults= 0
swaps= 0
block input operations= 0
block output operations= 1000
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 41486
involuntary context switches= 29552


# summary of solver processes directly reported to runsolver:
#   pid: 9094
#   total CPU time (s): 3893.33
#   total CPU user time (s): 3881.15
#   total CPU system time (s): 12.1747

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 4.66431 second user time and 6.25804 second system time

The end

Launcher Data

Begin job on node102 at 2019-09-14 01:52:54
IDJOB=4394521
IDBENCH=115953
IDSOLVER=2843
FILE ID=node102/4394521-1568418819
RUNJOBID= node102-1568416723-7197
PBS_JOBID= 21702264
Free space on /tmp= 59328 MiB

SOLVER NAME= choco-solver parallel 2019-06-14
BENCH NAME= XCSP17/StillLife/StillLife-m1-s1/StillLife-06-12.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-4394521-1568418819/watcher-4394521-1568418819 -o /tmp/evaluation-result-4394521-1568418819/solver-4394521-1568418819 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node102-1568416723-7197 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 80656897 HOME/instance-4394521-1568418819.xml

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

MD5SUM BENCH= 7162d4a2bfb4649e5ff01c254dbd946c
RANDOM SEED=80656897

node102.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.13
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.54
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.13
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.54
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.13
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.54
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.13
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.54
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        31535380 kB
MemAvailable:   31918568 kB
Buffers:          166552 kB
Cached:           509804 kB
SwapCached:         9668 kB
Active:           337692 kB
Inactive:         349236 kB
Active(anon):       7904 kB
Inactive(anon):    33848 kB
Active(file):     329788 kB
Inactive(file):   315388 kB
Unevictable:      110432 kB
Mlocked:          110432 kB
SwapTotal:      67108860 kB
SwapFree:       66995524 kB
Dirty:             26224 kB
Writeback:             0 kB
AnonPages:        111808 kB
Mapped:            34912 kB
Shmem:             22540 kB
Slab:             136428 kB
SReclaimable:     107696 kB
SUnreclaim:        28732 kB
KernelStack:        3376 kB
PageTables:         5104 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     498524 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     67584 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      118144 kB
DirectMap2M:    33427456 kB

Free space on /tmp at the end= 59304 MiB
End job on node102 at 2019-09-14 02:01:45