Trace number 4248009

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
R1: choco-solver 4.0.5 (2017-07-05)? 582.212 285.924

General information on the benchmark

NameQueenAttacking/QueenAttacking-m1-s1/
QueenAttacking-19.xml
MD5SUM30814e96d0bc4cf3d8fc4c07c399f55d
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables434
Number of constraints433
Number of domains2
Minimum domain size2
Maximum domain size361
Distribution of domain sizes[{"size":2,"count":72},{"size":361,"count":362}]
Minimum variable degree2
Maximum variable degree72
Distribution of variable degrees[{"degree":2,"count":74},{"degree":3,"count":287},{"degree":4,"count":72},{"degree":72,"count":1}]
Minimum constraint arity2
Maximum constraint arity361
Distribution of constraint arities[{"arity":2,"count":360},{"arity":3,"count":72},{"arity":361,"count":1}]
Number of extensional constraints0
Number of intensional constraints432
Distribution of constraint types[{"type":"intension","count":432},{"type":"allDifferent","count":1}]
Optimization problemYES
Type of objectivemin SUM

Solver Data

0.00/0.00	c java -server -Xmx10000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4248009-1500691233.xml"  -tl '2400s' -p 8 -x 0
0.00/0.20	c [HOME/instance-4248009-1500691233.xml, -tl, 2400s, -p, 8, -x, 0]
0.00/0.27	c 8 solvers in parallel
0.00/0.35	c parse instance...
518.81/277.04	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
518.81/277.04		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
518.81/277.04		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
518.81/277.04		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1853)
518.81/277.04		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1809)
518.81/277.04		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
518.81/277.04		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
554.49/281.98		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
554.49/281.98		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
554.49/281.98		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
554.49/281.98		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
554.49/281.98		at org.xcsp.parser.XCallbacks$$Lambda$62/394721749.accept(Unknown Source)
554.49/281.98		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
554.49/281.98		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
554.49/281.98		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
554.49/281.98		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
554.49/281.98		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
554.49/281.98		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
554.49/281.98		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
554.49/281.98		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
554.49/281.98		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:114)
554.49/281.98		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:101)
554.49/281.98		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
582.10/285.87	s UNKNOWN
582.10/285.87	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver Copyright (C) 2010-2013 Olivier ROUSSEL

This is runsolver version 3.3.7 (svn: 2553)

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.

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4248009-1500691233/watcher-4248009-1500691233 -o /tmp/evaluation-result-4248009-1500691233/solver-4248009-1500691233 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node133-1500682387-16945 --watchdog 2560 ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 1120650365 HOME/instance-4248009-1500691233.xml 

pid=15596
running on 8 cores: 1,3,5,7,9,11,13,15

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Current StackSize limit: 8192 KiB


[startup+0 s]
/proc/loadavg: 10.70 14.19 13.10 3/268 15599
/proc/meminfo: memFree=29179848/32770624 swapFree=5900/263780
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0

