Trace number 4282763

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-18)? 173.41901 113.961

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4282763-1503214810/watcher-4282763-1503214810 -o /tmp/evaluation-result-4282763-1503214810/solver-4282763-1503214810 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node103-1503209003-32625 --watchdog 300 ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 274005769 HOME/instance-4282763-1503214810.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=4675, runsolver pid=4672
Current StackSize limit: 8192 KiB


[startup+0.10631 s]*
/proc/loadavg: 1.98 1.95 1.88 5/217 4691
/proc/meminfo: memFree=14309728/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/statm: 2378 346 289 221 0 87 0
[pid=4677] ppid=4675 vsize=13978596 memory=28152 CPUtime=0.13 cores=1,3,5,7
/proc/4677/stat : 4677 (java) S 4675 4675 32593 0 -1 1077944320 5414 0 0 0 13 0 0 0 20 0 15 0 154569092 14314082304 7038 33554432000 4194304 4196468 140728223610592 140728223593136 140087718874871 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
/proc/4677/statm: 3494649 7038 2875 1 0 3482966 0
[pid=4677/tid=4678] ppid=4675 vsize=13978596 memory=7031125463459224206 CPUtime=0.09 cores=1,3,5,7
/proc/4677/task/4678/stat : 4678 (java) R 4675 4675 32593 0 -1 4202560 3362 0 0 0 9 0 0 0 20 0 15 0 154569093 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087723097872 140087718886806 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4679] ppid=4675 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4679/stat : 4679 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569093 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087675427344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4680] ppid=4675 vsize=13978596 memory=140151269385856 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4680/stat : 4680 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569093 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087674374800 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4681] ppid=4675 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4681/stat : 4681 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569094 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087312967952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4682] ppid=4675 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4682/stat : 4682 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569094 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087311915408 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4683] ppid=4675 vsize=13978596 memory=140151269385856 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4683/stat : 4683 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569095 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087192931056 140087718886018 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4684] ppid=4675 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4684/stat : 4684 (java) S 4675 4675 32593 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154569095 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087191877280 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4685] ppid=4675 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4685/stat : 4685 (java) S 4675 4675 32593 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154569095 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087190824176 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4686] ppid=4675 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4686/stat : 4686 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087189772752 140087718893467 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4687] ppid=4675 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4687/stat : 4687 (java) R 4675 4675 32593 0 -1 1077944384 302 0 0 0 0 0 0 0 20 0 15 0 154569098 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087188719856 140087718886018 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4688] ppid=4675 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4688/stat : 4688 (java) R 4675 4675 32593 0 -1 4202560 123 0 0 0 0 0 0 0 20 0 15 0 154569098 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087187667408 140087711859913 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4689] ppid=4675 vsize=13978596 memory=140151269385856 CPUtime=0.02 cores=1,3,5,7
/proc/4677/task/4689/stat : 4689 (java) R 4675 4675 32593 0 -1 4202560 332 0 0 0 2 0 0 0 20 0 15 0 154569098 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087186614256 140087718886806 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4690] ppid=4675 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4690/stat : 4690 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087185561952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4691] ppid=4675 vsize=13978596 memory=140151269385856 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4691/stat : 4691 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569098 14314082304 7104 33554432000 4194304 4196468 140728223610592 140087184510000 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 29536 KiB

