Trace number 4270014

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 4.0.5 seq (2017-08-09)? 154.006 104.382

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-50.xml
MD5SUM53b1156e30bb035a294b23873bcaa6f4
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark0
Best CPU time to get the best result obtained on this benchmark251.92101
Satisfiable
(Un)Satisfiability was proved
Number of variables133
Number of constraints25
Number of domains2
Minimum domain size23
Maximum domain size47
Distribution of domain sizes[{"size":23,"count":1},{"size":47,"count":132}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":110},{"degree":4,"count":22}]
Minimum constraint arity6
Maximum constraint arity132
Distribution of constraint arities[{"arity":6,"count":22},{"arity":23,"count":1},{"arity":132,"count":2}]
Number of extensional constraints22
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":22},{"type":"lex","count":1},{"type":"count","count":1},{"type":"cardinality","count":1}]
Optimization problemYES
Type of objectivemax VAR

Solver Data

0.00/0.00	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4270014-1502623753.xml"  -tl '264s' -p 1 -x 0
0.12/0.14	c [HOME/instance-4270014-1502623753.xml, -tl, 264s, -p, 1, -x, 0]
0.12/0.20	c simple solver
0.34/0.26	c parse instance...
153.91/104.31	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
153.91/104.31		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
153.91/104.31		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
153.91/104.31		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1857)
153.91/104.31		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
153.91/104.31		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
153.91/104.31		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
153.91/104.31		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
153.91/104.31		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
153.91/104.31		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
153.91/104.31		at org.xcsp.parser.XCallbacks$$Lambda$70/1900164709.accept(Unknown Source)
153.91/104.31		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
153.91/104.31		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
153.91/104.31		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
153.91/104.31		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
153.91/104.31		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
153.91/104.31		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
153.91/104.31		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
153.91/104.31		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
153.91/104.31		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
153.91/104.31		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
153.91/104.31		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
153.91/104.31	s UNKNOWN
153.91/104.31	c Unexpected resolution interruption!

Verifier Data


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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4270014-1502623753/watcher-4270014-1502623753 -o /tmp/evaluation-result-4270014-1502623753/solver-4270014-1502623753 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node103-1502620106-1702 --watchdog 300 ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 135958989 HOME/instance-4270014-1502623753.xml 

running on 4 cores: 1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 264 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 294 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 240 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
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
solver pid=4178, runsolver pid=4175
Current StackSize limit: 8192 KiB


[startup+0.100529 s]*
/proc/loadavg: 1.92 2.00 1.95 4/218 4194
/proc/meminfo: memFree=30895716/32770624 swapFree=67108860/67108860
[pid=4178] ppid=4175 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0
[pid=4180] ppid=4178 vsize=13978596 memory=27472 CPUtime=0.12 cores=1,3,5,7
/proc/4180/stat : 4180 (java) S 4178 4178 30973 0 -1 1077944320 5314 0 0 0 11 1 0 0 20 0 15 0 95463606 14314082304 6868 33554432000 4194304 4196468 140732129056400 140732129038944 139732802330359 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
/proc/4180/statm: 3494649 6868 2844 1 0 3482966 0
[pid=4180/tid=4181] ppid=4178 vsize=13978596 memory=7898910893248706067 CPUtime=0.08 cores=1,3,5,7
/proc/4180/task/4181/stat : 4181 (java) R 4178 4178 30973 0 -1 4202560 3320 0 0 0 8 0 0 0 20 0 15 0 95463606 14314082304 6933 33554432000 4194304 4196468 140732129056400 139732806563632 139732415753352 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4182] ppid=4178 vsize=13978596 memory=3472468149679129808 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4182/stat : 4182 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463607 14314082304 6933 33554432000 4194304 4196468 140732129056400 139732739930768 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4183] ppid=4178 vsize=13978596 memory=140020783978112 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4183/stat : 4183 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463607 14314082304 6933 33554432000 4194304 4196468 140732129056400 139732738877968 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4184] ppid=4178 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4184/stat : 4184 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463607 14314082304 6933 33554432000 4194304 4196468 140732129056400 139732737825168 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4185] ppid=4178 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4185/stat : 4185 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463607 14314082304 6933 33554432000 4194304 4196468 140732129056400 139732736772368 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4186] ppid=4178 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4186/stat : 4186 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463608 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731915959152 139732802341506 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4187] ppid=4178 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4187/stat : 4187 (java) S 4178 4178 30973 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95463609 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731914905120 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4188] ppid=4178 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4188/stat : 4188 (java) S 4178 4178 30973 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95463609 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731913852272 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4189] ppid=4178 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4189/stat : 4189 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463611 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731912800592 139732802348955 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4190] ppid=4178 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4190/stat : 4190 (java) S 4178 4178 30973 0 -1 1077944384 312 0 0 0 0 0 0 0 20 0 15 0 95463611 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731911747952 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4191] ppid=4178 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4191/stat : 4191 (java) R 4178 4178 30973 0 -1 1077944384 125 0 0 0 0 0 0 0 20 0 15 0 95463611 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731910695152 139732802341506 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4192] ppid=4178 vsize=13978596 memory=140020783978112 CPUtime=0.01 cores=1,3,5,7
/proc/4180/task/4192/stat : 4192 (java) R 4178 4178 30973 0 -1 4202560 268 0 0 0 1 0 0 0 20 0 15 0 95463611 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731909642352 139732786410846 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4193] ppid=4178 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4193/stat : 4193 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463612 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731908589792 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4194] ppid=4178 vsize=13978596 memory=140020783978112 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4194/stat : 4194 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463612 14314082304 6933 33554432000 4194304 4196468 140732129056400 139731907538096 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 28852 KiB

