Trace number 4270013

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)? 153.33501 104.514

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-41.xml
MD5SUMa372e06032e8b52aa9c97452ff274801
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 benchmark252.086
Satisfiable
(Un)Satisfiability was proved
Number of variables133
Number of constraints25
Number of domains2
Minimum domain size23
Maximum domain size45
Distribution of domain sizes[{"size":23,"count":1},{"size":45,"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-4270013-1502623745.xml"  -tl '264s' -p 1 -x 0
0.12/0.14	c [HOME/instance-4270013-1502623745.xml, -tl, 264s, -p, 1, -x, 0]
0.12/0.19	c simple solver
0.34/0.26	c parse instance...
153.21/104.43	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
153.21/104.43		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
153.21/104.43		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
153.21/104.43		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1857)
153.21/104.43		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
153.21/104.43		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
153.21/104.43		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
153.21/104.43		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
153.21/104.43		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
153.21/104.43		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
153.21/104.43		at org.xcsp.parser.XCallbacks$$Lambda$70/1900164709.accept(Unknown Source)
153.21/104.43		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
153.21/104.43		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
153.21/104.43		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
153.21/104.43		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
153.21/104.43		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
153.21/104.43		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
153.21/104.43		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
153.21/104.43		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
153.21/104.43		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
153.21/104.43		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
153.21/104.43		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
153.21/104.43	s UNKNOWN
153.21/104.43	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 (15211 MiB free)
  memory of node 1: 16384 MiB (15454 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4270013-1502623745/watcher-4270013-1502623745 -o /tmp/evaluation-result-4270013-1502623745/solver-4270013-1502623745 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node115-1502619962-4172 --watchdog 300 ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 1513326792 HOME/instance-4270013-1502623745.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
Current StackSize limit: 8192 KiB

solver pid=6885, runsolver pid=6882

[startup+0.103463 s]*
/proc/loadavg: 1.96 1.94 1.86 3/217 6901
/proc/meminfo: memFree=31384556/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/statm: 2378 346 289 221 0 87 0
[pid=6887] ppid=6885 vsize=13978596 memory=28980 CPUtime=0.12 cores=1,3,5,7
/proc/6887/stat : 6887 (java) S 6885 6885 29331 0 -1 1077944320 5181 0 0 0 11 1 0 0 20 0 15 0 95462302 14314082304 7245 33554432000 4194304 4196468 140729238128288 140729238110832 140557470904055 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
/proc/6887/statm: 3494649 7245 2864 1 0 3482966 0
[pid=6887/tid=6888] ppid=6885 vsize=13978596 memory=-8412658762350172019 CPUtime=0.09 cores=1,3,5,7
/proc/6887/task/6888/stat : 6888 (java) R 6885 6885 29331 0 -1 4202560 3111 0 0 0 9 0 0 0 20 0 15 0 95462303 14314082304 7245 33554432000 4194304 4196468 140729238128288 140557475136784 140557470925981 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6889] ppid=6885 vsize=13978596 memory=-3689349214911541841 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6889/stat : 6889 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462303 14314082304 7245 33554432000 4194304 4196468 140729238128288 140557066287376 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6890] ppid=6885 vsize=13978596 memory=140289329485440 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6890/stat : 6890 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462303 14314082304 7245 33554432000 4194304 4196468 140729238128288 140557065234832 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6891] ppid=6885 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6891/stat : 6891 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462303 14314082304 7245 33554432000 4194304 4196468 140729238128288 140557064182288 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6892] ppid=6885 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6892/stat : 6892 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462303 14314082304 7245 33554432000 4194304 4196468 140729238128288 140557063129744 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6893] ppid=6885 vsize=13978596 memory=140289329485440 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6893/stat : 6893 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462305 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556945132016 140557470915202 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6894] ppid=6885 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6894/stat : 6894 (java) S 6885 6885 29331 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95462305 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556944078240 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6895] ppid=6885 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6895/stat : 6895 (java) S 6885 6885 29331 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95462305 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556943025648 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6896] ppid=6885 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6896/stat : 6896 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556941974224 140557470922651 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6897] ppid=6885 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6897/stat : 6897 (java) S 6885 6885 29331 0 -1 1077944384 318 0 0 0 0 0 0 0 20 0 15 0 95462308 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556940920816 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6898] ppid=6885 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6898/stat : 6898 (java) S 6885 6885 29331 0 -1 1077944384 127 0 0 0 0 0 0 0 20 0 15 0 95462308 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556939868272 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6899] ppid=6885 vsize=13978596 memory=140289329485440 CPUtime=0.02 cores=1,3,5,7
/proc/6887/task/6899/stat : 6899 (java) R 6885 6885 29331 0 -1 4202560 323 0 0 0 2 0 0 0 20 0 15 0 95462308 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556938815728 140557470915990 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6900] ppid=6885 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6900/stat : 6900 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556937763424 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6901] ppid=6885 vsize=13978596 memory=140289329485440 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6901/stat : 6901 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462308 14314082304 7245 33554432000 4194304 4196468 140729238128288 140556936710960 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 30364 KiB