[startup+0.210751 s]*
/proc/loadavg: 1.98 1.95 1.88 3/217 4691
/proc/meminfo: memFree=14297772/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/statm: 2378 346 289 221 0 87 0
[pid=4677] ppid=4675 vsize=13982852 memory=40632 CPUtime=0.33 cores=1,3,5,7
/proc/4677/stat : 4677 (java) S 4675 4675 32593 0 -1 1077944320 8137 0 0 0 32 1 0 0 20 0 15 0 154569092 14318440448 10158 33554432000 4194304 4196468 140728223610592 140728223593136 140087718874871 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
/proc/4677/statm: 3495713 10158 3086 1 0 3482966 0
[pid=4677/tid=4678] ppid=4675 vsize=13982884 memory=7022364632946311227 CPUtime=0.2 cores=1,3,5,7
/proc/4677/task/4678/stat : 4678 (java) R 4675 4675 32593 0 -1 4202560 5312 0 0 0 19 1 0 0 20 0 15 0 154569093 14318473216 10180 33554432000 4194304 4196468 140728223610592 140087723084496 140087711554589 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4679] ppid=4675 vsize=13982852 memory=4294976320 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4679/stat : 4679 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569093 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087675427344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4680] ppid=4675 vsize=13982852 memory=3473878030041245344 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4680/stat : 4680 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569093 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087674374800 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4681] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4681/stat : 4681 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569094 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087312967952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4682] ppid=4675 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4682/stat : 4682 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569094 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087311915408 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4683] ppid=4675 vsize=13982852 memory=140151269385856 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4683/stat : 4683 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569095 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087192931056 140087718886018 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4684] ppid=4675 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4684/stat : 4684 (java) S 4675 4675 32593 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154569095 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087191877280 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4685] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4685/stat : 4685 (java) S 4675 4675 32593 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154569095 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087190824176 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4686] ppid=4675 vsize=13982884 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4686/stat : 4686 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14318473216 10180 33554432000 4194304 4196468 140728223610592 140087189772752 140087718893467 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4687] ppid=4675 vsize=13982884 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/4677/task/4687/stat : 4687 (java) S 4675 4675 32593 0 -1 1077944384 402 0 0 0 2 0 0 0 20 0 15 0 154569098 14318473216 10180 33554432000 4194304 4196468 140728223610592 140087188719856 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4688] ppid=4675 vsize=13982852 memory=-1 CPUtime=0.02 cores=1,3,5,7
/proc/4677/task/4688/stat : 4688 (java) S 4675 4675 32593 0 -1 1077944384 400 0 0 0 2 0 0 0 20 0 15 0 154569098 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087187667312 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4689] ppid=4675 vsize=13982852 memory=140151269385856 CPUtime=0.07 cores=1,3,5,7
/proc/4677/task/4689/stat : 4689 (java) S 4675 4675 32593 0 -1 1077944384 762 0 0 0 7 0 0 0 20 0 15 0 154569098 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087186614256 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4690] ppid=4675 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4690/stat : 4690 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087185561952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4691] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4691/stat : 4691 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569098 14318440448 10180 33554432000 4194304 4196468 140728223610592 140087184510000 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 42016 KiB

[startup+0.317672 s]*
/proc/loadavg: 1.98 1.95 1.88 4/217 4691
/proc/meminfo: memFree=14291196/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/statm: 2378 346 289 221 0 87 0
[pid=4677] ppid=4675 vsize=13982852 memory=47560 CPUtime=0.52 cores=1,3,5,7
/proc/4677/stat : 4677 (java) S 4675 4675 32593 0 -1 1077944320 9060 0 0 0 50 2 0 0 20 0 15 0 154569092 14318440448 11890 33554432000 4194304 4196468 140728223610592 140728223593136 140087718874871 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
/proc/4677/statm: 3495713 11890 3115 1 0 3482966 0
[pid=4677/tid=4678] ppid=4675 vsize=13982852 memory=7310027617963868211 CPUtime=0.29 cores=1,3,5,7
/proc/4677/task/4678/stat : 4678 (java) R 4675 4675 32593 0 -1 4202560 5923 0 0 0 28 1 0 0 20 0 15 0 154569093 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087723112608 140087718896797 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4679] ppid=4675 vsize=13982852 memory=288230608969409347 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4679/stat : 4679 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569093 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087675427344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4680] ppid=4675 vsize=13982852 memory=13572582893580647 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4680/stat : 4680 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569093 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087674374800 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4681] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4681/stat : 4681 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569094 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087312967952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4682] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4682/stat : 4682 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569094 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087311915408 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4683] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4683/stat : 4683 (java) S 4675 4675 32593 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 154569095 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087192931056 140087718886018 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4684] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4684/stat : 4684 (java) S 4675 4675 32593 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 154569095 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087191877280 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4685] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4685/stat : 4685 (java) S 4675 4675 32593 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 154569095 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087190824176 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4686] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4686/stat : 4686 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087189772752 140087718893467 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4687] ppid=4675 vsize=13982852 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/4677/task/4687/stat : 4687 (java) R 4675 4675 32593 0 -1 4202560 571 0 0 0 4 0 0 0 20 0 15 0 154569098 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087188719856 140087698537265 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4688] ppid=4675 vsize=13982852 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/4677/task/4688/stat : 4688 (java) R 4675 4675 32593 0 -1 4202560 423 0 0 0 4 0 0 0 20 0 15 0 154569098 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087187667312 140087702431698 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4689] ppid=4675 vsize=13982852 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/4677/task/4689/stat : 4689 (java) S 4675 4675 32593 0 -1 1077944384 839 0 0 0 12 0 0 0 20 0 15 0 154569098 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087186614256 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4690] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4690/stat : 4690 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087185561952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4691] ppid=4675 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4691/stat : 4691 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569098 14318440448 11890 33554432000 4194304 4196468 140728223610592 140087184510000 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 48944 KiB