[startup+0.1001 s]
/proc/loadavg: 10.70 14.19 13.10 3/268 15599
/proc/meminfo: memFree=29179848/32770624 swapFree=5900/263780
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.200373 s]
/proc/loadavg: 10.70 14.19 13.10 3/268 15599
/proc/meminfo: memFree=29179848/32770624 swapFree=5900/263780
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.300333 s]
/proc/loadavg: 10.70 14.19 13.10 3/268 15599
/proc/meminfo: memFree=29179848/32770624 swapFree=5900/263780
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.700269 s]
/proc/loadavg: 10.70 14.19 13.10 3/268 15599
/proc/meminfo: memFree=29179848/32770624 swapFree=5900/263780
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.50073 s]
/proc/loadavg: 10.70 14.19 13.10 13/289 15620
/proc/meminfo: memFree=28218188/32770624 swapFree=5900/263812
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
[pid=15600] ppid=15599 vsize=13269256 CPUtime=3.62 cores=1,3,5,7,9,11,13,15
/proc/15600/stat : 15600 (java) S 15599 15599 16913 0 -1 1077944320 43113 0 0 0 353 9 0 0 20 0 20 0 4390248 13587718144 32262 33554432000 4194304 4196468 140732207928608 140732207911152 140456470568695 0 0 0 16800975 18446744073709551615 0 0 17 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
/proc/15600/statm: 3317314 32262 3207 1 0 3304547 0
[pid=15600/tid=15601] ppid=15599 vsize=13269256 CPUtime=1.47 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15601/stat : 15601 (java) R 15599 15599 16913 0 -1 4202560 6563 0 0 0 144 3 0 0 20 0 20 0 4390248 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456474802408 140456110191392 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15603] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15603/stat : 15603 (java) S 15599 15599 16913 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456438127760 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15604] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15604/stat : 15604 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456068582416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15605] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15605/stat : 15605 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456067529616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15606] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15606/stat : 15606 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456066476816 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15607] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15607/stat : 15607 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456065424016 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15608] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15608/stat : 15608 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456064371216 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15609] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15609/stat : 15609 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456063318416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15610] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15610/stat : 15610 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 32262 33554432000 4194304 4196468 140732207928608 140456062265616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15611] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15611/stat : 15611 (java) S 15599 15599 16913 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 4390251 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455798631280 140456470579842 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15612] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15612/stat : 15612 (java) S 15599 15599 16913 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 4390252 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455797577248 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15613] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15613/stat : 15613 (java) S 15599 15599 16913 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 4390252 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455796524400 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15614] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15614/stat : 15614 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390256 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455795472720 140456470587291 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15615] ppid=15599 vsize=13269256 CPUtime=0.62 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15615/stat : 15615 (java) S 15599 15599 16913 0 -1 1077944384 8387 0 0 0 61 1 0 0 20 0 20 0 4390256 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455794420080 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15616] ppid=15599 vsize=13269256 CPUtime=0.6 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15616/stat : 15616 (java) S 15599 15599 16913 0 -1 1077944384 12259 0 0 0 59 1 0 0 20 0 20 0 4390256 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455793367280 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15617] ppid=15599 vsize=13269256 CPUtime=0.54 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15617/stat : 15617 (java) S 15599 15599 16913 0 -1 1077944384 12773 0 0 0 52 2 0 0 20 0 20 0 4390256 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455792314480 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15618] ppid=15599 vsize=13269256 CPUtime=0.34 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15618/stat : 15618 (java) S 15599 15599 16913 0 -1 1077944384 1819 0 0 0 34 0 0 0 20 0 20 0 4390256 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455791261680 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15619] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15619/stat : 15619 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4390256 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455790210144 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15620] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15620/stat : 15620 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4390257 13587718144 32262 33554432000 4194304 4196468 140732207928608 140455789157424 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
Current children cumulated CPU time (s) 3.62
Current children cumulated vsize (KiB) 13278768