[startup+0.210884 s]*
/proc/loadavg: 1.92 2.00 1.95 3/218 4194
/proc/meminfo: memFree=30883312/32770624 swapFree=67108860/67108860
[pid=4178] ppid=4175 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0
[pid=4180] ppid=4178 vsize=13982852 memory=40476 CPUtime=0.34 cores=1,3,5,7
/proc/4180/stat : 4180 (java) S 4178 4178 30973 0 -1 1077944320 8144 0 0 0 32 2 0 0 20 0 15 0 95463606 14318440448 10119 33554432000 4194304 4196468 140732129056400 140732129038944 139732802330359 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
/proc/4180/statm: 3495713 10119 3079 1 0 3482966 0
[pid=4180/tid=4181] ppid=4178 vsize=13982852 memory=7898910893248706067 CPUtime=0.19 cores=1,3,5,7
/proc/4180/task/4181/stat : 4181 (java) D 4178 4178 30973 0 -1 1077944384 5265 0 0 0 18 1 0 0 20 0 15 0 95463606 14318440448 10139 33554432000 4194304 4196468 140732129056400 139732806532048 139732795009581 0 4 0 16800975 18446744072101555748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4182] ppid=4178 vsize=13982852 memory=3472468149679129808 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4182/stat : 4182 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463607 14318440448 10139 33554432000 4194304 4196468 140732129056400 139732739930768 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4183] ppid=4178 vsize=13982852 memory=140020783978112 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4183/stat : 4183 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463607 14318440448 10139 33554432000 4194304 4196468 140732129056400 139732738877968 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4184] ppid=4178 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4184/stat : 4184 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463607 14318440448 10139 33554432000 4194304 4196468 140732129056400 139732737825168 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4185] ppid=4178 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4185/stat : 4185 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463607 14318440448 10139 33554432000 4194304 4196468 140732129056400 139732736772368 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4186] ppid=4178 vsize=13982884 memory=140020783978112 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4186/stat : 4186 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463608 14318473216 10139 33554432000 4194304 4196468 140732129056400 139731915959152 139732802341506 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4187] ppid=4178 vsize=13982884 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4187/stat : 4187 (java) S 4178 4178 30973 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95463609 14318473216 10139 33554432000 4194304 4196468 140732129056400 139731914905120 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4188] ppid=4178 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4188/stat : 4188 (java) S 4178 4178 30973 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95463609 14318440448 10139 33554432000 4194304 4196468 140732129056400 139731913852272 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4189] ppid=4178 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4189/stat : 4189 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463611 14318440448 10139 33554432000 4194304 4196468 140732129056400 139731912800592 139732802348955 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4190] ppid=4178 vsize=13982852 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/4180/task/4190/stat : 4190 (java) S 4178 4178 30973 0 -1 1077944384 601 0 0 0 3 0 0 0 20 0 15 0 95463611 14318440448 10139 33554432000 4194304 4196468 140732129056400 139731911747952 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4191] ppid=4178 vsize=13982852 memory=-1 CPUtime=0.02 cores=1,3,5,7
/proc/4180/task/4191/stat : 4191 (java) S 4178 4178 30973 0 -1 1077944384 255 0 0 0 2 0 0 0 20 0 15 0 95463611 14318440448 10139 33554432000 4194304 4196468 140732129056400 139731910695152 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4192] ppid=4178 vsize=13982852 memory=140020783978112 CPUtime=0.08 cores=1,3,5,7
/proc/4180/task/4192/stat : 4192 (java) S 4178 4178 30973 0 -1 1077944384 755 0 0 0 8 0 0 0 20 0 15 0 95463611 14318440448 10139 33554432000 4194304 4196468 140732129056400 139731909642352 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4193] ppid=4178 vsize=13982884 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4193/stat : 4193 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463612 14318473216 10139 33554432000 4194304 4196468 140732129056400 139731908589792 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4194] ppid=4178 vsize=13982884 memory=140020783978112 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4194/stat : 4194 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463612 14318473216 10139 33554432000 4194304 4196468 140732129056400 139731907538096 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 41856 KiB