[startup+0.210886 s]*
/proc/loadavg: 1.96 1.94 1.86 3/217 6901
/proc/meminfo: memFree=31374632/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/statm: 2378 346 289 221 0 87 0
[pid=6887] ppid=6885 vsize=13982884 memory=40424 CPUtime=0.34 cores=1,3,5,7
/proc/6887/stat : 6887 (java) S 6885 6885 29331 0 -1 1077944320 7656 0 0 0 31 3 0 0 20 0 15 0 95462302 14318473216 10106 33554432000 4194304 4196468 140729238128288 140729238110832 140557470904055 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
/proc/6887/statm: 3495721 10106 3052 1 0 3482974 0
[pid=6887/tid=6888] ppid=6885 vsize=13982852 memory=7883960649037381690 CPUtime=0.19 cores=1,3,5,7
/proc/6887/task/6888/stat : 6888 (java) R 6885 6885 29331 0 -1 4202560 4905 0 0 0 18 1 0 0 20 0 15 0 95462303 14318440448 10106 33554432000 4194304 4196468 140729238128288 140557475105744 140557463621159 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6889] ppid=6885 vsize=13982852 memory=9541 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6889/stat : 6889 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462303 14318440448 10106 33554432000 4194304 4196468 140729238128288 140557066287376 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6890] ppid=6885 vsize=13982852 memory=4049919359400042213 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6890/stat : 6890 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462303 14318440448 10106 33554432000 4194304 4196468 140729238128288 140557065234832 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6891] ppid=6885 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6891/stat : 6891 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462303 14318440448 10106 33554432000 4194304 4196468 140729238128288 140557064182288 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6892] ppid=6885 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6892/stat : 6892 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462303 14318440448 10106 33554432000 4194304 4196468 140729238128288 140557063129744 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6893] ppid=6885 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6893/stat : 6893 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462305 14318440448 10106 33554432000 4194304 4196468 140729238128288 140556945132016 140557470915202 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6894] ppid=6885 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6894/stat : 6894 (java) S 6885 6885 29331 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95462305 14318440448 10106 33554432000 4194304 4196468 140729238128288 140556944078240 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6895] ppid=6885 vsize=13982884 memory=140289329485440 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6895/stat : 6895 (java) S 6885 6885 29331 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95462305 14318473216 10106 33554432000 4194304 4196468 140729238128288 140556943025648 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6896] ppid=6885 vsize=13982884 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6896/stat : 6896 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14318473216 10106 33554432000 4194304 4196468 140729238128288 140556941974224 140557470922651 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6897] ppid=6885 vsize=13982852 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/6887/task/6897/stat : 6897 (java) S 6885 6885 29331 0 -1 1077944384 413 0 0 0 2 0 0 0 20 0 15 0 95462308 14318440448 10106 33554432000 4194304 4196468 140729238128288 140556940920816 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6898] ppid=6885 vsize=13982852 memory=-1 CPUtime=0.02 cores=1,3,5,7
/proc/6887/task/6898/stat : 6898 (java) S 6885 6885 29331 0 -1 1077944384 389 0 0 0 2 0 0 0 20 0 15 0 95462308 14318440448 10106 33554432000 4194304 4196468 140729238128288 140556939868272 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6899] ppid=6885 vsize=13982852 memory=0 CPUtime=0.08 cores=1,3,5,7
/proc/6887/task/6899/stat : 6899 (java) S 6885 6885 29331 0 -1 1077944384 693 0 0 0 8 0 0 0 20 0 15 0 95462308 14318440448 10106 33554432000 4194304 4196468 140729238128288 140556938815728 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6900] ppid=6885 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6900/stat : 6900 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14318440448 10106 33554432000 4194304 4196468 140729238128288 140556937763424 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6901] ppid=6885 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6901/stat : 6901 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462308 14318440448 10106 33554432000 4194304 4196468 140729238128288 140556936710960 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 13992396 KiB
Current children cumulated memory: 41808 KiB