[startup+3.10074 s]
/proc/loadavg: 10.33 14.05 13.06 9/289 15620
/proc/meminfo: memFree=27852932/32770624 swapFree=5900/263808
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
[pid=15600] ppid=15599 vsize=13269256 CPUtime=5.31 cores=1,3,5,7,9,11,13,15
/proc/15600/stat : 15600 (java) S 15599 15599 16913 0 -1 1077944320 44764 0 0 0 521 10 0 0 20 0 20 0 4390248 13587718144 35517 33554432000 4194304 4196468 140732207928608 140732207911152 140456470568695 0 0 0 16800975 18446744073709551615 0 0 17 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
/proc/15600/statm: 3317314 35517 3207 1 0 3304547 0
[pid=15600/tid=15601] ppid=15599 vsize=13269256 CPUtime=3.07 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15601/stat : 15601 (java) R 15599 15599 16913 0 -1 4202560 7211 0 0 0 304 3 0 0 20 0 20 0 4390248 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456474806472 140456110736362 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15603] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15603/stat : 15603 (java) S 15599 15599 16913 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456438127760 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15604] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15604/stat : 15604 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456068582416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15605] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15605/stat : 15605 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456067529616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15606] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15606/stat : 15606 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456066476816 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15607] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15607/stat : 15607 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456065424016 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15608] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15608/stat : 15608 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456064371216 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15609] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15609/stat : 15609 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456063318416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15610] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15610/stat : 15610 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 35517 33554432000 4194304 4196468 140732207928608 140456062265616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15611] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15611/stat : 15611 (java) S 15599 15599 16913 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 4390251 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455798631280 140456470579842 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15612] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15612/stat : 15612 (java) S 15599 15599 16913 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 4390252 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455797577248 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15613] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15613/stat : 15613 (java) S 15599 15599 16913 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 4390252 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455796524400 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15614] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15614/stat : 15614 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390256 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455795472720 140456470587291 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15615] ppid=15599 vsize=13269256 CPUtime=0.62 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15615/stat : 15615 (java) S 15599 15599 16913 0 -1 1077944384 8410 0 0 0 61 1 0 0 20 0 20 0 4390256 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455794420080 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15616] ppid=15599 vsize=13269256 CPUtime=0.61 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15616/stat : 15616 (java) S 15599 15599 16913 0 -1 1077944384 12263 0 0 0 60 1 0 0 20 0 20 0 4390256 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455793367280 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15617] ppid=15599 vsize=13269256 CPUtime=0.56 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15617/stat : 15617 (java) S 15599 15599 16913 0 -1 1077944384 12911 0 0 0 54 2 0 0 20 0 20 0 4390256 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455792314480 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15618] ppid=15599 vsize=13269256 CPUtime=0.4 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15618/stat : 15618 (java) S 15599 15599 16913 0 -1 1077944384 2618 0 0 0 40 0 0 0 20 0 20 0 4390256 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455791261680 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15619] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15619/stat : 15619 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4390256 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455790210144 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15620] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15620/stat : 15620 (java) S 15599 15599 16913 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 20 0 4390257 13587718144 35517 33554432000 4194304 4196468 140732207928608 140455789157424 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
Current children cumulated CPU time (s) 5.31
Current children cumulated vsize (KiB) 13278768

[startup+6.30079 s]
/proc/loadavg: 10.33 14.05 13.06 10/297 15628
/proc/meminfo: memFree=27837196/32770624 swapFree=5900/263820
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
[pid=15600] ppid=15599 vsize=13269256 CPUtime=8.63 cores=1,3,5,7,9,11,13,15
/proc/15600/stat : 15600 (java) S 15599 15599 16913 0 -1 1077944320 49872 0 0 0 852 11 0 0 20 0 20 0 4390248 13587718144 37273 33554432000 4194304 4196468 140732207928608 140732207911152 140456470568695 0 0 0 16800975 18446744073709551615 0 0 17 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
/proc/15600/statm: 3317314 37273 3211 1 0 3304547 0
[pid=15600/tid=15601] ppid=15599 vsize=13269256 CPUtime=6.27 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15601/stat : 15601 (java) R 15599 15599 16913 0 -1 4202560 8185 0 0 0 623 4 0 0 20 0 20 0 4390248 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456474804000 140456110735460 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15603] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15603/stat : 15603 (java) S 15599 15599 16913 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456438127760 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15604] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15604/stat : 15604 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456068582416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15605] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15605/stat : 15605 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456067529616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15606] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15606/stat : 15606 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456066476816 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15607] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15607/stat : 15607 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456065424016 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15608] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15608/stat : 15608 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456064371216 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15609] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15609/stat : 15609 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456063318416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15610] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15610/stat : 15610 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390249 13587718144 37273 33554432000 4194304 4196468 140732207928608 140456062265616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15611] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15611/stat : 15611 (java) S 15599 15599 16913 0 -1 1077944384 253 0 0 0 0 0 0 0 20 0 20 0 4390251 13587718144 37273 33554432000 4194304 4196468 140732207928608 140455798631280 140456470579842 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15612] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15612/stat : 15612 (java) S 15599 15599 16913 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 4390252 13587718144 37273 33554432000 4194304 4196468 140732207928608 140455797577248 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15613] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15613/stat : 15613 (java) S 15599 15599 16913 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 4390252 13587718144 37273 33554432000 4194304 4196468 140732207928608 140455796524400 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15614] ppid=15599 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15614/stat : 15614 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4390256 13587718144 37273 33554432000 4194304 4196468 140732207928608 140455795472720 140456470587291 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0

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