[startup+0.310764 s]*
/proc/loadavg: 1.92 2.00 1.95 4/218 4194
/proc/meminfo: memFree=30877356/32770624 swapFree=67108860/67108860
[pid=4178] ppid=4175 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0
[pid=4180] ppid=4178 vsize=13982852 memory=47420 CPUtime=0.5 cores=1,3,5,7
/proc/4180/stat : 4180 (java) S 4178 4178 30973 0 -1 1077944320 9020 0 0 0 47 3 0 0 20 0 15 0 95463606 14318440448 11855 33554432000 4194304 4196468 140732129056400 140732129038944 139732802330359 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
/proc/4180/statm: 3495713 11855 3106 1 0 3482966 0
[pid=4180/tid=4181] ppid=4178 vsize=13982852 memory=-7174084197796576197 CPUtime=0.29 cores=1,3,5,7
/proc/4180/task/4181/stat : 4181 (java) R 4178 4178 30973 0 -1 4202560 5890 0 0 0 27 2 0 0 20 0 15 0 95463606 14318440448 11921 33554432000 4194304 4196468 140732129056400 139732806567872 139732802352285 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4182] ppid=4178 vsize=13982852 memory=-7001736328920018669 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4182/stat : 4182 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463607 14318440448 11921 33554432000 4194304 4196468 140732129056400 139732739930768 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4183] ppid=4178 vsize=13982852 memory=220 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4183/stat : 4183 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463607 14318440448 11921 33554432000 4194304 4196468 140732129056400 139732738877968 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4184] ppid=4178 vsize=13982852 memory=49 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4184/stat : 4184 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463607 14318440448 11921 33554432000 4194304 4196468 140732129056400 139732737825168 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4185] ppid=4178 vsize=13982852 memory=140020631611423 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4185/stat : 4185 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463607 14318440448 11921 33554432000 4194304 4196468 140732129056400 139732736772368 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4186] ppid=4178 vsize=13982852 memory=280041263195168 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4186/stat : 4186 (java) S 4178 4178 30973 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95463608 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731915959152 139732802341506 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4187] ppid=4178 vsize=13982852 memory=140020631581455 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4187/stat : 4187 (java) S 4178 4178 30973 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95463609 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731914905120 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4188] ppid=4178 vsize=13982852 memory=280041415568736 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4188/stat : 4188 (java) S 4178 4178 30973 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95463609 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731913852272 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4189] ppid=4178 vsize=13982852 memory=140020631586063 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4189/stat : 4189 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463611 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731912800592 139732802348955 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4190] ppid=4178 vsize=13982852 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/4180/task/4190/stat : 4190 (java) R 4178 4178 30973 0 -1 4202560 625 0 0 0 4 0 0 0 20 0 15 0 95463611 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731911747952 139732787452031 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4191] ppid=4178 vsize=13982852 memory=-1 CPUtime=0.03 cores=1,3,5,7
/proc/4180/task/4191/stat : 4191 (java) R 4178 4178 30973 0 -1 4202560 423 0 0 0 3 0 0 0 20 0 15 0 95463611 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731910695152 139732783030656 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4192] ppid=4178 vsize=13982852 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/4180/task/4192/stat : 4192 (java) R 4178 4178 30973 0 -1 1077944384 846 0 0 0 12 0 0 0 20 0 15 0 95463611 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731909642352 139732802341506 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4193] ppid=4178 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4193/stat : 4193 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463612 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731908589792 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4194] ppid=4178 vsize=13982852 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4194/stat : 4194 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463612 14318440448 11921 33554432000 4194304 4196468 140732129056400 139731907538096 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
Current children cumulated CPU time: 0.5 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 48800 KiB

