Trace number 4284234

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 5a (2017-08-18)? 153.332 101.704

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-4284234-1503214953.xml"  -tl '264s' -p 1 -x 3
0.12/0.14	c [HOME/instance-4284234-1503214953.xml, -tl, 264s, -p, 1, -x, 3]
0.12/0.20	c simple solver
0.33/0.26	c parse instance...
153.21/101.64	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
153.21/101.64		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
153.21/101.64		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
153.21/101.64		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1867)
153.21/101.64		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1823)
153.21/101.64		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
153.21/101.64		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
153.21/101.64		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
153.21/101.64		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
153.21/101.64		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
153.21/101.64		at org.xcsp.parser.XCallbacks$$Lambda$70/1900164709.accept(Unknown Source)
153.21/101.64		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
153.21/101.64		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
153.21/101.64		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
153.21/101.64		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
153.21/101.64		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
153.21/101.64		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
153.21/101.64		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
153.21/101.64		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
153.21/101.64		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
153.21/101.64		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
153.21/101.64		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
153.21/101.64	s UNKNOWN
153.21/101.64	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 (9312 MiB free)
  memory of node 1: 16384 MiB (11852 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4284234-1503214953/watcher-4284234-1503214953 -o /tmp/evaluation-result-4284234-1503214953/solver-4284234-1503214953 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node151-1503208976-12842 --watchdog 300 ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 874269621 HOME/instance-4284234-1503214953.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=17348, runsolver pid=17345
Current StackSize limit: 8192 KiB


[startup+0.100115 s]*
/proc/loadavg: 1.64 1.72 1.82 4/217 17364
/proc/meminfo: memFree=21656080/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0
[pid=17350] ppid=17348 vsize=13978596 memory=28096 CPUtime=0.12 cores=1,3,5,7
/proc/17350/stat : 17350 (java) S 17348 17348 12810 0 -1 1077944320 5310 0 0 0 11 1 0 0 20 0 15 0 154576139 14314082304 7024 33554432000 4194304 4196468 140730093221920 140730093204464 139648960700151 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
/proc/17350/statm: 3494649 7024 2896 1 0 3482966 0
[pid=17350/tid=17351] ppid=17348 vsize=13978596 memory=-6962121287837372198 CPUtime=0.08 cores=1,3,5,7
/proc/17350/task/17351/stat : 17351 (java) R 17348 17348 12810 0 -1 4202560 3317 0 0 0 8 0 0 0 20 0 15 0 154576140 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648964933424 139648944780638 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17352] ppid=17348 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17352/stat : 17352 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576141 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648917252496 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17353] ppid=17348 vsize=13978596 memory=140177019606656 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17353/stat : 17353 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576141 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648555215120 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17354] ppid=17348 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17354/stat : 17354 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576141 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648554162832 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17355] ppid=17348 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17355/stat : 17355 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576141 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648553110032 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17356] ppid=17348 vsize=13978596 memory=140177019606656 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17356/stat : 17356 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576142 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648096987760 139648960711298 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17357] ppid=17348 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17357/stat : 17357 (java) S 17348 17348 12810 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154576142 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648095933728 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17358] ppid=17348 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17358/stat : 17358 (java) S 17348 17348 12810 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154576143 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648094881392 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17359] ppid=17348 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17359/stat : 17359 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648093829712 139648960718747 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17360] ppid=17348 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17360/stat : 17360 (java) S 17348 17348 12810 0 -1 1077944384 418 0 0 0 0 0 0 0 20 0 15 0 154576145 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648092776560 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17361] ppid=17348 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17361/stat : 17361 (java) R 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648091723760 139648960711298 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17362] ppid=17348 vsize=13978596 memory=140177019606656 CPUtime=0.01 cores=1,3,5,7
/proc/17350/task/17362/stat : 17362 (java) R 17348 17348 12810 0 -1 4202560 269 0 0 0 1 0 0 0 20 0 15 0 154576145 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648090671472 139648960721498 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17363] ppid=17348 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17363/stat : 17363 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648089618912 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17364] ppid=17348 vsize=13978596 memory=140177019606656 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17364/stat : 17364 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576145 14314082304 7024 33554432000 4194304 4196468 140730093221920 139648088566704 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 29480 KiB