/proc/meminfo: memFree=17132456/32770624 swapFree=5900/264148
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
[pid=15600] ppid=15599 vsize=13335820 CPUtime=576.6 cores=1,3,5,7,9,11,13,15
/proc/15600/stat : 15600 (java) S 15599 15599 16913 0 -1 1077944320 178663 0 0 0 53660 4000 0 0 20 0 21 0 4390248 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140732207911152 140456470568695 0 0 0 16800975 18446744073709551615 0 0 17 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
/proc/15600/statm: 3333955 2565834 3279 1 0 3321188 0
[pid=15600/tid=15601] ppid=15599 vsize=13335820 CPUtime=234.43 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15601/stat : 15601 (java) S 15599 15599 16913 0 -1 1077944384 14343 0 0 0 23436 7 0 0 20 0 21 0 4390248 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456474809376 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15603] ppid=15599 vsize=13335820 CPUtime=40.98 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15603/stat : 15603 (java) R 15599 15599 16913 0 -1 4202560 8664 0 0 0 3616 482 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456438127880 140456463196903 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15604] ppid=15599 vsize=13335820 CPUtime=40.91 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15604/stat : 15604 (java) R 15599 15599 16913 0 -1 4202560 8882 0 0 0 3562 529 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456068582536 140456453951728 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15605] ppid=15599 vsize=13335820 CPUtime=40.97 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15605/stat : 15605 (java) R 15599 15599 16913 0 -1 4202560 7746 0 0 0 3621 476 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456067529736 140456463196903 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15606] ppid=15599 vsize=13335820 CPUtime=41.12 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15606/stat : 15606 (java) R 15599 15599 16913 0 -1 4202560 8986 0 0 0 3615 497 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456066477016 140456455268547 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15607] ppid=15599 vsize=13335820 CPUtime=41.05 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15607/stat : 15607 (java) R 15599 15599 16913 0 -1 4202560 12123 0 0 0 3617 488 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456065423824 140456463196903 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15608] ppid=15599 vsize=13335820 CPUtime=41.13 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15608/stat : 15608 (java) R 15599 15599 16913 0 -1 4202560 8734 0 0 0 3636 477 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456064371024 140456463196903 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15609] ppid=15599 vsize=13335820 CPUtime=41.24 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15609/stat : 15609 (java) R 15599 15599 16913 0 -1 4202560 9277 0 0 0 3606 518 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456063318536 140456463196903 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15610] ppid=15599 vsize=13335820 CPUtime=41.06 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15610/stat : 15610 (java) R 15599 15599 16913 0 -1 4202560 7800 0 0 0 3603 503 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456062265424 140456463196903 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15611] ppid=15599 vsize=13335820 CPUtime=8.57 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15611/stat : 15611 (java) S 15599 15599 16913 0 -1 1077944384 31572 0 0 0 855 2 0 0 20 0 21 0 4390251 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455798629824 140456470578901 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15612] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15612/stat : 15612 (java) S 15599 15599 16913 0 -1 1077944384 104 0 0 0 0 0 0 0 20 0 21 0 4390252 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455797577312 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15613] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15613/stat : 15613 (java) S 15599 15599 16913 0 -1 1077944384 135 0 0 0 0 0 0 0 20 0 21 0 4390252 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455796524416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15614] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15614/stat : 15614 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455795472720 140456470587291 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15615] ppid=15599 vsize=13335820 CPUtime=1.58 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15615/stat : 15615 (java) S 15599 15599 16913 0 -1 1077944384 14691 0 0 0 156 2 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455794420080 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 11 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15616] ppid=15599 vsize=13335820 CPUtime=1.13 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15616/stat : 15616 (java) S 15599 15599 16913 0 -1 1077944384 16185 0 0 0 112 1 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455793367280 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 6 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15617] ppid=15599 vsize=13335820 CPUtime=1.53 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15617/stat : 15617 (java) S 15599 15599 16913 0 -1 1077944384 18887 0 0 0 150 3 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455792314480 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15618] ppid=15599 vsize=13335820 CPUtime=0.63 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15618/stat : 15618 (java) S 15599 15599 16913 0 -1 1077944384 7528 0 0 0 62 1 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455791261680 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15619] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15619/stat : 15619 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455790210144 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15620] ppid=15599 vsize=13335820 CPUtime=0.09 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15620/stat : 15620 (java) S 15599 15599 16913 0 -1 1077944384 1744 0 0 0 4 5 0 0 20 0 21 0 4390257 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455789157424 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 8 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15633] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15633/stat : 15633 (java) S 15599 15599 16913 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 21 0 4418446 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455781146304 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
Current children cumulated CPU time (s) 576.6
Current children cumulated vsize (KiB) 13345332