[startup+0.700881 s]
/proc/loadavg: 1.92 2.00 1.95 6/218 4194
/proc/meminfo: memFree=30694776/32770624 swapFree=67108860/67108860
[pid=4178] ppid=4175 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0
[pid=4180] ppid=4178 vsize=13982928 memory=354444 CPUtime=1.27 cores=1,3,5,7
/proc/4180/stat : 4180 (java) S 4178 4178 30973 0 -1 1077944320 10848 0 0 0 105 22 0 0 20 0 15 0 95463606 14318518272 88611 33554432000 4194304 4196468 140732129056400 140732129038944 139732802330359 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
/proc/4180/statm: 3495732 88611 3182 1 0 3482966 0
[pid=4180/tid=4181] ppid=4178 vsize=13982928 memory=1724 CPUtime=0.6 cores=1,3,5,7
/proc/4180/task/4181/stat : 4181 (java) R 4178 4178 30973 0 -1 4202560 6247 0 0 0 54 6 0 0 20 0 15 0 95463606 14318518272 88611 33554432000 4194304 4196468 140732129056400 139732806565248 139732416013074 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4182] ppid=4178 vsize=13982928 memory=1012 CPUtime=0.04 cores=1,3,5,7
/proc/4180/task/4182/stat : 4182 (java) S 4178 4178 30973 0 -1 1077944384 51 0 0 0 2 2 0 0 20 0 15 0 95463607 14318518272 88611 33554432000 4194304 4196468 140732129056400 139732739930768 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4183] ppid=4178 vsize=13982928 memory=1716 CPUtime=0.05 cores=1,3,5,7
/proc/4180/task/4183/stat : 4183 (java) S 4178 4178 30973 0 -1 1077944384 60 0 0 0 2 3 0 0 20 0 15 0 95463607 14318518272 88611 33554432000 4194304 4196468 140732129056400 139732738877968 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4184] ppid=4178 vsize=13982928 memory=280041263260608 CPUtime=0.05 cores=1,3,5,7
/proc/4180/task/4184/stat : 4184 (java) S 4178 4178 30973 0 -1 1077944384 66 0 0 0 2 3 0 0 20 0 15 0 95463607 14318518272 88611 33554432000 4194304 4196468 140732129056400 139732737825168 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4185] ppid=4178 vsize=13982928 memory=280041263264992 CPUtime=0.05 cores=1,3,5,7
/proc/4180/task/4185/stat : 4185 (java) S 4178 4178 30973 0 -1 1077944384 68 0 0 0 2 3 0 0 20 0 15 0 95463607 14318518272 88611 33554432000 4194304 4196468 140732129056400 139732736772368 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4186] ppid=4178 vsize=13982928 memory=3184237940707603360 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4186/stat : 4186 (java) S 4178 4178 30973 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 95463608 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731915959152 139732802341506 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4187] ppid=4178 vsize=13982928 memory=280041263273888 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4187/stat : 4187 (java) S 4178 4178 30973 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 95463609 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731914905120 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4188] ppid=4178 vsize=13982928 memory=1420 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4188/stat : 4188 (java) S 4178 4178 30973 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 95463609 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731913852272 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4189] ppid=4178 vsize=13982928 memory=13040 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4189/stat : 4189 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463611 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731912800592 139732802348955 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4190] ppid=4178 vsize=13982928 memory=0 CPUtime=0.15 cores=1,3,5,7
/proc/4180/task/4190/stat : 4190 (java) R 4178 4178 30973 0 -1 4202560 1346 0 0 0 15 0 0 0 20 0 15 0 95463611 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731911728968 139732781576191 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4191] ppid=4178 vsize=13982928 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/4180/task/4191/stat : 4191 (java) S 4178 4178 30973 0 -1 1077944384 463 0 0 0 7 0 0 0 20 0 15 0 95463611 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731910695152 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4192] ppid=4178 vsize=13982928 memory=0 CPUtime=0.17 cores=1,3,5,7
/proc/4180/task/4192/stat : 4192 (java) S 4178 4178 30973 0 -1 1077944384 1165 0 0 0 17 0 0 0 20 0 15 0 95463611 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731909642352 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4193] ppid=4178 vsize=13982928 memory=2209 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4193/stat : 4193 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463612 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731908589792 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4194] ppid=4178 vsize=13982928 memory=8996 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4194/stat : 4194 (java) S 4178 4178 30973 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95463612 14318518272 88611 33554432000 4194304 4196468 140732129056400 139731907538096 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
Current children cumulated CPU time: 1.27 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 355824 KiB

[startup+1.50153 s]
/proc/loadavg: 1.92 2.00 1.95 6/218 4194
/proc/meminfo: memFree=29799872/32770624 swapFree=67108860/67108860
[pid=4178] ppid=4175 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0

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