[startup+0.21076 s]*
/proc/loadavg: 1.64 1.72 1.82 3/217 17364
/proc/meminfo: memFree=21643552/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0
[pid=17350] ppid=17348 vsize=13982852 memory=40564 CPUtime=0.33 cores=1,3,5,7
/proc/17350/stat : 17350 (java) S 17348 17348 12810 0 -1 1077944320 8188 0 0 0 31 2 0 0 20 0 15 0 154576139 14318440448 10141 33554432000 4194304 4196468 140730093221920 140730093204464 139648960700151 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
/proc/17350/statm: 3495713 10141 3066 1 0 3482966 0
[pid=17350/tid=17351] ppid=17348 vsize=13982884 memory=7883960649037381690 CPUtime=0.2 cores=1,3,5,7
/proc/17350/task/17351/stat : 17351 (java) R 17348 17348 12810 0 -1 4202560 5253 0 0 0 18 2 0 0 20 0 15 0 154576140 14318473216 10141 33554432000 4194304 4196468 140730093221920 139648964910944 139648953379869 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17352] ppid=17348 vsize=13982852 memory=2907 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17352/stat : 17352 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576141 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648917252496 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17353] ppid=17348 vsize=13982852 memory=288370553171318400 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17353/stat : 17353 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576141 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648555215120 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17354] ppid=17348 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17354/stat : 17354 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576141 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648554162832 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17355] ppid=17348 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17355/stat : 17355 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576141 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648553110032 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17356] ppid=17348 vsize=13982852 memory=140177019606656 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17356/stat : 17356 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576142 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648096987760 139648960711298 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17357] ppid=17348 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17357/stat : 17357 (java) S 17348 17348 12810 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154576142 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648095933728 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17358] ppid=17348 vsize=13982884 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17358/stat : 17358 (java) S 17348 17348 12810 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154576143 14318473216 10141 33554432000 4194304 4196468 140730093221920 139648094881392 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17359] ppid=17348 vsize=13982884 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17359/stat : 17359 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14318473216 10141 33554432000 4194304 4196468 140730093221920 139648093829712 139648960718747 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17360] ppid=17348 vsize=13982852 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/17350/task/17360/stat : 17360 (java) S 17348 17348 12810 0 -1 1077944384 549 0 0 0 2 0 0 0 20 0 15 0 154576145 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648092776560 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17361] ppid=17348 vsize=13982852 memory=-1 CPUtime=0.02 cores=1,3,5,7
/proc/17350/task/17361/stat : 17361 (java) S 17348 17348 12810 0 -1 1077944384 316 0 0 0 2 0 0 0 20 0 15 0 154576145 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648091723760 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17362] ppid=17348 vsize=13982852 memory=140177019606656 CPUtime=0.08 cores=1,3,5,7
/proc/17350/task/17362/stat : 17362 (java) S 17348 17348 12810 0 -1 1077944384 774 0 0 0 8 0 0 0 20 0 15 0 154576145 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648090671472 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17363] ppid=17348 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17363/stat : 17363 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648089618912 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17364] ppid=17348 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17364/stat : 17364 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576145 14318440448 10141 33554432000 4194304 4196468 140730093221920 139648088566704 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 41948 KiB