[startup+0.700885 s]
/proc/loadavg: 1.98 1.95 1.88 6/217 4691
/proc/meminfo: memFree=14107560/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/statm: 2378 346 289 221 0 87 0
[pid=4677] ppid=4675 vsize=13982928 memory=358528 CPUtime=1.18 cores=1,3,5,7
/proc/4677/stat : 4677 (java) S 4675 4675 32593 0 -1 1077944320 9902 0 0 0 97 21 0 0 20 0 15 0 154569092 14318518272 89632 33554432000 4194304 4196468 140728223610592 140728223593136 140087718874871 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
/proc/4677/statm: 3495732 89632 3161 1 0 3482966 0
[pid=4677/tid=4678] ppid=4675 vsize=13982928 memory=0 CPUtime=0.6 cores=1,3,5,7
/proc/4677/task/4678/stat : 4678 (java) R 4675 4675 32593 0 -1 4202560 6288 0 0 0 54 6 0 0 20 0 15 0 154569093 14318518272 89632 33554432000 4194304 4196468 140728223610592 140087723108384 140087356803089 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4679] ppid=4675 vsize=13982928 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/4677/task/4679/stat : 4679 (java) S 4675 4675 32593 0 -1 1077944384 68 0 0 0 2 3 0 0 20 0 15 0 154569093 14318518272 89632 33554432000 4194304 4196468 140728223610592 140087675427344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4680] ppid=4675 vsize=13982928 memory=153 CPUtime=0.05 cores=1,3,5,7
/proc/4677/task/4680/stat : 4680 (java) S 4675 4675 32593 0 -1 1077944384 65 0 0 0 2 3 0 0 20 0 15 0 154569093 14318518272 89632 33554432000 4194304 4196468 140728223610592 140087674374800 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4681] ppid=4675 vsize=13982928 memory=2 CPUtime=0.05 cores=1,3,5,7
/proc/4677/task/4681/stat : 4681 (java) S 4675 4675 32593 0 -1 1077944384 60 0 0 0 2 3 0 0 20 0 15 0 154569094 14318518272 89632 33554432000 4194304 4196468 140728223610592 140087312967952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4682] ppid=4675 vsize=13982928 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/4677/task/4682/stat : 4682 (java) S 4675 4675 32593 0 -1 1077944384 52 0 0 0 2 2 0 0 20 0 15 0 154569094 14318518272 89632 33554432000 4194304 4196468 140728223610592 140087311915408 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4683] ppid=4675 vsize=13982928 memory=2428 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4683/stat : 4683 (java) S 4675 4675 32593 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 154569095 14318518272 89632 33554432000 4194304 4196468 140728223610592 140087192931056 140087718886018 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4684] ppid=4675 vsize=13982928 memory=928 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4684/stat : 4684 (java) S 4675 4675 32593 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 154569095 14318518272 89632 33554432000 4194304 4196468 140728223610592 140087191877280 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4685] ppid=4675 vsize=13982928 memory=1568 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4685/stat : 4685 (java) S 4675 4675 32593 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 154569095 14318518272 89632 33554432000 4194304 4196468 140728223610592 140087190824176 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4686] ppid=4675 vsize=13982928 memory=2240 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4686/stat : 4686 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14318518272 90144 33554432000 4194304 4196468 140728223610592 140087189772752 140087718893467 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4687] ppid=4675 vsize=13982928 memory=4128 CPUtime=0.07 cores=1,3,5,7
/proc/4677/task/4687/stat : 4687 (java) S 4675 4675 32593 0 -1 1077944384 591 0 0 0 7 0 0 0 20 0 15 0 154569098 14318518272 90144 33554432000 4194304 4196468 140728223610592 140087188719856 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4688] ppid=4675 vsize=13982928 memory=2204 CPUtime=0.07 cores=1,3,5,7
/proc/4677/task/4688/stat : 4688 (java) S 4675 4675 32593 0 -1 1077944384 444 0 0 0 7 0 0 0 20 0 15 0 154569098 14318518272 90144 33554432000 4194304 4196468 140728223610592 140087187667312 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4689] ppid=4675 vsize=13982928 memory=7788 CPUtime=0.17 cores=1,3,5,7
/proc/4677/task/4689/stat : 4689 (java) S 4675 4675 32593 0 -1 1077944384 952 0 0 0 17 0 0 0 20 0 15 0 154569098 14318518272 90144 33554432000 4194304 4196468 140728223610592 140087186614256 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4690] ppid=4675 vsize=13982928 memory=840 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4690/stat : 4690 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14318518272 90144 33554432000 4194304 4196468 140728223610592 140087185561952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4691] ppid=4675 vsize=13982928 memory=4104 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4691/stat : 4691 (java) S 4675 4675 32593 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 154569098 14318518272 90144 33554432000 4194304 4196468 140728223610592 140087184510000 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
Current children cumulated CPU time: 1.18 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 359912 KiB