[startup+0.310508 s]*
/proc/loadavg: 1.96 1.94 1.86 5/217 6901
/proc/meminfo: memFree=31368048/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/statm: 2378 346 289 221 0 87 0
[pid=6887] ppid=6885 vsize=13982852 memory=47268 CPUtime=0.5 cores=1,3,5,7
/proc/6887/stat : 6887 (java) S 6885 6885 29331 0 -1 1077944320 8505 0 0 0 47 3 0 0 20 0 15 0 95462302 14318440448 11817 33554432000 4194304 4196468 140729238128288 140729238110832 140557470904055 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
/proc/6887/statm: 3495713 11817 3121 1 0 3482966 0
[pid=6887/tid=6888] ppid=6885 vsize=13982852 memory=-7246141791699957949 CPUtime=0.29 cores=1,3,5,7
/proc/6887/task/6888/stat : 6888 (java) R 6885 6885 29331 0 -1 4202560 5472 0 0 0 27 2 0 0 20 0 15 0 95462303 14318440448 11883 33554432000 4194304 4196468 140729238128288 140557475138384 140557470925981 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6889] ppid=6885 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6889/stat : 6889 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462303 14318440448 11883 33554432000 4194304 4196468 140729238128288 140557066287376 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6890] ppid=6885 vsize=13982852 memory=1970350607106051 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6890/stat : 6890 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462303 14318440448 11883 33554432000 4194304 4196468 140729238128288 140557065234832 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6891] ppid=6885 vsize=13982852 memory=2110639808354212 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6891/stat : 6891 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462303 14318440448 11883 33554432000 4194304 4196468 140729238128288 140557064182288 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6892] ppid=6885 vsize=13982852 memory=140289201252799 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6892/stat : 6892 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462303 14318440448 11883 33554432000 4194304 4196468 140729238128288 140557063129744 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6893] ppid=6885 vsize=13982852 memory=280578530738208 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6893/stat : 6893 (java) S 6885 6885 29331 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95462305 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556945132016 140557470915202 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6894] ppid=6885 vsize=13982852 memory=140289201187815 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6894/stat : 6894 (java) S 6885 6885 29331 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95462305 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556944078240 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6895] ppid=6885 vsize=13982852 memory=280578402514800 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6895/stat : 6895 (java) S 6885 6885 29331 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95462305 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556943025648 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6896] ppid=6885 vsize=13982852 memory=280578402519408 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6896/stat : 6896 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556941974224 140557470922651 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6897] ppid=6885 vsize=13982852 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/6887/task/6897/stat : 6897 (java) R 6885 6885 29331 0 -1 4202560 558 0 0 0 3 0 0 0 20 0 15 0 95462308 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556940920816 140557451604352 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6898] ppid=6885 vsize=13982852 memory=67 CPUtime=0.03 cores=1,3,5,7
/proc/6887/task/6898/stat : 6898 (java) R 6885 6885 29331 0 -1 1077944384 447 0 0 0 3 0 0 0 20 0 15 0 95462308 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556939868272 140557470915202 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6899] ppid=6885 vsize=13982852 memory=140289329485440 CPUtime=0.12 cores=1,3,5,7
/proc/6887/task/6899/stat : 6899 (java) S 6885 6885 29331 0 -1 1077944384 779 0 0 0 12 0 0 0 20 0 15 0 95462308 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556938815728 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6900] ppid=6885 vsize=13982852 memory=67 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6900/stat : 6900 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556937763424 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6901] ppid=6885 vsize=13982852 memory=140289329485440 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6901/stat : 6901 (java) S 6885 6885 29331 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95462308 14318440448 11883 33554432000 4194304 4196468 140729238128288 140556936710960 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
Current children cumulated CPU time: 0.5 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 48652 KiB