[startup+0.310588 s]*
/proc/loadavg: 1.64 1.72 1.82 4/217 17364
/proc/meminfo: memFree=21636852/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0
[pid=17350] ppid=17348 vsize=13982852 memory=47684 CPUtime=0.5 cores=1,3,5,7
/proc/17350/stat : 17350 (java) S 17348 17348 12810 0 -1 1077944320 9088 0 0 0 47 3 0 0 20 0 15 0 154576139 14318440448 11921 33554432000 4194304 4196468 140730093221920 140730093204464 139648960700151 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
/proc/17350/statm: 3495713 11921 3103 1 0 3482966 0
[pid=17350/tid=17351] ppid=17348 vsize=13982852 memory=6791534058613427641 CPUtime=0.29 cores=1,3,5,7
/proc/17350/task/17351/stat : 17351 (java) R 17348 17348 12810 0 -1 4202560 5896 0 0 0 27 2 0 0 20 0 15 0 154576140 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648964934208 139648960722077 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17352] ppid=17348 vsize=13982852 memory=6943526294502006880 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17352/stat : 17352 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576141 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648917252496 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17353] ppid=17348 vsize=13982852 memory=6944656575208382560 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17353/stat : 17353 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576141 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648555215120 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17354] ppid=17348 vsize=13982852 memory=-3258418265892434876 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17354/stat : 17354 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576141 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648554162832 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17355] ppid=17348 vsize=13982852 memory=4500088472188524148 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17355/stat : 17355 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576141 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648553110032 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17356] ppid=17348 vsize=13982852 memory=6944613755495348631 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17356/stat : 17356 (java) S 17348 17348 12810 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154576142 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648096987760 139648960711298 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17357] ppid=17348 vsize=13982852 memory=7893295687695687954 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17357/stat : 17357 (java) S 17348 17348 12810 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154576142 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648095933728 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17358] ppid=17348 vsize=13982852 memory=-8813974798734826869 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17358/stat : 17358 (java) S 17348 17348 12810 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154576143 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648094881392 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17359] ppid=17348 vsize=13982852 memory=-6664436420846797971 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17359/stat : 17359 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648093829712 139648960718747 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17360] ppid=17348 vsize=13982852 memory=4713750055892520310 CPUtime=0.03 cores=1,3,5,7
/proc/17350/task/17360/stat : 17360 (java) R 17348 17348 12810 0 -1 4202560 569 0 0 0 3 0 0 0 20 0 15 0 154576145 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648092776560 139648953805853 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17361] ppid=17348 vsize=13982852 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/17350/task/17361/stat : 17361 (java) R 17348 17348 12810 0 -1 4202560 454 0 0 0 3 0 0 0 20 0 15 0 154576145 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648091723760 139648952989489 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17362] ppid=17348 vsize=13982852 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/17350/task/17362/stat : 17362 (java) R 17348 17348 12810 0 -1 1077944384 872 0 0 0 12 0 0 0 20 0 15 0 154576145 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648090671472 139648960711298 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17363] ppid=17348 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17363/stat : 17363 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648089618912 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17364] ppid=17348 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17364/stat : 17364 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576145 14318440448 11921 33554432000 4194304 4196468 140730093221920 139648088566704 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
Current children cumulated CPU time: 0.5 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 49068 KiB

[startup+0.700829 s]
/proc/loadavg: 1.64 1.72 1.82 6/217 17364
/proc/meminfo: memFree=21458988/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0
[pid=17350] ppid=17348 vsize=13982928 memory=350784 CPUtime=1.18 cores=1,3,5,7
/proc/17350/stat : 17350 (java) S 17348 17348 12810 0 -1 1077944320 9987 0 0 0 96 22 0 0 20 0 15 0 154576139 14318518272 87696 33554432000 4194304 4196468 140730093221920 140730093204464 139648960700151 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
/proc/17350/statm: 3495732 87696 3150 1 0 3482966 0
[pid=17350/tid=17351] ppid=17348 vsize=13982928 memory=33 CPUtime=0.6 cores=1,3,5,7
/proc/17350/task/17351/stat : 17351 (java) R 17348 17348 12810 0 -1 4202560 6256 0 0 0 54 6 0 0 20 0 15 0 154576140 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648964938112 139648597041968 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17352] ppid=17348 vsize=13982928 memory=-7816663703405220396 CPUtime=0.05 cores=1,3,5,7
/proc/17350/task/17352/stat : 17352 (java) S 17348 17348 12810 0 -1 1077944384 66 0 0 0 2 3 0 0 20 0 15 0 154576141 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648917252496 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17353] ppid=17348 vsize=13982928 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/17350/task/17353/stat : 17353 (java) S 17348 17348 12810 0 -1 1077944384 60 0 0 0 2 3 0 0 20 0 15 0 154576141 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648555215120 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17354] ppid=17348 vsize=13982928 memory=43012 CPUtime=0.04 cores=1,3,5,7
/proc/17350/task/17354/stat : 17354 (java) S 17348 17348 12810 0 -1 1077944384 48 0 0 0 2 2 0 0 20 0 15 0 154576141 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648554162832 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17355] ppid=17348 vsize=13982928 memory=1292 CPUtime=0.05 cores=1,3,5,7
/proc/17350/task/17355/stat : 17355 (java) S 17348 17348 12810 0 -1 1077944384 71 0 0 0 2 3 0 0 20 0 15 0 154576141 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648553110032 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17356] ppid=17348 vsize=13982928 memory=2428 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17356/stat : 17356 (java) S 17348 17348 12810 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 154576142 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648096987760 139648960711298 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17357] ppid=17348 vsize=13982928 memory=1728 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17357/stat : 17357 (java) S 17348 17348 12810 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 154576142 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648095933728 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17358] ppid=17348 vsize=13982928 memory=792 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17358/stat : 17358 (java) S 17348 17348 12810 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 154576143 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648094881392 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17359] ppid=17348 vsize=13982928 memory=10096 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17359/stat : 17359 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648093829712 139648960718747 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17360] ppid=17348 vsize=13982928 memory=1224 CPUtime=0.05 cores=1,3,5,7
/proc/17350/task/17360/stat : 17360 (java) S 17348 17348 12810 0 -1 1077944384 586 0 0 0 5 0 0 0 20 0 15 0 154576145 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648092776560 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17361] ppid=17348 vsize=13982928 memory=5784 CPUtime=0.07 cores=1,3,5,7
/proc/17350/task/17361/stat : 17361 (java) S 17348 17348 12810 0 -1 1077944384 533 0 0 0 7 0 0 0 20 0 15 0 154576145 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648091723760 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17362] ppid=17348 vsize=13982928 memory=1720 CPUtime=0.17 cores=1,3,5,7
/proc/17350/task/17362/stat : 17362 (java) S 17348 17348 12810 0 -1 1077944384 986 0 0 0 17 0 0 0 20 0 15 0 154576145 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648090671472 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17363] ppid=17348 vsize=13982928 memory=4612 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17363/stat : 17363 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648089618912 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17364] ppid=17348 vsize=13982928 memory=1008 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17364/stat : 17364 (java) S 17348 17348 12810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154576145 14318518272 87696 33554432000 4194304 4196468 140730093221920 139648088566704 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
Current children cumulated CPU time: 1.18 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 352168 KiB