[startup+1.5009 s]
/proc/loadavg: 1.98 1.95 1.88 6/217 4691
/proc/meminfo: memFree=13230280/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/statm: 2378 346 289 221 0 87 0

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

/proc/4677/task/4680/stat : 4680 (java) R 4675 4675 32593 0 -1 4202560 79180 0 0 0 1513 295 0 0 20 0 15 0 154569093 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087674374800 140087711977885 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4681] ppid=4675 vsize=13984976 memory=7019536598600280676 CPUtime=18.05 cores=1,3,5,7
/proc/4677/task/4681/stat : 4681 (java) R 4675 4675 32593 0 -1 4202560 109097 0 0 0 1491 314 0 0 20 0 15 0 154569094 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087312968152 140087711977864 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4682] ppid=4675 vsize=13984976 memory=7596571334611134040 CPUtime=18.06 cores=1,3,5,7
/proc/4677/task/4682/stat : 4682 (java) R 4675 4675 32593 0 -1 4202560 148882 0 0 0 1495 311 0 0 20 0 15 0 154569094 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087311915608 140087711977857 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4683] ppid=4675 vsize=13984976 memory=1228 CPUtime=3.44 cores=1,3,5,7
/proc/4677/task/4683/stat : 4683 (java) S 4675 4675 32593 0 -1 1077944384 27877 0 0 0 339 5 0 0 20 0 15 0 154569095 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087192929600 140087718885077 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4684] ppid=4675 vsize=13984976 memory=15880 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4684/stat : 4684 (java) S 4675 4675 32593 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 15 0 154569095 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087191877344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4685] ppid=4675 vsize=13984976 memory=18280 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4685/stat : 4685 (java) S 4675 4675 32593 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 15 0 154569095 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087190824192 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4686] ppid=4675 vsize=13984976 memory=23776 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4686/stat : 4686 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087189772752 140087718893467 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4687] ppid=4675 vsize=13984976 memory=4040 CPUtime=0.47 cores=1,3,5,7
/proc/4677/task/4687/stat : 4687 (java) S 4675 4675 32593 0 -1 1077944384 3618 0 0 0 47 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087188719856 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4688] ppid=4675 vsize=13984976 memory=1236 CPUtime=0.45 cores=1,3,5,7
/proc/4677/task/4688/stat : 4688 (java) S 4675 4675 32593 0 -1 1077944384 2859 0 0 0 45 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087187667072 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4689] ppid=4675 vsize=13984976 memory=644 CPUtime=0.31 cores=1,3,5,7
/proc/4677/task/4689/stat : 4689 (java) S 4675 4675 32593 0 -1 1077944384 2951 0 0 0 31 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087186610128 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4690] ppid=4675 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4690/stat : 4690 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087185561952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4691] ppid=4675 vsize=13984976 memory=8112282956445269571 CPUtime=0.07 cores=1,3,5,7
/proc/4677/task/4691/stat : 4691 (java) S 4675 4675 32593 0 -1 1077944384 476 0 0 0 3 4 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087184510000 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
Current children cumulated CPU time: 167.43 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11731604 KiB