[startup+0.700867 s]
/proc/loadavg: 1.96 1.94 1.86 6/217 6901
/proc/meminfo: memFree=31185840/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/statm: 2378 346 289 221 0 87 0
[pid=6887] ppid=6885 vsize=13982928 memory=353796 CPUtime=1.27 cores=1,3,5,7
/proc/6887/stat : 6887 (java) S 6885 6885 29331 0 -1 1077944320 10209 0 0 0 105 22 0 0 20 0 15 0 95462302 14318518272 88449 33554432000 4194304 4196468 140729238128288 140729238110832 140557470904055 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
/proc/6887/statm: 3495732 88449 3179 1 0 3482966 0
[pid=6887/tid=6888] ppid=6885 vsize=13982928 memory=0 CPUtime=0.61 cores=1,3,5,7
/proc/6887/task/6888/stat : 6888 (java) R 6885 6885 29331 0 -1 4202560 5836 0 0 0 54 7 0 0 20 0 15 0 95462303 14318518272 88449 33554432000 4194304 4196468 140729238128288 140557475139192 140557108114182 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6889] ppid=6885 vsize=13982928 memory=0 CPUtime=0.06 cores=1,3,5,7
/proc/6887/task/6889/stat : 6889 (java) S 6885 6885 29331 0 -1 1077944384 67 0 0 0 3 3 0 0 20 0 15 0 95462303 14318518272 88449 33554432000 4194304 4196468 140729238128288 140557066287376 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6890] ppid=6885 vsize=13982928 memory=1928 CPUtime=0.06 cores=1,3,5,7
/proc/6887/task/6890/stat : 6890 (java) S 6885 6885 29331 0 -1 1077944384 64 0 0 0 3 3 0 0 20 0 15 0 95462303 14318518272 88449 33554432000 4194304 4196468 140729238128288 140557065234832 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6891] ppid=6885 vsize=13982928 memory=1200 CPUtime=0.05 cores=1,3,5,7
/proc/6887/task/6891/stat : 6891 (java) S 6885 6885 29331 0 -1 1077944384 48 0 0 0 2 3 0 0 20 0 15 0 95462303 14318518272 88449 33554432000 4194304 4196468 140729238128288 140557064182288 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6892] ppid=6885 vsize=13982928 memory=8564 CPUtime=0.05 cores=1,3,5,7
/proc/6887/task/6892/stat : 6892 (java) S 6885 6885 29331 0 -1 1077944384 67 0 0 0 2 3 0 0 20 0 15 0 95462303 14318518272 88449 33554432000 4194304 4196468 140729238128288 140557063129744 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6893] ppid=6885 vsize=13982928 memory=5664 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6893/stat : 6893 (java) S 6885 6885 29331 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 95462305 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556945132016 140557470915202 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6894] ppid=6885 vsize=13982928 memory=4616 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6894/stat : 6894 (java) S 6885 6885 29331 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 15 0 95462305 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556944078240 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6895] ppid=6885 vsize=13982928 memory=1228 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6895/stat : 6895 (java) S 6885 6885 29331 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 95462305 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556943025648 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6896] ppid=6885 vsize=13982928 memory=10928 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6896/stat : 6896 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556941974224 140557470922651 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6897] ppid=6885 vsize=13982928 memory=796 CPUtime=0.07 cores=1,3,5,7
/proc/6887/task/6897/stat : 6897 (java) S 6885 6885 29331 0 -1 1077944384 566 0 0 0 7 0 0 0 20 0 15 0 95462308 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556940920816 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6898] ppid=6885 vsize=13982928 memory=1424 CPUtime=0.15 cores=1,3,5,7
/proc/6887/task/6898/stat : 6898 (java) R 6885 6885 29331 0 -1 4202560 1204 0 0 0 15 0 0 0 20 0 15 0 95462308 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556939854152 140557452428729 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6899] ppid=6885 vsize=13982928 memory=7014751519583589713 CPUtime=0.17 cores=1,3,5,7
/proc/6887/task/6899/stat : 6899 (java) S 6885 6885 29331 0 -1 1077944384 972 0 0 0 17 0 0 0 20 0 15 0 95462308 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556938815728 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6900] ppid=6885 vsize=13982928 memory=7453282923461502565 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6900/stat : 6900 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556937763424 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6901] ppid=6885 vsize=13982928 memory=5795117241467496816 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6901/stat : 6901 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14318518272 88449 33554432000 4194304 4196468 140729238128288 140556936710960 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
Current children cumulated CPU time: 1.27 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 355180 KiB

[startup+1.50085 s]
/proc/loadavg: 1.96 1.94 1.86 5/217 6901
/proc/meminfo: memFree=30290872/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/statm: 2378 346 289 221 0 87 0

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