[startup+285.601 s]
/proc/loadavg: 11.16 11.70 12.29 16/295 15633
/proc/meminfo: memFree=17132456/32770624 swapFree=5900/264148
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
[pid=15600] ppid=15599 vsize=13335820 CPUtime=581.9 cores=1,3,5,7,9,11,13,15
/proc/15600/stat : 15600 (java) S 15599 15599 16913 0 -1 1077944320 179051 0 0 0 54188 4002 0 0 20 0 21 0 4390248 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140732207911152 140456470568695 0 0 0 16800975 18446744073709551615 0 0 17 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
/proc/15600/statm: 3333955 2565834 3279 1 0 3321188 0
[pid=15600/tid=15601] ppid=15599 vsize=13335820 CPUtime=234.43 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15601/stat : 15601 (java) S 15599 15599 16913 0 -1 1077944384 14343 0 0 0 23436 7 0 0 20 0 21 0 4390248 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456474809376 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15603] ppid=15599 vsize=13335820 CPUtime=41.64 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15603/stat : 15603 (java) S 15599 15599 16913 0 -1 1077944384 8664 0 0 0 3681 483 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456438127760 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15604] ppid=15599 vsize=13335820 CPUtime=41.54 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15604/stat : 15604 (java) S 15599 15599 16913 0 -1 1077944384 8882 0 0 0 3624 530 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456068582416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15605] ppid=15599 vsize=13335820 CPUtime=41.61 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15605/stat : 15605 (java) S 15599 15599 16913 0 -1 1077944384 7746 0 0 0 3685 476 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456067529616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15606] ppid=15599 vsize=13335820 CPUtime=41.79 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15606/stat : 15606 (java) S 15599 15599 16913 0 -1 1077944384 8986 0 0 0 3682 497 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456066476816 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15607] ppid=15599 vsize=13335820 CPUtime=41.7 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15607/stat : 15607 (java) S 15599 15599 16913 0 -1 1077944384 12123 0 0 0 3682 488 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456065424016 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15608] ppid=15599 vsize=13335820 CPUtime=41.78 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15608/stat : 15608 (java) S 15599 15599 16913 0 -1 1077944384 8734 0 0 0 3701 477 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456064371216 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15609] ppid=15599 vsize=13335820 CPUtime=41.88 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15609/stat : 15609 (java) S 15599 15599 16913 0 -1 1077944384 9277 0 0 0 3670 518 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456063318416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15610] ppid=15599 vsize=13335820 CPUtime=41.69 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15610/stat : 15610 (java) S 15599 15599 16913 0 -1 1077944384 7800 0 0 0 3666 503 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456062265616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15611] ppid=15599 vsize=13335820 CPUtime=8.71 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15611/stat : 15611 (java) R 15599 15599 16913 0 -1 4202560 31960 0 0 0 869 2 0 0 20 0 21 0 4390251 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455798629712 140456455026328 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15612] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15612/stat : 15612 (java) S 15599 15599 16913 0 -1 1077944384 104 0 0 0 0 0 0 0 20 0 21 0 4390252 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455797577312 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15613] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15613/stat : 15613 (java) S 15599 15599 16913 0 -1 1077944384 135 0 0 0 0 0 0 0 20 0 21 0 4390252 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455796524416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15614] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15614/stat : 15614 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455795472720 140456470587291 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15615] ppid=15599 vsize=13335820 CPUtime=1.58 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15615/stat : 15615 (java) S 15599 15599 16913 0 -1 1077944384 14691 0 0 0 156 2 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455794420080 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 11 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15616] ppid=15599 vsize=13335820 CPUtime=1.13 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15616/stat : 15616 (java) S 15599 15599 16913 0 -1 1077944384 16185 0 0 0 112 1 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455793367280 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 6 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15617] ppid=15599 vsize=13335820 CPUtime=1.53 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15617/stat : 15617 (java) S 15599 15599 16913 0 -1 1077944384 18887 0 0 0 150 3 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455792314480 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15618] ppid=15599 vsize=13335820 CPUtime=0.63 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15618/stat : 15618 (java) S 15599 15599 16913 0 -1 1077944384 7528 0 0 0 62 1 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455791261680 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15619] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15619/stat : 15619 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455790210144 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15620] ppid=15599 vsize=13335820 CPUtime=0.09 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15620/stat : 15620 (java) S 15599 15599 16913 0 -1 1077944384 1744 0 0 0 4 5 0 0 20 0 21 0 4390257 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455789157424 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 8 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15633] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15633/stat : 15633 (java) S 15599 15599 16913 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 21 0 4418446 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455781146304 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
Current children cumulated CPU time (s) 581.9
Current children cumulated vsize (KiB) 13345332