[startup+112.801 s]
/proc/loadavg: 2.34 2.06 1.93 6/217 4692
/proc/meminfo: memFree=2658844/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/statm: 2378 346 289 221 0 87 0
[pid=4677] ppid=4675 vsize=13984976 memory=11730220 CPUtime=170.59 cores=1,3,5,7
/proc/4677/stat : 4677 (java) S 4675 4675 32593 0 -1 1077944320 568677 0 0 0 15779 1280 0 0 20 0 15 0 154569092 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140728223593136 140087718874871 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
/proc/4677/statm: 3496244 2932555 3248 1 0 3483478 0
[pid=4677/tid=4678] ppid=4675 vsize=13984976 memory=2548 CPUtime=90.28 cores=1,3,5,7
/proc/4677/task/4678/stat : 4678 (java) S 4675 4675 32593 0 -1 1077944384 81180 0 0 0 9002 26 0 0 20 0 15 0 154569093 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087723114848 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4679] ppid=4675 vsize=13984976 memory=2548 CPUtime=18.92 cores=1,3,5,7
/proc/4677/task/4679/stat : 4679 (java) R 4675 4675 32593 0 -1 4202560 98838 0 0 0 1572 320 0 0 20 0 15 0 154569093 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087675427232 140087711977864 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4680] ppid=4675 vsize=13984976 memory=1012 CPUtime=18.87 cores=1,3,5,7
/proc/4677/task/4680/stat : 4680 (java) R 4675 4675 32593 0 -1 4202560 80625 0 0 0 1592 295 0 0 20 0 15 0 154569093 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087674374800 140087711977857 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4681] ppid=4675 vsize=13984976 memory=280302317665824 CPUtime=18.83 cores=1,3,5,7
/proc/4677/task/4681/stat : 4681 (java) R 4675 4675 32593 0 -1 4202560 111082 0 0 0 1569 314 0 0 20 0 15 0 154569094 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087312968152 140087711977857 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4682] ppid=4675 vsize=13984976 memory=4616 CPUtime=18.84 cores=1,3,5,7
/proc/4677/task/4682/stat : 4682 (java) R 4675 4675 32593 0 -1 4202560 157828 0 0 0 1573 311 0 0 20 0 15 0 154569094 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087311915608 140087711977885 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4683] ppid=4675 vsize=13984976 memory=792 CPUtime=3.44 cores=1,3,5,7
/proc/4677/task/4683/stat : 4683 (java) S 4675 4675 32593 0 -1 1077944384 27877 0 0 0 339 5 0 0 20 0 15 0 154569095 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087192929600 140087718885077 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4684] ppid=4675 vsize=13984976 memory=1420 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4684/stat : 4684 (java) S 4675 4675 32593 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 15 0 154569095 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087191877344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4685] ppid=4675 vsize=13984976 memory=13144 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4685/stat : 4685 (java) S 4675 4675 32593 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 15 0 154569095 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087190824192 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4686] ppid=4675 vsize=13984976 memory=1944 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4686/stat : 4686 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087189772752 140087718893467 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4687] ppid=4675 vsize=13984976 memory=1196 CPUtime=0.47 cores=1,3,5,7
/proc/4677/task/4687/stat : 4687 (java) S 4675 4675 32593 0 -1 1077944384 3618 0 0 0 47 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087188719856 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4688] ppid=4675 vsize=13984976 memory=8588 CPUtime=0.45 cores=1,3,5,7
/proc/4677/task/4688/stat : 4688 (java) S 4675 4675 32593 0 -1 1077944384 2859 0 0 0 45 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087187667072 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4689] ppid=4675 vsize=13984976 memory=1384 CPUtime=0.31 cores=1,3,5,7
/proc/4677/task/4689/stat : 4689 (java) S 4675 4675 32593 0 -1 1077944384 2951 0 0 0 31 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087186610128 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4690] ppid=4675 vsize=13984976 memory=11730220 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4690/stat : 4690 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087185561952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4691] ppid=4675 vsize=13984976 memory=792 CPUtime=0.07 cores=1,3,5,7
/proc/4677/task/4691/stat : 4691 (java) S 4675 4675 32593 0 -1 1077944384 476 0 0 0 3 4 0 0 20 0 15 0 154569098 14320615424 2932555 33554432000 4194304 4196468 140728223610592 140087184510000 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
Current children cumulated CPU time: 170.59 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11731604 KiB