/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0
[pid=4180] ppid=4178 vsize=13984976 memory=11114964 CPUtime=150.01 cores=1,3,5,7
/proc/4180/stat : 4180 (java) S 4178 4178 30973 0 -1 1077944320 295807 0 0 0 13856 1145 0 0 20 0 15 0 95463606 14320615424 2778741 33554432000 4194304 4196468 140732129056400 140732129038944 139732802330359 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
/proc/4180/statm: 3496244 2778741 3245 1 0 3483478 0
[pid=4180/tid=4181] ppid=4178 vsize=13984976 memory=2344 CPUtime=84.84 cores=1,3,5,7
/proc/4180/task/4181/stat : 4181 (java) S 4178 4178 30973 0 -1 1077944384 79491 0 0 0 8459 25 0 0 20 0 15 0 95463606 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139732806568576 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4182] ppid=4178 vsize=13984976 memory=2540 CPUtime=15.18 cores=1,3,5,7
/proc/4180/task/4182/stat : 4182 (java) R 4178 4178 30973 0 -1 4202560 69287 0 0 0 1261 257 0 0 20 0 15 0 95463607 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139732739930664 139732794958567 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4183] ppid=4178 vsize=13984976 memory=2640 CPUtime=15.2 cores=1,3,5,7
/proc/4180/task/4183/stat : 4183 (java) S 4178 4178 30973 0 -1 1077944384 27100 0 0 0 1220 300 0 0 20 0 15 0 95463607 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139732738877552 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4184] ppid=4178 vsize=13984976 memory=222 CPUtime=15.18 cores=1,3,5,7
/proc/4180/task/4184/stat : 4184 (java) R 4178 4178 30973 0 -1 4202560 74925 0 0 0 1270 248 0 0 20 0 15 0 95463607 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139732737825064 139732794958567 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4185] ppid=4178 vsize=13984976 memory=223 CPUtime=15.09 cores=1,3,5,7
/proc/4180/task/4185/stat : 4185 (java) R 4178 4178 30973 0 -1 4202560 20005 0 0 0 1206 303 0 0 20 0 15 0 95463607 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139732736772368 139732787280964 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4186] ppid=4178 vsize=13984976 memory=220 CPUtime=2.97 cores=1,3,5,7
/proc/4180/task/4186/stat : 4186 (java) S 4178 4178 30973 0 -1 1077944384 14076 0 0 0 294 3 0 0 20 0 15 0 95463608 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731915957472 139732802340565 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4187] ppid=4178 vsize=13984976 memory=220 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4187/stat : 4187 (java) S 4178 4178 30973 0 -1 1077944384 46 0 0 0 0 0 0 0 20 0 15 0 95463609 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731914905184 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4188] ppid=4178 vsize=13984976 memory=136 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4188/stat : 4188 (java) S 4178 4178 30973 0 -1 1077944384 69 0 0 0 0 0 0 0 20 0 15 0 95463609 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731913852288 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4189] ppid=4178 vsize=13984976 memory=8112282956445269571 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4189/stat : 4189 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463611 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731912800592 139732802348955 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4190] ppid=4178 vsize=13984976 memory=10513440 CPUtime=0.6 cores=1,3,5,7
/proc/4180/task/4190/stat : 4190 (java) S 4178 4178 30973 0 -1 1077944384 2874 0 0 0 60 0 0 0 20 0 15 0 95463611 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731911748000 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4191] ppid=4178 vsize=13984976 memory=1380 CPUtime=0.49 cores=1,3,5,7
/proc/4180/task/4191/stat : 4191 (java) S 4178 4178 30973 0 -1 1077944384 3145 0 0 0 49 0 0 0 20 0 15 0 95463611 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731910694912 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4192] ppid=4178 vsize=13984976 memory=8851704 CPUtime=0.3 cores=1,3,5,7
/proc/4180/task/4192/stat : 4192 (java) S 4178 4178 30973 0 -1 1077944384 3149 0 0 0 30 0 0 0 20 0 15 0 95463611 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731909642400 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4193] ppid=4178 vsize=13984976 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4193/stat : 4193 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463612 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731908589792 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4194] ppid=4178 vsize=13984976 memory=1380 CPUtime=0.06 cores=1,3,5,7
/proc/4180/task/4194/stat : 4194 (java) S 4178 4178 30973 0 -1 1077944384 399 0 0 0 3 3 0 0 20 0 15 0 95463612 14320615424 2778741 33554432000 4194304 4196468 140732129056400 139731907538096 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
Current children cumulated CPU time: 150.01 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11116344 KiB