[startup+285.801 s]
/proc/loadavg: 11.16 11.70 12.29 16/295 15633
/proc/meminfo: memFree=17132456/32770624 swapFree=5900/264148
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
[pid=15600] ppid=15599 vsize=13335820 CPUtime=582.1 cores=1,3,5,7,9,11,13,15
/proc/15600/stat : 15600 (java) S 15599 15599 16913 0 -1 1077944320 179051 0 0 0 54208 4002 0 0 20 0 21 0 4390248 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140732207911152 140456470568695 0 0 0 16800975 18446744073709551615 0 0 17 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
/proc/15600/statm: 3333955 2565834 3279 1 0 3321188 0
[pid=15600/tid=15601] ppid=15599 vsize=13335820 CPUtime=234.43 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15601/stat : 15601 (java) S 15599 15599 16913 0 -1 1077944384 14343 0 0 0 23436 7 0 0 20 0 21 0 4390248 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456474809376 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15603] ppid=15599 vsize=13335820 CPUtime=41.64 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15603/stat : 15603 (java) S 15599 15599 16913 0 -1 1077944384 8664 0 0 0 3681 483 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456438127760 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15604] ppid=15599 vsize=13335820 CPUtime=41.54 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15604/stat : 15604 (java) S 15599 15599 16913 0 -1 1077944384 8882 0 0 0 3624 530 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456068582416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15605] ppid=15599 vsize=13335820 CPUtime=41.61 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15605/stat : 15605 (java) S 15599 15599 16913 0 -1 1077944384 7746 0 0 0 3685 476 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456067529616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15606] ppid=15599 vsize=13335820 CPUtime=41.79 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15606/stat : 15606 (java) S 15599 15599 16913 0 -1 1077944384 8986 0 0 0 3682 497 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456066476816 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15607] ppid=15599 vsize=13335820 CPUtime=41.7 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15607/stat : 15607 (java) S 15599 15599 16913 0 -1 1077944384 12123 0 0 0 3682 488 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456065424016 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15608] ppid=15599 vsize=13335820 CPUtime=41.78 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15608/stat : 15608 (java) S 15599 15599 16913 0 -1 1077944384 8734 0 0 0 3701 477 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456064371216 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15609] ppid=15599 vsize=13335820 CPUtime=41.88 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15609/stat : 15609 (java) S 15599 15599 16913 0 -1 1077944384 9277 0 0 0 3670 518 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456063318416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15610] ppid=15599 vsize=13335820 CPUtime=41.69 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15610/stat : 15610 (java) S 15599 15599 16913 0 -1 1077944384 7800 0 0 0 3666 503 0 0 20 0 21 0 4390249 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140456062265616 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15611] ppid=15599 vsize=13335820 CPUtime=8.91 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15611/stat : 15611 (java) R 15599 15599 16913 0 -1 4202560 31960 0 0 0 889 2 0 0 20 0 21 0 4390251 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455798629712 140456455565119 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15612] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15612/stat : 15612 (java) S 15599 15599 16913 0 -1 1077944384 104 0 0 0 0 0 0 0 20 0 21 0 4390252 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455797577312 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15613] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15613/stat : 15613 (java) S 15599 15599 16913 0 -1 1077944384 135 0 0 0 0 0 0 0 20 0 21 0 4390252 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455796524416 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15614] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15614/stat : 15614 (java) S 15599 15599 16913 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455795472720 140456470587291 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15615] ppid=15599 vsize=13335820 CPUtime=1.58 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15615/stat : 15615 (java) S 15599 15599 16913 0 -1 1077944384 14691 0 0 0 156 2 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455794420080 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 11 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15616] ppid=15599 vsize=13335820 CPUtime=1.13 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15616/stat : 15616 (java) S 15599 15599 16913 0 -1 1077944384 16185 0 0 0 112 1 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455793367280 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 6 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15617] ppid=15599 vsize=13335820 CPUtime=1.53 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15617/stat : 15617 (java) S 15599 15599 16913 0 -1 1077944384 18887 0 0 0 150 3 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455792314480 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15618] ppid=15599 vsize=13335820 CPUtime=0.63 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15618/stat : 15618 (java) S 15599 15599 16913 0 -1 1077944384 7528 0 0 0 62 1 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455791261680 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15619] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15619/stat : 15619 (java) S 15599 15599 16913 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4390256 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455790210144 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15620] ppid=15599 vsize=13335820 CPUtime=0.09 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15620/stat : 15620 (java) S 15599 15599 16913 0 -1 1077944384 1744 0 0 0 4 5 0 0 20 0 21 0 4390257 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455789157424 140456470579842 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 8 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
[pid=15600/tid=15633] ppid=15599 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15633/stat : 15633 (java) S 15599 15599 16913 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 21 0 4418446 13655879680 2565834 33554432000 4194304 4196468 140732207928608 140455781146304 140456470578901 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 31928320 140732207936700 140732207936876 140732207936876 140732207939535 0
Current children cumulated CPU time (s) 582.1
Current children cumulated vsize (KiB) 13345332