[startup+1.50089 s]
/proc/loadavg: 1.64 1.72 1.82 6/217 17364
/proc/meminfo: memFree=20563276/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0

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

/proc/17350/task/17353/stat : 17353 (java) R 17348 17348 12810 0 -1 4202560 119952 0 0 0 1245 265 0 0 20 0 15 0 154576141 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648555215008 139648953803144 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17354] ppid=17348 vsize=13984976 memory=5784 CPUtime=14.98 cores=1,3,5,7
/proc/17350/task/17354/stat : 17354 (java) R 17348 17348 12810 0 -1 4202560 36260 0 0 0 1191 307 0 0 20 0 15 0 154576141 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648554162952 139648953328359 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17355] ppid=17348 vsize=13984976 memory=6791534058613427641 CPUtime=15.05 cores=1,3,5,7
/proc/17350/task/17355/stat : 17355 (java) R 17348 17348 12810 0 -1 4202560 48898 0 0 0 1239 266 0 0 20 0 15 0 154576141 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648553110152 139648953328359 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17356] ppid=17348 vsize=13984976 memory=1224 CPUtime=2.38 cores=1,3,5,7
/proc/17350/task/17356/stat : 17356 (java) S 17348 17348 12810 0 -1 1077944384 15076 0 0 0 236 2 0 0 20 0 15 0 154576142 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648096986320 139648960710357 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17357] ppid=17348 vsize=13984976 memory=5784 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17357/stat : 17357 (java) S 17348 17348 12810 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 154576142 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648095933792 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17358] ppid=17348 vsize=13984976 memory=1720 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17358/stat : 17358 (java) S 17348 17348 12810 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 15 0 154576143 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648094881408 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17359] ppid=17348 vsize=13984976 memory=4612 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17359/stat : 17359 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648093829712 139648960718747 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17360] ppid=17348 vsize=13984976 memory=1008 CPUtime=0.5 cores=1,3,5,7
/proc/17350/task/17360/stat : 17360 (java) S 17348 17348 12810 0 -1 1077944384 3413 0 0 0 50 0 0 0 20 0 15 0 154576145 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648092776560 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17361] ppid=17348 vsize=13984976 memory=1384 CPUtime=0.46 cores=1,3,5,7
/proc/17350/task/17361/stat : 17361 (java) S 17348 17348 12810 0 -1 1077944384 3224 0 0 0 46 0 0 0 20 0 15 0 154576145 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648091723760 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17362] ppid=17348 vsize=13984976 memory=11110420 CPUtime=0.31 cores=1,3,5,7
/proc/17350/task/17362/stat : 17362 (java) S 17348 17348 12810 0 -1 1077944384 2955 0 0 0 31 0 0 0 20 0 15 0 154576145 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648090671472 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17363] ppid=17348 vsize=13984976 memory=1156 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17363/stat : 17363 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648089618912 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17364] ppid=17348 vsize=13984976 memory=2540 CPUtime=0.07 cores=1,3,5,7
/proc/17350/task/17364/stat : 17364 (java) S 17348 17348 12810 0 -1 1077944384 386 0 0 0 3 4 0 0 20 0 15 0 154576145 14320615424 2777680 33554432000 4194304 4196468 140730093221920 139648088566704 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
Current children cumulated CPU time: 145.61 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11112104 KiB