[startup+113.601 s]
/proc/loadavg: 2.34 2.06 1.93 6/217 4692
/proc/meminfo: memFree=2658860/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/statm: 2378 346 289 221 0 87 0
[pid=4677] ppid=4675 vsize=13984976 memory=11730228 CPUtime=173.05 cores=1,3,5,7
/proc/4677/stat : 4677 (java) S 4675 4675 32593 0 -1 1077944320 575624 0 0 0 16025 1280 0 0 20 0 15 0 154569092 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140728223593136 140087718874871 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
/proc/4677/statm: 3496244 2932557 3248 1 0 3483478 0
[pid=4677/tid=4678] ppid=4675 vsize=13984976 memory=1296 CPUtime=90.28 cores=1,3,5,7
/proc/4677/task/4678/stat : 4678 (java) S 4675 4675 32593 0 -1 1077944384 81180 0 0 0 9002 26 0 0 20 0 15 0 154569093 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087723114848 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4679] ppid=4675 vsize=13984976 memory=2336 CPUtime=19.48 cores=1,3,5,7
/proc/4677/task/4679/stat : 4679 (java) S 4675 4675 32593 0 -1 1077944384 99486 0 0 0 1628 320 0 0 20 0 15 0 154569093 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087675427344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4680] ppid=4675 vsize=13984976 memory=1724 CPUtime=19.43 cores=1,3,5,7
/proc/4677/task/4680/stat : 4680 (java) S 4675 4675 32593 0 -1 1077944384 82113 0 0 0 1648 295 0 0 20 0 15 0 154569093 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087674374800 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4681] ppid=4675 vsize=13984976 memory=8112282956445269571 CPUtime=19.38 cores=1,3,5,7
/proc/4677/task/4681/stat : 4681 (java) S 4675 4675 32593 0 -1 1077944384 112631 0 0 0 1623 315 0 0 20 0 15 0 154569094 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087312967952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4682] ppid=4675 vsize=13984976 memory=2204 CPUtime=19.4 cores=1,3,5,7
/proc/4677/task/4682/stat : 4682 (java) S 4675 4675 32593 0 -1 1077944384 160780 0 0 0 1629 311 0 0 20 0 15 0 154569094 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087311915408 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4683] ppid=4675 vsize=13984976 memory=7788 CPUtime=3.68 cores=1,3,5,7
/proc/4677/task/4683/stat : 4683 (java) R 4675 4675 32593 0 -1 4202560 28187 0 0 0 363 5 0 0 20 0 15 0 154569095 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087192929488 140087703871278 0 0 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4684] ppid=4675 vsize=13984976 memory=836 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4684/stat : 4684 (java) S 4675 4675 32593 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 15 0 154569095 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087191877344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4685] ppid=4675 vsize=13984976 memory=4104 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4685/stat : 4685 (java) S 4675 4675 32593 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 15 0 154569095 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087190824192 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4686] ppid=4675 vsize=13984976 memory=1156 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4686/stat : 4686 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087189772752 140087718893467 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4687] ppid=4675 vsize=13984976 memory=1384 CPUtime=0.47 cores=1,3,5,7
/proc/4677/task/4687/stat : 4687 (java) S 4675 4675 32593 0 -1 1077944384 3618 0 0 0 47 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087188719856 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4688] ppid=4675 vsize=13984976 memory=11730192 CPUtime=0.45 cores=1,3,5,7
/proc/4677/task/4688/stat : 4688 (java) S 4675 4675 32593 0 -1 1077944384 2859 0 0 0 45 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087187667072 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4689] ppid=4675 vsize=13984976 memory=1944 CPUtime=0.31 cores=1,3,5,7
/proc/4677/task/4689/stat : 4689 (java) S 4675 4675 32593 0 -1 1077944384 2951 0 0 0 31 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087186610128 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4690] ppid=4675 vsize=13984976 memory=1196 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4690/stat : 4690 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087185561952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4691] ppid=4675 vsize=13984976 memory=1384 CPUtime=0.07 cores=1,3,5,7
/proc/4677/task/4691/stat : 4691 (java) S 4675 4675 32593 0 -1 1077944384 476 0 0 0 3 4 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087184510000 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
Current children cumulated CPU time: 173.05 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11731612 KiB