[startup+285.901 s]
/proc/loadavg: 11.16 11.70 12.29 16/295 15633
/proc/meminfo: memFree=17132456/32770624 swapFree=5900/264148
[pid=15599] ppid=15596 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/15599/stat : 15599 (xcsp3-exec) S 15596 15599 16913 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 4390248 9740288 346 33554432000 4194304 5098028 140720878917008 140720878915112 139682332815996 0 65536 4100 65538 18446744071579417331 0 0 17 13 0 0 0 0 0 7196144 7232144 38928384 140720878924942 140720878925152 140720878925152 140720878927851 0
/proc/15599/statm: 2378 346 289 221 0 87 0
[pid=15600] ppid=15599 vsize=0 CPUtime=582.18 cores=1,3,5,7,9,11,13,15
/proc/15600/stat : 15600 (java) Z 15599 15599 16913 0 -1 4227084 179106 0 0 0 54214 4004 0 0 20 0 2 0 4390248 0 0 33554432000 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 11 0 0 0 0 0 0 0 0 0 0 0 0 0
/proc/15600/statm: 0 0 0 0 0 0 0
[pid=15600/tid=15603] ppid=15599 vsize=0 CPUtime=41.65 cores=1,3,5,7,9,11,13,15
/proc/15600/task/15603/stat : 15603 (java) R 15599 15599 16913 0 -1 4203588 8664 0 0 0 3681 484 0 0 20 0 2 0 4390249 0 0 33554432000 0 0 0 0 0 0 4 0 16800975 18446744073709551615 0 0 -1 9 0 0 0 0 0 0 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 582.18
Current children cumulated vsize (KiB) 9512