/proc/6887/task/6890/stat : 6890 (java) S 6885 6885 29331 0 -1 1077944384 55086 0 0 0 1183 275 0 0 20 0 15 0 95462303 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140557065234832 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6891] ppid=6885 vsize=13984976 memory=11309704 CPUtime=14.57 cores=1,3,5,7
/proc/6887/task/6891/stat : 6891 (java) S 6885 6885 29331 0 -1 1077944384 60892 0 0 0 1191 266 0 0 20 0 15 0 95462303 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140557064182288 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6892] ppid=6885 vsize=13984976 memory=1720 CPUtime=14.46 cores=1,3,5,7
/proc/6887/task/6892/stat : 6892 (java) S 6885 6885 29331 0 -1 1077944384 72329 0 0 0 1165 281 0 0 20 0 15 0 95462303 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140557063129744 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6893] ppid=6885 vsize=13984976 memory=1008 CPUtime=2.92 cores=1,3,5,7
/proc/6887/task/6893/stat : 6893 (java) R 6885 6885 29331 0 -1 4202560 24372 0 0 0 289 3 0 0 20 0 15 0 95462305 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556945130576 140557455361658 0 0 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6894] ppid=6885 vsize=13984976 memory=1928 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6894/stat : 6894 (java) S 6885 6885 29331 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 15 0 95462305 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556944078304 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6895] ppid=6885 vsize=13984976 memory=11572952 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6895/stat : 6895 (java) S 6885 6885 29331 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 95462305 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556943025664 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6896] ppid=6885 vsize=13984976 memory=11309708 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6896/stat : 6896 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556941974224 140557470922651 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6897] ppid=6885 vsize=13984976 memory=27576 CPUtime=0.44 cores=1,3,5,7
/proc/6887/task/6897/stat : 6897 (java) S 6885 6885 29331 0 -1 1077944384 2496 0 0 0 44 0 0 0 20 0 15 0 95462308 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556940920816 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6898] ppid=6885 vsize=13984976 memory=30 CPUtime=0.64 cores=1,3,5,7
/proc/6887/task/6898/stat : 6898 (java) S 6885 6885 29331 0 -1 1077944384 4109 0 0 0 64 0 0 0 20 0 15 0 95462308 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556939868272 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6899] ppid=6885 vsize=13984976 memory=3068 CPUtime=0.3 cores=1,3,5,7
/proc/6887/task/6899/stat : 6899 (java) S 6885 6885 29331 0 -1 1077944384 2745 0 0 0 30 0 0 0 20 0 15 0 95462308 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556938815728 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6900] ppid=6885 vsize=13984976 memory=307 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6900/stat : 6900 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556937763424 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6901] ppid=6885 vsize=13984976 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/6887/task/6901/stat : 6901 (java) S 6885 6885 29331 0 -1 1077944384 547 0 0 0 3 4 0 0 20 0 15 0 95462308 14320615424 2893238 33554432000 4194304 4196468 140729238128288 140556936710960 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
Current children cumulated CPU time: 147.36 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11574336 KiB