[startup+100.801 s]
/proc/loadavg: 2.45 1.94 1.89 3/217 17521
/proc/meminfo: memFree=12673968/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0
[pid=17350] ppid=17348 vsize=13984976 memory=11111072 CPUtime=150.38 cores=1,3,5,7
/proc/17350/stat : 17350 (java) S 17348 17348 12810 0 -1 1077944320 410746 0 0 0 13843 1195 0 0 20 0 15 0 154576139 14320615424 2777768 33554432000 4194304 4196468 140730093221920 140730093204464 139648960700151 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
/proc/17350/statm: 3496244 2777768 3244 1 0 3483478 0
[pid=17350/tid=17351] ppid=17348 vsize=13984976 memory=103 CPUtime=81.53 cores=1,3,5,7
/proc/17350/task/17351/stat : 17351 (java) S 17348 17348 12810 0 -1 1077944384 96865 0 0 0 8127 26 0 0 20 0 15 0 154576140 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648964938368 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17352] ppid=17348 vsize=13984976 memory=6791534058613427641 CPUtime=16.2 cores=1,3,5,7
/proc/17350/task/17352/stat : 17352 (java) S 17348 17348 12810 0 -1 1077944384 73854 0 0 0 1302 318 0 0 20 0 15 0 154576141 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648917252496 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17353] ppid=17348 vsize=13984976 memory=11110720 CPUtime=16.17 cores=1,3,5,7
/proc/17350/task/17353/stat : 17353 (java) S 17348 17348 12810 0 -1 1077944384 121120 0 0 0 1352 265 0 0 20 0 15 0 154576141 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648555215120 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17354] ppid=17348 vsize=13984976 memory=1200 CPUtime=16.03 cores=1,3,5,7
/proc/17350/task/17354/stat : 17354 (java) S 17348 17348 12810 0 -1 1077944384 36388 0 0 0 1296 307 0 0 20 0 15 0 154576141 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648554162832 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17355] ppid=17348 vsize=13984976 memory=1424 CPUtime=16.1 cores=1,3,5,7
/proc/17350/task/17355/stat : 17355 (java) S 17348 17348 12810 0 -1 1077944384 49030 0 0 0 1344 266 0 0 20 0 15 0 154576141 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648553110032 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17356] ppid=17348 vsize=13984976 memory=8600 CPUtime=2.91 cores=1,3,5,7
/proc/17350/task/17356/stat : 17356 (java) R 17348 17348 12810 0 -1 4202560 22095 0 0 0 288 3 0 0 20 0 15 0 154576142 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648096986304 139648939070312 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17357] ppid=17348 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17357/stat : 17357 (java) S 17348 17348 12810 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 15 0 154576142 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648095933792 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17358] ppid=17348 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17358/stat : 17358 (java) S 17348 17348 12810 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 15 0 154576143 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648094881408 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17359] ppid=17348 vsize=13984976 memory=11110720 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17359/stat : 17359 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648093829712 139648960718747 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17360] ppid=17348 vsize=13984976 memory=1292 CPUtime=0.5 cores=1,3,5,7
/proc/17350/task/17360/stat : 17360 (java) S 17348 17348 12810 0 -1 1077944384 3416 0 0 0 50 0 0 0 20 0 15 0 154576145 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648092776560 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17361] ppid=17348 vsize=13984976 memory=2428 CPUtime=0.46 cores=1,3,5,7
/proc/17350/task/17361/stat : 17361 (java) S 17348 17348 12810 0 -1 1077944384 3226 0 0 0 46 0 0 0 20 0 15 0 154576145 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648091723760 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17362] ppid=17348 vsize=13984976 memory=1384 CPUtime=0.31 cores=1,3,5,7
/proc/17350/task/17362/stat : 17362 (java) S 17348 17348 12810 0 -1 1077944384 2957 0 0 0 31 0 0 0 20 0 15 0 154576145 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648090671472 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17363] ppid=17348 vsize=13984976 memory=10231596 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17363/stat : 17363 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648089618912 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17364] ppid=17348 vsize=13984976 memory=1384 CPUtime=0.07 cores=1,3,5,7
/proc/17350/task/17364/stat : 17364 (java) S 17348 17348 12810 0 -1 1077944384 440 0 0 0 3 4 0 0 20 0 15 0 154576145 14320615424 2777768 33554432000 4194304 4196468 140730093221920 139648088566704 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
Current children cumulated CPU time: 150.38 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11112456 KiB