Child status: 1
Real time (s): 285.924
CPU time (s): 582.212
CPU user time (s): 542.145
CPU system time (s): 40.0665
CPU usage (%): 203.625
Max. virtual memory (cumulated for all children) (KiB): 13345332

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 542.145
system time used= 40.0665
maximum resident set size= 10263436
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 179635
page faults= 0
swaps= 0
block input operations= 0
block output operations= 472
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 13961
involuntary context switches= 41660

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.15198 second user time and 2.80154 second system time

The end

Launcher Data

Begin job on node133 at 2017-07-22 04:40:33
IDJOB=4248009
IDBENCH=130626
IDSOLVER=2625
FILE ID=node133/4248009-1500691233
RUNJOBID= node133-1500682387-16945
PBS_JOBID= 20623321
Free space on /tmp= 62008 MiB

SOLVER NAME= choco-solver 4.0.5
BENCH NAME= XCSP17/QueenAttacking/QueenAttacking-m1-s1/QueenAttacking-19.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 10000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4248009-1500691233/watcher-4248009-1500691233 -o /tmp/evaluation-result-4248009-1500691233/solver-4248009-1500691233 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node133-1500682387-16945 --watchdog 2560  ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 1120650365 HOME/instance-4248009-1500691233.xml

TIME LIMIT= 2400 seconds
MEMORY LIMIT= 15500 MiB
NBCORE= 8

MD5SUM BENCH= 30814e96d0bc4cf3d8fc4c07c399f55d
RANDOM SEED=1120650365

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

/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		: 1600.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
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	: 5334.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		: 1733.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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	: 5229.85
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		: 1600.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
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	: 5334.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		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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	: 5229.85
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	: 8
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	: 5334.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		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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	: 5229.85
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		: 1600.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
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	: 5334.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		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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	: 5229.85
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 8
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	: 8
core id		: 0
cpu cores	: 4
apicid		: 1
initial apicid	: 1
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	: 5334.13
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 9
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2000.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 0
cpu cores	: 4
apicid		: 17
initial apicid	: 17
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	: 5229.85
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 10
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	: 8
core id		: 1
cpu cores	: 4
apicid		: 3
initial apicid	: 3
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	: 5334.13
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 11
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1733.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 1
cpu cores	: 4
apicid		: 19
initial apicid	: 19
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	: 5229.85
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 12
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	: 8
core id		: 2
cpu cores	: 4
apicid		: 5
initial apicid	: 5
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	: 5334.13
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 13
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2267.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 2
cpu cores	: 4
apicid		: 21
initial apicid	: 21
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	: 5229.85
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 14
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
core id		: 3
cpu cores	: 4
apicid		: 7
initial apicid	: 7
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	: 5334.13
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 15
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2000.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 3
cpu cores	: 4
apicid		: 23
initial apicid	: 23
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	: 5229.85
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        29179524 kB
MemAvailable:   29346688 kB
Buffers:          114716 kB
Cached:           333188 kB
SwapCached:            0 kB
Active:          2882780 kB
Inactive:         272536 kB
Active(anon):    2710040 kB
Inactive(anon):     8756 kB
Active(file):     172740 kB
Inactive(file):   263780 kB
Unevictable:        5900 kB
Mlocked:            5900 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              7888 kB
Writeback:             0 kB
AnonPages:       2857312 kB
Mapped:            43192 kB
Shmem:              8872 kB
Slab:             127452 kB
SReclaimable:      92956 kB
SUnreclaim:        34496 kB
KernelStack:        5120 kB
PageTables:        10640 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    4425448 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2693120 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      116096 kB
DirectMap2M:    33429504 kB

Free space on /tmp at the end= 62000 MiB
End job on node133 at 2017-07-22 04:45:19