[startup+103.201 s]
/proc/loadavg: 2.28 2.03 1.90 6/216 7058
/proc/meminfo: memFree=19843676/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/statm: 2378 346 289 221 0 87 0
[pid=6887] ppid=6885 vsize=13984976 memory=11573316 CPUtime=149.28 cores=1,3,5,7
/proc/6887/stat : 6887 (java) S 6885 6885 29331 0 -1 1077944320 486422 0 0 0 13777 1151 0 0 20 0 15 0 95462302 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140729238110832 140557470904055 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
/proc/6887/statm: 3496244 2893329 3248 1 0 3483478 0
[pid=6887/tid=6888] ppid=6885 vsize=13984976 memory=280578403377472 CPUtime=84.75 cores=1,3,5,7
/proc/6887/task/6888/stat : 6888 (java) S 6885 6885 29331 0 -1 1077944384 81126 0 0 0 8449 26 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557475142272 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6889] ppid=6885 vsize=13984976 memory=1384 CPUtime=14.91 cores=1,3,5,7
/proc/6887/task/6889/stat : 6889 (java) R 6885 6885 29331 0 -1 4202560 180538 0 0 0 1200 291 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557066286960 140557463532263 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6890] ppid=6885 vsize=13984976 memory=11309708 CPUtime=14.95 cores=1,3,5,7
/proc/6887/task/6890/stat : 6890 (java) R 6885 6885 29331 0 -1 4202560 55086 0 0 0 1220 275 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557065235032 140557455854660 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6891] ppid=6885 vsize=13984976 memory=4052 CPUtime=14.95 cores=1,3,5,7
/proc/6887/task/6891/stat : 6891 (java) R 6885 6885 29331 0 -1 4202560 61215 0 0 0 1229 266 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557064182288 140557455856727 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6892] ppid=6885 vsize=13984976 memory=1384 CPUtime=14.84 cores=1,3,5,7
/proc/6887/task/6892/stat : 6892 (java) R 6885 6885 29331 0 -1 4202560 72605 0 0 0 1203 281 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557063129744 140557455855083 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6893] ppid=6885 vsize=13984976 memory=1384 CPUtime=3.33 cores=1,3,5,7
/proc/6887/task/6893/stat : 6893 (java) S 6885 6885 29331 0 -1 1077944384 24628 0 0 0 330 3 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556945130336 140557470914261 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6894] ppid=6885 vsize=13984976 memory=11572964 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6894/stat : 6894 (java) S 6885 6885 29331 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556944078304 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6895] ppid=6885 vsize=13984976 memory=8112282956445269571 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6895/stat : 6895 (java) S 6885 6885 29331 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556943025664 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6896] ppid=6885 vsize=13984976 memory=27576 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6896/stat : 6896 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556941974224 140557470922651 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6897] ppid=6885 vsize=13984976 memory=1296 CPUtime=0.44 cores=1,3,5,7
/proc/6887/task/6897/stat : 6897 (java) S 6885 6885 29331 0 -1 1077944384 2496 0 0 0 44 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556940920816 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6898] ppid=6885 vsize=13984976 memory=2408 CPUtime=0.64 cores=1,3,5,7
/proc/6887/task/6898/stat : 6898 (java) S 6885 6885 29331 0 -1 1077944384 4109 0 0 0 64 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556939868272 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6899] ppid=6885 vsize=13984976 memory=0 CPUtime=0.3 cores=1,3,5,7
/proc/6887/task/6899/stat : 6899 (java) S 6885 6885 29331 0 -1 1077944384 2745 0 0 0 30 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556938815728 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6900] ppid=6885 vsize=13984976 memory=7883944108235712103 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6900/stat : 6900 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556937763424 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6901] ppid=6885 vsize=13984976 memory=7883944108235712103 CPUtime=0.07 cores=1,3,5,7
/proc/6887/task/6901/stat : 6901 (java) S 6885 6885 29331 0 -1 1077944384 547 0 0 0 3 4 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556936710960 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
Current children cumulated CPU time: 149.28 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11574700 KiB

[startup+104.001 s]*
/proc/loadavg: 2.28 2.03 1.90 6/216 7058
/proc/meminfo: memFree=19843676/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/statm: 2378 346 289 221 0 87 0
[pid=6887] ppid=6885 vsize=13984976 memory=11573316 CPUtime=152.02 cores=1,3,5,7
/proc/6887/stat : 6887 (java) S 6885 6885 29331 0 -1 1077944320 486780 0 0 0 14051 1151 0 0 20 0 15 0 95462302 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140729238110832 140557470904055 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
/proc/6887/statm: 3496244 2893329 3248 1 0 3483478 0
[pid=6887/tid=6888] ppid=6885 vsize=13984976 memory=6935054825532540783 CPUtime=84.75 cores=1,3,5,7
/proc/6887/task/6888/stat : 6888 (java) S 6885 6885 29331 0 -1 1077944384 81126 0 0 0 8449 26 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557475142272 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6889] ppid=6885 vsize=13984976 memory=4126316290023845779 CPUtime=15.56 cores=1,3,5,7
/proc/6887/task/6889/stat : 6889 (java) R 6885 6885 29331 0 -1 4202560 180633 0 0 0 1265 291 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557066287264 140557455855128 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6890] ppid=6885 vsize=13984976 memory=1384 CPUtime=15.59 cores=1,3,5,7
/proc/6887/task/6890/stat : 6890 (java) R 6885 6885 29331 0 -1 4202560 55086 0 0 0 1284 275 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557065234728 140557463532263 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6891] ppid=6885 vsize=13984976 memory=1384 CPUtime=15.6 cores=1,3,5,7
/proc/6887/task/6891/stat : 6891 (java) R 6885 6885 29331 0 -1 4202560 61260 0 0 0 1294 266 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557064182488 140557455855083 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6892] ppid=6885 vsize=13984976 memory=2408 CPUtime=15.49 cores=1,3,5,7
/proc/6887/task/6892/stat : 6892 (java) R 6885 6885 29331 0 -1 4202560 72821 0 0 0 1268 281 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557063129744 140557455889352 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6893] ppid=6885 vsize=13984976 memory=1728 CPUtime=3.49 cores=1,3,5,7
/proc/6887/task/6893/stat : 6893 (java) S 6885 6885 29331 0 -1 1077944384 24629 0 0 0 346 3 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556945130352 140557470914261 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6894] ppid=6885 vsize=13984976 memory=1720 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6894/stat : 6894 (java) S 6885 6885 29331 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556944078304 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6895] ppid=6885 vsize=13984976 memory=1728 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6895/stat : 6895 (java) S 6885 6885 29331 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556943025664 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6896] ppid=6885 vsize=13984976 memory=1720 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6896/stat : 6896 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556941974224 140557470922651 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6897] ppid=6885 vsize=13984976 memory=1008 CPUtime=0.44 cores=1,3,5,7
/proc/6887/task/6897/stat : 6897 (java) S 6885 6885 29331 0 -1 1077944384 2497 0 0 0 44 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556940920576 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6898] ppid=6885 vsize=13984976 memory=1928 CPUtime=0.64 cores=1,3,5,7
/proc/6887/task/6898/stat : 6898 (java) S 6885 6885 29331 0 -1 1077944384 4109 0 0 0 64 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556939868320 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6899] ppid=6885 vsize=13984976 memory=1200 CPUtime=0.3 cores=1,3,5,7
/proc/6887/task/6899/stat : 6899 (java) S 6885 6885 29331 0 -1 1077944384 2745 0 0 0 30 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556938815776 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6900] ppid=6885 vsize=13984976 memory=8564 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6900/stat : 6900 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556937763424 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6901] ppid=6885 vsize=13984976 memory=5664 CPUtime=0.07 cores=1,3,5,7
/proc/6887/task/6901/stat : 6901 (java) S 6885 6885 29331 0 -1 1077944384 547 0 0 0 3 4 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556936710960 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
Current children cumulated CPU time: 152.02 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11574700 KiB