[startup+101.201 s]
/proc/loadavg: 2.45 1.94 1.89 6/217 17521
/proc/meminfo: memFree=12673596/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0
[pid=17350] ppid=17348 vsize=13984976 memory=11111112 CPUtime=151.82 cores=1,3,5,7
/proc/17350/stat : 17350 (java) S 17348 17348 12810 0 -1 1077944320 414117 0 0 0 13987 1195 0 0 20 0 15 0 154576139 14320615424 2777778 33554432000 4194304 4196468 140730093221920 140730093204464 139648960700151 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
/proc/17350/statm: 3496244 2777778 3244 1 0 3483478 0
[pid=17350/tid=17351] ppid=17348 vsize=13984976 memory=18472 CPUtime=81.53 cores=1,3,5,7
/proc/17350/task/17351/stat : 17351 (java) S 17348 17348 12810 0 -1 1077944384 96865 0 0 0 8127 26 0 0 20 0 15 0 154576140 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648964938368 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17352] ppid=17348 vsize=13984976 memory=640 CPUtime=16.55 cores=1,3,5,7
/proc/17350/task/17352/stat : 17352 (java) R 17348 17348 12810 0 -1 4202560 73906 0 0 0 1337 318 0 0 20 0 15 0 154576141 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648917252496 139648945397790 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17353] ppid=17348 vsize=13984976 memory=1796 CPUtime=16.52 cores=1,3,5,7
/proc/17350/task/17353/stat : 17353 (java) R 17348 17348 12810 0 -1 4202560 121185 0 0 0 1387 265 0 0 20 0 15 0 154576141 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648555215120 139648945651250 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17354] ppid=17348 vsize=13984976 memory=960 CPUtime=16.37 cores=1,3,5,7
/proc/17350/task/17354/stat : 17354 (java) R 17348 17348 12810 0 -1 4202560 36424 0 0 0 1330 307 0 0 20 0 15 0 154576141 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648554163032 139648945651250 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17355] ppid=17348 vsize=13984976 memory=1232 CPUtime=16.45 cores=1,3,5,7
/proc/17350/task/17355/stat : 17355 (java) R 17348 17348 12810 0 -1 4202560 49082 0 0 0 1379 266 0 0 20 0 15 0 154576141 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648553110032 139648945651250 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17356] ppid=17348 vsize=13984976 memory=2428 CPUtime=2.96 cores=1,3,5,7
/proc/17350/task/17356/stat : 17356 (java) S 17348 17348 12810 0 -1 1077944384 25261 0 0 0 293 3 0 0 20 0 15 0 154576142 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648096986096 139648960710357 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17357] ppid=17348 vsize=13984976 memory=932 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17357/stat : 17357 (java) S 17348 17348 12810 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 15 0 154576142 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648095933792 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17358] ppid=17348 vsize=13984976 memory=1580 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17358/stat : 17358 (java) S 17348 17348 12810 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 15 0 154576143 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648094881408 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17359] ppid=17348 vsize=13984976 memory=2244 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17359/stat : 17359 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648093829712 139648960718747 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17360] ppid=17348 vsize=13984976 memory=4132 CPUtime=0.5 cores=1,3,5,7
/proc/17350/task/17360/stat : 17360 (java) S 17348 17348 12810 0 -1 1077944384 3416 0 0 0 50 0 0 0 20 0 15 0 154576145 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648092776560 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17361] ppid=17348 vsize=13984976 memory=2204 CPUtime=0.46 cores=1,3,5,7
/proc/17350/task/17361/stat : 17361 (java) S 17348 17348 12810 0 -1 1077944384 3226 0 0 0 46 0 0 0 20 0 15 0 154576145 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648091723760 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17362] ppid=17348 vsize=13984976 memory=7792 CPUtime=0.31 cores=1,3,5,7
/proc/17350/task/17362/stat : 17362 (java) S 17348 17348 12810 0 -1 1077944384 2957 0 0 0 31 0 0 0 20 0 15 0 154576145 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648090671472 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17363] ppid=17348 vsize=13984976 memory=844 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17363/stat : 17363 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648089618912 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17364] ppid=17348 vsize=13984976 memory=35204 CPUtime=0.07 cores=1,3,5,7
/proc/17350/task/17364/stat : 17364 (java) S 17348 17348 12810 0 -1 1077944384 440 0 0 0 3 4 0 0 20 0 15 0 154576145 14320615424 2777778 33554432000 4194304 4196468 140730093221920 139648088566704 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
Current children cumulated CPU time: 151.82 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11112496 KiB