[startup+104.001 s]*
/proc/loadavg: 2.24 2.07 1.98 6/216 4273
/proc/meminfo: memFree=20286292/32770624 swapFree=67108860/67108860
[pid=4178] ppid=4175 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0
[pid=4180] ppid=4178 vsize=13984976 memory=11114968 CPUtime=152.95 cores=1,3,5,7
/proc/4180/stat : 4180 (java) S 4178 4178 30973 0 -1 1077944320 305781 0 0 0 14150 1145 0 0 20 0 15 0 95463606 14320615424 2778742 33554432000 4194304 4196468 140732129056400 140732129038944 139732802330359 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
/proc/4180/statm: 3496244 2778742 3245 1 0 3483478 0
[pid=4180/tid=4181] ppid=4178 vsize=13984976 memory=6935054825532540783 CPUtime=84.84 cores=1,3,5,7
/proc/4180/task/4181/stat : 4181 (java) S 4178 4178 30973 0 -1 1077944384 79491 0 0 0 8459 25 0 0 20 0 15 0 95463606 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732806568576 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4182] ppid=4178 vsize=13984976 memory=-7003737579269690708 CPUtime=15.9 cores=1,3,5,7
/proc/4180/task/4182/stat : 4182 (java) R 4178 4178 30973 0 -1 4202560 69303 0 0 0 1333 257 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732739930352 139732794958567 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4183] ppid=4178 vsize=13984976 memory=6794148 CPUtime=15.92 cores=1,3,5,7
/proc/4180/task/4183/stat : 4183 (java) R 4178 4178 30973 0 -1 4202560 27150 0 0 0 1292 300 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732738877552 139732794958567 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4184] ppid=4178 vsize=13984976 memory=1380 CPUtime=15.9 cores=1,3,5,7
/proc/4180/task/4184/stat : 4184 (java) R 4178 4178 30973 0 -1 4202560 74979 0 0 0 1342 248 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732737825368 139732787028111 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4185] ppid=4178 vsize=13984976 memory=1380 CPUtime=15.79 cores=1,3,5,7
/proc/4180/task/4185/stat : 4185 (java) R 4178 4178 30973 0 -1 4202560 20098 0 0 0 1276 303 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732736772264 139732794958567 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4186] ppid=4178 vsize=13984976 memory=1380 CPUtime=3.06 cores=1,3,5,7
/proc/4180/task/4186/stat : 4186 (java) S 4178 4178 30973 0 -1 1077944384 23828 0 0 0 302 4 0 0 20 0 15 0 95463608 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731915957488 139732802340565 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4187] ppid=4178 vsize=13984976 memory=1156 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4187/stat : 4187 (java) S 4178 4178 30973 0 -1 1077944384 46 0 0 0 0 0 0 0 20 0 15 0 95463609 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731914905184 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4188] ppid=4178 vsize=13984976 memory=3076 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4188/stat : 4188 (java) S 4178 4178 30973 0 -1 1077944384 69 0 0 0 0 0 0 0 20 0 15 0 95463609 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731913852288 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4189] ppid=4178 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4189/stat : 4189 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731912800592 139732802348955 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4190] ppid=4178 vsize=13984976 memory=726036 CPUtime=0.6 cores=1,3,5,7
/proc/4180/task/4190/stat : 4190 (java) S 4178 4178 30973 0 -1 1077944384 2874 0 0 0 60 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731911748000 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4191] ppid=4178 vsize=13984976 memory=1156 CPUtime=0.49 cores=1,3,5,7
/proc/4180/task/4191/stat : 4191 (java) S 4178 4178 30973 0 -1 1077944384 3145 0 0 0 49 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731910694912 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4192] ppid=4178 vsize=13984976 memory=2896 CPUtime=0.3 cores=1,3,5,7
/proc/4180/task/4192/stat : 4192 (java) S 4178 4178 30973 0 -1 1077944384 3149 0 0 0 30 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731909642400 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4193] ppid=4178 vsize=13984976 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4193/stat : 4193 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463612 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731908589792 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4194] ppid=4178 vsize=13984976 memory=0 CPUtime=0.06 cores=1,3,5,7
/proc/4180/task/4194/stat : 4194 (java) S 4178 4178 30973 0 -1 1077944384 408 0 0 0 3 3 0 0 20 0 15 0 95463612 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731907538096 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
Current children cumulated CPU time: 152.95 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11116348 KiB