[startup+104.401 s]
/proc/loadavg: 2.28 2.03 1.90 6/216 7058
/proc/meminfo: memFree=19843676/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/statm: 2378 346 289 221 0 87 0
[pid=6887] ppid=6885 vsize=13984976 memory=11573316 CPUtime=153.21 cores=1,3,5,7
/proc/6887/stat : 6887 (java) S 6885 6885 29331 0 -1 1077944320 487036 0 0 0 14170 1151 0 0 20 0 15 0 95462302 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140729238110832 140557470904055 0 0 0 16800975 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
/proc/6887/statm: 3496244 2893329 3248 1 0 3483478 0
[pid=6887/tid=6888] ppid=6885 vsize=13984976 memory=8112282956445269571 CPUtime=84.75 cores=1,3,5,7
/proc/6887/task/6888/stat : 6888 (java) S 6885 6885 29331 0 -1 1077944384 81126 0 0 0 8449 26 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557475142272 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6889] ppid=6885 vsize=13984976 memory=952 CPUtime=15.82 cores=1,3,5,7
/proc/6887/task/6889/stat : 6889 (java) S 6885 6885 29331 0 -1 1077944384 180888 0 0 0 1291 291 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557066287376 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6890] ppid=6885 vsize=13984976 memory=1236 CPUtime=15.85 cores=1,3,5,7
/proc/6887/task/6890/stat : 6890 (java) S 6885 6885 29331 0 -1 1077944384 55086 0 0 0 1310 275 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557065234832 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6891] ppid=6885 vsize=13984976 memory=4384 CPUtime=15.87 cores=1,3,5,7
/proc/6887/task/6891/stat : 6891 (java) S 6885 6885 29331 0 -1 1077944384 61261 0 0 0 1321 266 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557064182288 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6892] ppid=6885 vsize=13984976 memory=932 CPUtime=15.75 cores=1,3,5,7
/proc/6887/task/6892/stat : 6892 (java) S 6885 6885 29331 0 -1 1077944384 72821 0 0 0 1294 281 0 0 20 0 15 0 95462303 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140557063129744 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6893] ppid=6885 vsize=13984976 memory=1576 CPUtime=3.61 cores=1,3,5,7
/proc/6887/task/6893/stat : 6893 (java) R 6885 6885 29331 0 -1 4202560 24629 0 0 0 358 3 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556945130576 140557449274216 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6894] ppid=6885 vsize=13984976 memory=2240 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6894/stat : 6894 (java) S 6885 6885 29331 0 -1 1077944384 41 0 0 0 0 0 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556944078304 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6895] ppid=6885 vsize=13984976 memory=4128 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6895/stat : 6895 (java) S 6885 6885 29331 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 95462305 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556943025664 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6896] ppid=6885 vsize=13984976 memory=2200 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6896/stat : 6896 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556941974224 140557470922651 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6897] ppid=6885 vsize=13984976 memory=6508 CPUtime=0.44 cores=1,3,5,7
/proc/6887/task/6897/stat : 6897 (java) S 6885 6885 29331 0 -1 1077944384 2497 0 0 0 44 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556940920576 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6898] ppid=6885 vsize=13984976 memory=836 CPUtime=0.64 cores=1,3,5,7
/proc/6887/task/6898/stat : 6898 (java) S 6885 6885 29331 0 -1 1077944384 4109 0 0 0 64 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556939868320 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6899] ppid=6885 vsize=13984976 memory=2540 CPUtime=0.3 cores=1,3,5,7
/proc/6887/task/6899/stat : 6899 (java) S 6885 6885 29331 0 -1 1077944384 2745 0 0 0 30 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556938815776 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6900] ppid=6885 vsize=13984976 memory=2540 CPUtime=0 cores=1,3,5,7
/proc/6887/task/6900/stat : 6900 (java) S 6885 6885 29331 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556937763424 140557470914261 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
[pid=6887/tid=6901] ppid=6885 vsize=13984976 memory=1156 CPUtime=0.07 cores=1,3,5,7
/proc/6887/task/6901/stat : 6901 (java) S 6885 6885 29331 0 -1 1077944384 547 0 0 0 3 4 0 0 20 0 15 0 95462308 14320615424 2893329 33554432000 4194304 4196468 140729238128288 140556936710960 140557470915202 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 18960384 140729238131869 140729238132044 140729238132044 140729238134735 0
Current children cumulated CPU time: 153.21 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11574700 KiB