[startup+101.601 s]
/proc/loadavg: 2.45 1.94 1.89 6/217 17521
/proc/meminfo: memFree=12673596/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0
[pid=17350] ppid=17348 vsize=13984976 memory=11111156 CPUtime=153.21 cores=1,3,5,7
/proc/17350/stat : 17350 (java) S 17348 17348 12810 0 -1 1077944320 414371 0 0 0 14126 1195 0 0 20 0 15 0 154576139 14320615424 2777789 33554432000 4194304 4196468 140730093221920 140730093204464 139648960700151 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
/proc/17350/statm: 3496244 2777789 3244 1 0 3483478 0
[pid=17350/tid=17351] ppid=17348 vsize=13984976 memory=1232 CPUtime=81.53 cores=1,3,5,7
/proc/17350/task/17351/stat : 17351 (java) S 17348 17348 12810 0 -1 1077944384 96865 0 0 0 8127 26 0 0 20 0 15 0 154576140 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648964938368 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17352] ppid=17348 vsize=13984976 memory=2428 CPUtime=16.88 cores=1,3,5,7
/proc/17350/task/17352/stat : 17352 (java) S 17348 17348 12810 0 -1 1077944384 73960 0 0 0 1370 318 0 0 20 0 15 0 154576141 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648917252496 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17353] ppid=17348 vsize=13984976 memory=4144 CPUtime=16.85 cores=1,3,5,7
/proc/17350/task/17353/stat : 17353 (java) S 17348 17348 12810 0 -1 1077944384 121295 0 0 0 1420 265 0 0 20 0 15 0 154576141 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648555215120 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17354] ppid=17348 vsize=13984976 memory=43012 CPUtime=16.7 cores=1,3,5,7
/proc/17350/task/17354/stat : 17354 (java) S 17348 17348 12810 0 -1 1077944384 36506 0 0 0 1363 307 0 0 20 0 15 0 154576141 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648554162832 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17355] ppid=17348 vsize=13984976 memory=1292 CPUtime=16.79 cores=1,3,5,7
/proc/17350/task/17355/stat : 17355 (java) S 17348 17348 12810 0 -1 1077944384 49082 0 0 0 1413 266 0 0 20 0 15 0 154576141 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648553110032 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17356] ppid=17348 vsize=13984976 memory=2428 CPUtime=3.03 cores=1,3,5,7
/proc/17350/task/17356/stat : 17356 (java) R 17348 17348 12810 0 -1 4202560 25269 0 0 0 300 3 0 0 20 0 15 0 154576142 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648096986320 139648939070331 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17357] ppid=17348 vsize=13984976 memory=1728 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17357/stat : 17357 (java) S 17348 17348 12810 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 15 0 154576142 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648095933792 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17358] ppid=17348 vsize=13984976 memory=792 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17358/stat : 17358 (java) S 17348 17348 12810 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 15 0 154576143 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648094881408 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17359] ppid=17348 vsize=13984976 memory=10096 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17359/stat : 17359 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648093829712 139648960718747 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17360] ppid=17348 vsize=13984976 memory=1224 CPUtime=0.5 cores=1,3,5,7
/proc/17350/task/17360/stat : 17360 (java) S 17348 17348 12810 0 -1 1077944384 3416 0 0 0 50 0 0 0 20 0 15 0 154576145 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648092776560 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17361] ppid=17348 vsize=13984976 memory=5784 CPUtime=0.46 cores=1,3,5,7
/proc/17350/task/17361/stat : 17361 (java) S 17348 17348 12810 0 -1 1077944384 3226 0 0 0 46 0 0 0 20 0 15 0 154576145 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648091723760 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17362] ppid=17348 vsize=13984976 memory=1720 CPUtime=0.31 cores=1,3,5,7
/proc/17350/task/17362/stat : 17362 (java) S 17348 17348 12810 0 -1 1077944384 2957 0 0 0 31 0 0 0 20 0 15 0 154576145 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648090671472 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17363] ppid=17348 vsize=13984976 memory=4612 CPUtime=0 cores=1,3,5,7
/proc/17350/task/17363/stat : 17363 (java) S 17348 17348 12810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154576145 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648089618912 139648960710357 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
[pid=17350/tid=17364] ppid=17348 vsize=13984976 memory=1008 CPUtime=0.07 cores=1,3,5,7
/proc/17350/task/17364/stat : 17364 (java) S 17348 17348 12810 0 -1 1077944384 440 0 0 0 3 4 0 0 20 0 15 0 154576145 14320615424 2777789 33554432000 4194304 4196468 140730093221920 139648088566704 139648960711298 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 21893120 140730093229213 140730093229388 140730093229388 140730093232079 0
Current children cumulated CPU time: 153.21 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11112540 KiB