[startup+104.202 s]
/proc/loadavg: 2.24 2.07 1.98 6/216 4273
/proc/meminfo: memFree=20286292/32770624 swapFree=67108860/67108860
[pid=4178] ppid=4175 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0
[pid=4180] ppid=4178 vsize=13984976 memory=11114968 CPUtime=153.69 cores=1,3,5,7
/proc/4180/stat : 4180 (java) S 4178 4178 30973 0 -1 1077944320 305912 0 0 0 14224 1145 0 0 20 0 15 0 95463606 14320615424 2778742 33554432000 4194304 4196468 140732129056400 140732129038944 139732802330359 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
/proc/4180/statm: 3496244 2778742 3245 1 0 3483478 0
[pid=4180/tid=4181] ppid=4178 vsize=13984976 memory=2241 CPUtime=84.84 cores=1,3,5,7
/proc/4180/task/4181/stat : 4181 (java) S 4178 4178 30973 0 -1 1077944384 79491 0 0 0 8459 25 0 0 20 0 15 0 95463606 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732806568576 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4182] ppid=4178 vsize=13984976 memory=280041263881888 CPUtime=16.08 cores=1,3,5,7
/proc/4180/task/4182/stat : 4182 (java) R 4178 4178 30973 0 -1 4202560 69303 0 0 0 1351 257 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732739930968 139732787326995 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4183] ppid=4178 vsize=13984976 memory=8112282956445269571 CPUtime=16.11 cores=1,3,5,7
/proc/4180/task/4183/stat : 4183 (java) R 4178 4178 30973 0 -1 4202560 27224 0 0 0 1311 300 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732738877968 139732787029651 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4184] ppid=4178 vsize=13984976 memory=27548 CPUtime=16.08 cores=1,3,5,7
/proc/4180/task/4184/stat : 4184 (java) R 4178 4178 30973 0 -1 4202560 75028 0 0 0 1360 248 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732737825368 139732786787929 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4185] ppid=4178 vsize=13984976 memory=1296 CPUtime=15.98 cores=1,3,5,7
/proc/4180/task/4185/stat : 4185 (java) R 4178 4178 30973 0 -1 4202560 20098 0 0 0 1295 303 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732736772368 139732786787950 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4186] ppid=4178 vsize=13984976 memory=2336 CPUtime=3.06 cores=1,3,5,7
/proc/4180/task/4186/stat : 4186 (java) S 4178 4178 30973 0 -1 1077944384 23836 0 0 0 302 4 0 0 20 0 15 0 95463608 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731915957712 139732802340565 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4187] ppid=4178 vsize=13984976 memory=1724 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4187/stat : 4187 (java) S 4178 4178 30973 0 -1 1077944384 46 0 0 0 0 0 0 0 20 0 15 0 95463609 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731914905184 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4188] ppid=4178 vsize=13984976 memory=1012 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4188/stat : 4188 (java) S 4178 4178 30973 0 -1 1077944384 69 0 0 0 0 0 0 0 20 0 15 0 95463609 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731913852288 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4189] ppid=4178 vsize=13984976 memory=1716 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4189/stat : 4189 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731912800592 139732802348955 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4190] ppid=4178 vsize=13984976 memory=0 CPUtime=0.6 cores=1,3,5,7
/proc/4180/task/4190/stat : 4190 (java) S 4178 4178 30973 0 -1 1077944384 2874 0 0 0 60 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731911748000 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4191] ppid=4178 vsize=13984976 memory=6656426216303648864 CPUtime=0.49 cores=1,3,5,7
/proc/4180/task/4191/stat : 4191 (java) S 4178 4178 30973 0 -1 1077944384 3145 0 0 0 49 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731910694912 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4192] ppid=4178 vsize=13984976 memory=6944656592387989600 CPUtime=0.3 cores=1,3,5,7
/proc/4180/task/4192/stat : 4192 (java) S 4178 4178 30973 0 -1 1077944384 3149 0 0 0 30 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731909642400 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4193] ppid=4178 vsize=13984976 memory=6944656592387989600 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4193/stat : 4193 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463612 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731908589792 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4194] ppid=4178 vsize=13984976 memory=6944656592455097392 CPUtime=0.06 cores=1,3,5,7
/proc/4180/task/4194/stat : 4194 (java) S 4178 4178 30973 0 -1 1077944384 408 0 0 0 3 3 0 0 20 0 15 0 95463612 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731907538096 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
Current children cumulated CPU time: 153.69 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11116348 KiB

[startup+104.302 s]
/proc/loadavg: 2.24 2.07 1.98 6/216 4273
/proc/meminfo: memFree=20286292/32770624 swapFree=67108860/67108860
[pid=4178] ppid=4175 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4178/stat : 4178 (xcsp3-exec) S 4175 4178 30973 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 95463606 9740288 345 33554432000 4194304 5098028 140721879724000 140721879722104 140448284275324 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 31338496 140721879725173 140721879725376 140721879725376 140721879728107 0
/proc/4178/statm: 2378 345 289 221 0 87 0
[pid=4180] ppid=4178 vsize=13984976 memory=11114968 CPUtime=153.91 cores=1,3,5,7
/proc/4180/stat : 4180 (java) S 4178 4178 30973 0 -1 1077944320 305912 0 0 0 14246 1145 0 0 20 0 15 0 95463606 14320615424 2778742 33554432000 4194304 4196468 140732129056400 140732129038944 139732802330359 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
/proc/4180/statm: 3496244 2778742 3245 1 0 3483478 0
[pid=4180/tid=4181] ppid=4178 vsize=13984976 memory=11114968 CPUtime=84.84 cores=1,3,5,7
/proc/4180/task/4181/stat : 4181 (java) S 4178 4178 30973 0 -1 1077944384 79491 0 0 0 8459 25 0 0 20 0 15 0 95463606 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732806568576 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4182] ppid=4178 vsize=13984976 memory=11114968 CPUtime=16.12 cores=1,3,5,7
/proc/4180/task/4182/stat : 4182 (java) S 4178 4178 30973 0 -1 1077944384 69303 0 0 0 1355 257 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732739930768 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4183] ppid=4178 vsize=13984976 memory=1380 CPUtime=16.15 cores=1,3,5,7
/proc/4180/task/4183/stat : 4183 (java) S 4178 4178 30973 0 -1 1077944384 27224 0 0 0 1315 300 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732738877968 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4184] ppid=4178 vsize=13984976 memory=6944656592455359580 CPUtime=16.12 cores=1,3,5,7
/proc/4180/task/4184/stat : 4184 (java) S 4178 4178 30973 0 -1 1077944384 75028 0 0 0 1364 248 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732737825168 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4185] ppid=4178 vsize=13984976 memory=1724 CPUtime=16.02 cores=1,3,5,7
/proc/4180/task/4185/stat : 4185 (java) S 4178 4178 30973 0 -1 1077944384 20098 0 0 0 1299 303 0 0 20 0 15 0 95463607 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139732736772368 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4186] ppid=4178 vsize=13984976 memory=1012 CPUtime=3.12 cores=1,3,5,7
/proc/4180/task/4186/stat : 4186 (java) R 4178 4178 30973 0 -1 4202560 23836 0 0 0 308 4 0 0 20 0 15 0 95463608 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731915957600 139732780700520 0 0 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4187] ppid=4178 vsize=13984976 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4187/stat : 4187 (java) S 4178 4178 30973 0 -1 1077944384 46 0 0 0 0 0 0 0 20 0 15 0 95463609 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731914905184 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4188] ppid=4178 vsize=13984976 memory=2272756 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4188/stat : 4188 (java) S 4178 4178 30973 0 -1 1077944384 69 0 0 0 0 0 0 0 20 0 15 0 95463609 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731913852288 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4189] ppid=4178 vsize=13984976 memory=4140 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4189/stat : 4189 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731912800592 139732802348955 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4190] ppid=4178 vsize=13984976 memory=27548 CPUtime=0.6 cores=1,3,5,7
/proc/4180/task/4190/stat : 4190 (java) S 4178 4178 30973 0 -1 1077944384 2874 0 0 0 60 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731911748000 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4191] ppid=4178 vsize=13984976 memory=11114968 CPUtime=0.49 cores=1,3,5,7
/proc/4180/task/4191/stat : 4191 (java) S 4178 4178 30973 0 -1 1077944384 3145 0 0 0 49 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731910694912 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4192] ppid=4178 vsize=13984976 memory=1380 CPUtime=0.3 cores=1,3,5,7
/proc/4180/task/4192/stat : 4192 (java) S 4178 4178 30973 0 -1 1077944384 3149 0 0 0 30 0 0 0 20 0 15 0 95463611 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731909642400 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4193] ppid=4178 vsize=13984976 memory=11114964 CPUtime=0 cores=1,3,5,7
/proc/4180/task/4193/stat : 4193 (java) S 4178 4178 30973 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95463612 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731908589792 139732802340565 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
[pid=4180/tid=4194] ppid=4178 vsize=13984976 memory=164 CPUtime=0.06 cores=1,3,5,7
/proc/4180/task/4194/stat : 4194 (java) S 4178 4178 30973 0 -1 1077944384 408 0 0 0 3 3 0 0 20 0 15 0 95463612 14320615424 2778742 33554432000 4194304 4196468 140732129056400 139731907538096 139732802341506 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9678848 140732129064093 140732129064268 140732129064268 140732129066959 0
Current children cumulated CPU time: 153.91 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11116348 KiB