[startup+104.501 s]
/proc/loadavg: 2.28 2.03 1.90 6/216 7058
/proc/meminfo: memFree=19843676/32770624 swapFree=67108860/67108860
[pid=6885] ppid=6882 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/6885/stat : 6885 (xcsp3-exec) S 6882 6885 29331 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 95462302 9740288 346 33554432000 4194304 5098028 140721837443408 140721837441512 140698570273404 0 65536 4100 65538 18446744071579417331 0 0 17 1 0 0 0 0 0 7196144 7232144 25399296 140721837450356 140721837450560 140721837450560 140721837453291 0
/proc/6885/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): 104.514
CPU time (s): 153.335
CPU user time (s): 141.738
CPU system time (s): 11.5971
CPU usage (%): 146.712
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11574700

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 141.738
system time used= 11.5971
maximum resident set size= 11573696
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 487680
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= 11876
involuntary context switches= 680


# summary of solver processes directly reported to runsolver:
#   pid: 6885
#   total CPU time (s): 153.335
#   total CPU user time (s): 141.738
#   total CPU system time (s): 11.5971

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.684476 second user time and 1.14266 second system time

The end

Launcher Data

Begin job on node115 at 2017-08-13 13:14:47
IDJOB=4270013
IDBENCH=138075
IDSOLVER=2661
FILE ID=node115/4270013-1502623745
RUNJOBID= node115-1502619962-4172
PBS_JOBID= 20628301
Free space on /tmp= 61724 MiB

SOLVER NAME= choco-solver 4.0.5 seq
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-41.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-4270013-1502623745/watcher-4270013-1502623745 -o /tmp/evaluation-result-4270013-1502623745/solver-4270013-1502623745 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node115-1502619962-4172 --watchdog 300  ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 1513326792 HOME/instance-4270013-1502623745.xml

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

MD5SUM BENCH= a372e06032e8b52aa9c97452ff274801
RANDOM SEED=1513326792

node115.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.69
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.69
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.69
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.69
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:        31403032 kB
MemAvailable:   31807596 kB
Buffers:          114608 kB
Cached:           576512 kB
SwapCached:            0 kB
Active:           738348 kB
Inactive:         188832 kB
Active(anon):     184564 kB
Inactive(anon):    79408 kB
Active(file):     553784 kB
Inactive(file):   109424 kB
Unevictable:        6220 kB
Mlocked:            6220 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             92012 kB
Writeback:             0 kB
AnonPages:        242352 kB
Mapped:            55468 kB
Shmem:             25224 kB
Slab:             140560 kB
SReclaimable:     114380 kB
SUnreclaim:        26180 kB
KernelStack:        3536 kB
PageTables:         5684 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1270236 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    147456 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      105856 kB
DirectMap2M:    33439744 kB

Free space on /tmp at the end= 61716 MiB
End job on node115 at 2017-08-13 13:16:32