[startup+101.701 s]
/proc/loadavg: 2.45 1.94 1.89 6/217 17521
/proc/meminfo: memFree=12673596/32770624 swapFree=67108860/67108860
[pid=17348] ppid=17345 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17348/stat : 17348 (xcsp3-exec) S 17345 17348 12810 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154576139 9740288 346 33554432000 4194304 5098028 140727461755600 140727461753704 140182778528380 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 32141312 140727461758069 140727461758272 140727461758272 140727461761003 0
/proc/17348/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1384 KiB

Child status: 1
Real time (s): 101.704
CPU time (s): 153.332
CPU user time (s): 141.314
CPU system time (s): 12.0182
CPU usage (%): 150.762
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11112540

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 141.314
system time used= 12.0182
maximum resident set size= 11111640
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 415100
page faults= 0
swaps= 0
block input operations= 0
block output operations= 232
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 8038
involuntary context switches= 849


# summary of solver processes directly reported to runsolver:
#   pid: 17348
#   total CPU time (s): 153.332
#   total CPU user time (s): 141.314
#   total CPU system time (s): 12.0182

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.701443 second user time and 1.11851 second system time

The end

Launcher Data

Begin job on node151 at 2017-08-20 09:28:14
IDJOB=4284234
IDBENCH=138092
IDSOLVER=2680
FILE ID=node151/4284234-1503214953
RUNJOBID= node151-1503208976-12842
PBS_JOBID= 20630871
Free space on /tmp= 61508 MiB

SOLVER NAME= choco-solver 5a
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-4284234-1503214953/watcher-4284234-1503214953 -o /tmp/evaluation-result-4284234-1503214953/solver-4284234-1503214953 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node151-1503208976-12842 --watchdog 300  ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 874269621 HOME/instance-4284234-1503214953.xml

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

MD5SUM BENCH= 53b1156e30bb035a294b23873bcaa6f4
RANDOM SEED=874269621

node151.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	: 5332.95
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	: 5332.95
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	: 5332.95
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	: 5332.95
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:        21673132 kB
MemAvailable:   29671904 kB
Buffers:          329056 kB
Cached:          7956244 kB
SwapCached:            0 kB
Active:          4395084 kB
Inactive:        6239484 kB
Active(anon):    2341012 kB
Inactive(anon):    44324 kB
Active(file):    2054072 kB
Inactive(file):  6195160 kB
Unevictable:        7580 kB
Mlocked:            7580 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             93972 kB
Writeback:             0 kB
AnonPages:       2356884 kB
Mapped:            64180 kB
Shmem:             33416 kB
Slab:             158248 kB
SReclaimable:     130752 kB
SUnreclaim:        27496 kB
KernelStack:        3536 kB
PageTables:         9864 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    3448184 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2256896 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= 61584 MiB
End job on node151 at 2017-08-20 09:29:56