Child status: 1
Real time (s): 104.382
CPU time (s): 154.006
CPU user time (s): 142.486
CPU system time (s): 11.5201
CPU usage (%): 147.542
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11116348

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 142.486
system time used= 11.5201
maximum resident set size= 11115356
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 306703
page faults= 0
swaps= 0
block input operations= 8
block output operations= 232
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 6402
involuntary context switches= 659


# summary of solver processes directly reported to runsolver:
#   pid: 4178
#   total CPU time (s): 154.006
#   total CPU user time (s): 142.486
#   total CPU system time (s): 11.5201

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.775284 second user time and 1.08826 second system time

The end

Launcher Data

Begin job on node103 at 2017-08-13 13:14:55
IDJOB=4270014
IDBENCH=138092
IDSOLVER=2661
FILE ID=node103/4270014-1502623753
RUNJOBID= node103-1502620106-1702
PBS_JOBID= 20628296
Free space on /tmp= 61700 MiB

SOLVER NAME= choco-solver 4.0.5 seq
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-50.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -ml 11000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4270014-1502623753/watcher-4270014-1502623753 -o /tmp/evaluation-result-4270014-1502623753/solver-4270014-1502623753 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node103-1502620106-1702 --watchdog 300  ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 135958989 HOME/instance-4270014-1502623753.xml

TIME LIMIT= 264 seconds
MEMORY LIMIT= 15500 MiB
NBCORE= 4

MD5SUM BENCH= 53b1156e30bb035a294b23873bcaa6f4
RANDOM SEED=135958989

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

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

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

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

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

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

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

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


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        30912680 kB
MemAvailable:   31303756 kB
Buffers:           94244 kB
Cached:           591564 kB
SwapCached:            0 kB
Active:          1290028 kB
Inactive:         143416 kB
Active(anon):     696884 kB
Inactive(anon):    78640 kB
Active(file):     593144 kB
Inactive(file):    64776 kB
Unevictable:        6412 kB
Mlocked:            6412 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             93728 kB
Writeback:             0 kB
AnonPages:        754104 kB
Mapped:            55564 kB
Shmem:             25228 kB
Slab:             124260 kB
SReclaimable:      97984 kB
SUnreclaim:        26276 kB
KernelStack:        3552 kB
PageTables:         6700 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    2218960 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    651264 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      114048 kB
DirectMap2M:    33431552 kB

Free space on /tmp at the end= 61696 MiB
End job on node103 at 2017-08-13 13:16:40