[startup+113.801 s]
/proc/loadavg: 2.34 2.06 1.93 6/217 4692
/proc/meminfo: memFree=2658860/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/statm: 2378 346 289 221 0 87 0
[pid=4677] ppid=4675 vsize=13984976 memory=11730228 CPUtime=173.25 cores=1,3,5,7
/proc/4677/stat : 4677 (java) S 4675 4675 32593 0 -1 1077944320 575820 0 0 0 16045 1280 0 0 20 0 15 0 154569092 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140728223593136 140087718874871 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
/proc/4677/statm: 3496244 2932557 3248 1 0 3483478 0
[pid=4677/tid=4678] ppid=4675 vsize=13984976 memory=11730220 CPUtime=90.28 cores=1,3,5,7
/proc/4677/task/4678/stat : 4678 (java) S 4675 4675 32593 0 -1 1077944384 81180 0 0 0 9002 26 0 0 20 0 15 0 154569093 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087723114848 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4679] ppid=4675 vsize=13984976 memory=2428 CPUtime=19.48 cores=1,3,5,7
/proc/4677/task/4679/stat : 4679 (java) S 4675 4675 32593 0 -1 1077944384 99486 0 0 0 1628 320 0 0 20 0 15 0 154569093 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087675427344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4680] ppid=4675 vsize=13984976 memory=928 CPUtime=19.43 cores=1,3,5,7
/proc/4677/task/4680/stat : 4680 (java) S 4675 4675 32593 0 -1 1077944384 82113 0 0 0 1648 295 0 0 20 0 15 0 154569093 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087674374800 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4681] ppid=4675 vsize=13984976 memory=1568 CPUtime=19.38 cores=1,3,5,7
/proc/4677/task/4681/stat : 4681 (java) S 4675 4675 32593 0 -1 1077944384 112631 0 0 0 1623 315 0 0 20 0 15 0 154569094 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087312967952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4682] ppid=4675 vsize=13984976 memory=2240 CPUtime=19.4 cores=1,3,5,7
/proc/4677/task/4682/stat : 4682 (java) S 4675 4675 32593 0 -1 1077944384 160780 0 0 0 1629 311 0 0 20 0 15 0 154569094 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087311915408 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4683] ppid=4675 vsize=13984976 memory=8112282956445269571 CPUtime=3.88 cores=1,3,5,7
/proc/4677/task/4683/stat : 4683 (java) R 4675 4675 32593 0 -1 4202560 28383 0 0 0 383 5 0 0 20 0 15 0 154569095 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087192929488 140087703871216 0 0 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4684] ppid=4675 vsize=13984976 memory=15880 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4684/stat : 4684 (java) S 4675 4675 32593 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 15 0 154569095 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087191877344 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4685] ppid=4675 vsize=13984976 memory=18280 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4685/stat : 4685 (java) S 4675 4675 32593 0 -1 1077944384 51 0 0 0 0 0 0 0 20 0 15 0 154569095 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087190824192 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4686] ppid=4675 vsize=13984976 memory=23776 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4686/stat : 4686 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087189772752 140087718893467 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4687] ppid=4675 vsize=13984976 memory=4040 CPUtime=0.47 cores=1,3,5,7
/proc/4677/task/4687/stat : 4687 (java) S 4675 4675 32593 0 -1 1077944384 3618 0 0 0 47 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087188719856 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4688] ppid=4675 vsize=13984976 memory=1236 CPUtime=0.45 cores=1,3,5,7
/proc/4677/task/4688/stat : 4688 (java) S 4675 4675 32593 0 -1 1077944384 2859 0 0 0 45 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087187667072 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4689] ppid=4675 vsize=13984976 memory=644 CPUtime=0.31 cores=1,3,5,7
/proc/4677/task/4689/stat : 4689 (java) S 4675 4675 32593 0 -1 1077944384 2951 0 0 0 31 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087186610128 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4690] ppid=4675 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4677/task/4690/stat : 4690 (java) S 4675 4675 32593 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087185561952 140087718885077 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
[pid=4677/tid=4691] ppid=4675 vsize=13984976 memory=11730220 CPUtime=0.07 cores=1,3,5,7
/proc/4677/task/4691/stat : 4691 (java) S 4675 4675 32593 0 -1 1077944384 476 0 0 0 3 4 0 0 20 0 15 0 154569098 14320615424 2932557 33554432000 4194304 4196468 140728223610592 140087184510000 140087718886018 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37629952 140728223618205 140728223618380 140728223618380 140728223621071 0
Current children cumulated CPU time: 173.25 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11731612 KiB

[startup+113.901 s]
/proc/loadavg: 2.34 2.06 1.93 6/217 4692
/proc/meminfo: memFree=2658860/32770624 swapFree=67108860/67108860
[pid=4675] ppid=4672 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/4675/stat : 4675 (xcsp3-exec) S 4672 4675 32593 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 154569092 9740288 346 33554432000 4194304 5098028 140725329448320 140725329446424 140429478101628 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 25726976 140725329454197 140725329454400 140725329454400 140725329457131 0
/proc/4675/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): 113.961
CPU time (s): 173.419
CPU user time (s): 160.534
CPU system time (s): 12.8848
CPU usage (%): 152.174
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11731612

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 160.534
system time used= 12.8848
maximum resident set size= 11730600
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 576466
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= 8963
involuntary context switches= 942


# summary of solver processes directly reported to runsolver:
#   pid: 4675
#   total CPU time (s): 173.419
#   total CPU user time (s): 160.534
#   total CPU system time (s): 12.8848

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.647224 second user time and 1.35636 second system time

The end

Launcher Data

Begin job on node103 at 2017-08-20 09:25:50
IDJOB=4282763
IDBENCH=138075
IDSOLVER=2678
FILE ID=node103/4282763-1503214810
RUNJOBID= node103-1503209003-32625
PBS_JOBID= 20630873
Free space on /tmp= 61376 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-4282763-1503214810/watcher-4282763-1503214810 -o /tmp/evaluation-result-4282763-1503214810/solver-4282763-1503214810 -C 264 -W 240 -M 15500 --bin-var /tmp/runsolver-exch-node103-1503209003-32625 --watchdog 300  ./xcsp3-exec -dir HOME -tl 264 -ml 11000 -tdir HOME -seed 274005769 HOME/instance-4282763-1503214810.xml

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

MD5SUM BENCH= a372e06032e8b52aa9c97452ff274801
RANDOM SEED=274005769

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

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

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

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

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

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

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

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

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

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


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        14326872 kB
MemAvailable:   20322704 kB
Buffers:          240928 kB
Cached:          6044844 kB
SwapCached:            0 kB
Active:         12862732 kB
Inactive:        5107440 kB
Active(anon):   11633776 kB
Inactive(anon):    86696 kB
Active(file):    1228956 kB
Inactive(file):  5020744 kB
Unevictable:        7496 kB
Mlocked:            7496 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             92048 kB
Writeback:             0 kB
AnonPages:      11691892 kB
Mapped:            64120 kB
Shmem:             33420 kB
Slab:             151036 kB
SReclaimable:     123936 kB
SUnreclaim:        27100 kB
KernelStack:        3536 kB
PageTables:        28128 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:   12013088 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:  11304960 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= 61368 MiB
End job on node103 at 2017-08-20 09:27:44