Trace number 4399355

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 2019-09-16? 114.826 43.6133

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-75.xml
MD5SUM9cdf82428becd6b5ad716031980a59d2
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 benchmark2520.02
Satisfiable
(Un)Satisfiability was proved
Number of variables133
Number of constraints25
Number of domains2
Minimum domain size23
Maximum domain size47
Distribution of domain sizes[{"size":23,"count":1},{"size":47,"count":132}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":110},{"degree":4,"count":22}]
Minimum constraint arity6
Maximum constraint arity132
Distribution of constraint arities[{"arity":6,"count":22},{"arity":23,"count":1},{"arity":132,"count":2}]
Number of extensional constraints22
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":22},{"type":"lex","count":1},{"type":"count","count":1},{"type":"cardinality","count":1}]
Optimization problemYES
Type of objectivemax VAR

Solver Data

0.00/0.00	c java -server -Xmx12000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4399355-1568699208.xml"  -tl '2520s' -p 4
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4399355-1568699208.xml, -tl, 2520s, -p, 4]
0.12/0.22	c 4 solvers in parallel
0.34/0.28	c parse instance...
114.71/43.55	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
114.71/43.55		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:101)
114.71/43.55		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
114.71/43.55		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2108)
114.71/43.55		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2055)
114.71/43.55		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:317)
114.71/43.55		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
114.71/43.55		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
114.71/43.55		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
114.71/43.55		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
114.71/43.55		at org.xcsp.parser.XCallbacks$$Lambda$110/961419791.accept(Unknown Source)
114.71/43.55		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
114.71/43.55		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
114.71/43.55		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
114.71/43.55		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
114.71/43.55		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
114.71/43.55		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
114.71/43.55		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
114.71/43.55		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
114.71/43.55		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
114.71/43.55		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
114.71/43.55		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
114.71/43.55		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
114.71/43.55	s UNKNOWN
114.71/43.55	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 (10598 MiB free)
  memory of node 1: 16384 MiB (15375 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4399355-1568699208/watcher-4399355-1568699208 -o /tmp/evaluation-result-4399355-1568699208/solver-4399355-1568699208 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node149-1568699170-20236 --watchdog 2580 xcsp3-exec -dir HOME -tl 2520 -p 4 -ml 12000 -tdir HOME -seed 1443934701 HOME/instance-4399355-1568699208.xml 

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

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 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=20280, runsolver pid=20277
Current StackSize limit: 8192 KiB


[startup+0.10008 s]*
/proc/loadavg: 0.59 0.77 0.95 9/233 20300
/proc/meminfo: memFree=26560900/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0
[pid=20282] ppid=20280 vsize=15144776 memory=30064 CPUtime=0.12 cores=1,3,5,7
/proc/20282/stat : 20282 (java) S 20280 20280 20204 0 -1 1077944320 5946 0 0 0 11 1 0 0 20 0 15 0 446159542 15508250624 7516 33554432000 4194304 4196468 140733574689088 140733574671632 139746091937527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
/proc/20282/statm: 3786194 7516 3153 1 0 3748377 0
[pid=20282/tid=20283] ppid=20280 vsize=15144776 memory=8514701219881124772 CPUtime=0.08 cores=1,3,5,7
/proc/20282/task/20283/stat : 20283 (java) S 20280 20280 20204 0 -1 1077944384 3838 0 0 0 8 0 0 0 20 0 15 0 446159543 15508250624 7516 33554432000 4194304 4196468 140733574689088 139746096169552 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20284] ppid=20280 vsize=15144776 memory=3472468768498128080 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20284/stat : 20284 (java) S 20280 20280 20204 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446159543 15508250624 7516 33554432000 4194304 4196468 140733574689088 139746028174224 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20285] ppid=20280 vsize=15144776 memory=140639602976384 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20285/stat : 20285 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159543 15508250624 7516 33554432000 4194304 4196468 140733574689088 139746027121424 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20286] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20286/stat : 20286 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159543 15508250624 7516 33554432000 4194304 4196468 140733574689088 139746026069136 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20287] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20287/stat : 20287 (java) S 20280 20280 20204 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446159543 15508250624 7516 33554432000 4194304 4196468 140733574689088 139746025016336 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20288] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20288/stat : 20288 (java) S 20280 20280 20204 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446159545 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745234466928 139746091948674 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20289] ppid=20280 vsize=15144776 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20289/stat : 20289 (java) S 20280 20280 20204 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 446159545 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745233412896 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20290] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20290/stat : 20290 (java) S 20280 20280 20204 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 446159545 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745232360560 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20295] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20295/stat : 20295 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745231308880 139746091956123 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20296] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20296/stat : 20296 (java) R 20280 20280 20204 0 -1 4202560 452 0 0 0 0 0 0 0 20 0 15 0 446159548 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745230256752 139746069770384 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20297] ppid=20280 vsize=15144776 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20297/stat : 20297 (java) R 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745229203952 139746091948674 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20298] ppid=20280 vsize=15144776 memory=140639602976384 CPUtime=0.02 cores=1,3,5,7
/proc/20282/task/20298/stat : 20298 (java) S 20280 20280 20204 0 -1 1077944384 362 0 0 0 2 0 0 0 20 0 15 0 446159548 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745228151664 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20299] ppid=20280 vsize=15144776 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20299/stat : 20299 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745227099104 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20300] ppid=20280 vsize=15144776 memory=140639602976384 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20300/stat : 20300 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159548 15508250624 7516 33554432000 4194304 4196468 140733574689088 139745226045872 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 31512 KiB

[startup+0.213404 s]*
/proc/loadavg: 0.59 0.77 0.95 8/233 20300
/proc/meminfo: memFree=26541096/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0
[pid=20282] ppid=20280 vsize=15144776 memory=40184 CPUtime=0.34 cores=1,3,5,7
/proc/20282/stat : 20282 (java) S 20280 20280 20204 0 -1 1077944320 9312 0 0 0 31 3 0 0 20 0 15 0 446159542 15508250624 10046 33554432000 4194304 4196468 140733574689088 140733574671632 139746091937527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
/proc/20282/statm: 3786194 10046 3271 1 0 3748377 0
[pid=20282/tid=20283] ppid=20280 vsize=15144776 memory=5855082630903857826 CPUtime=0.2 cores=1,3,5,7
/proc/20282/task/20283/stat : 20283 (java) R 20280 20280 20204 0 -1 4202560 6607 0 0 0 18 2 0 0 20 0 15 0 446159543 15508250624 10046 33554432000 4194304 4196468 140733574689088 139746096172512 139746091949462 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20284] ppid=20280 vsize=15144776 memory=3472468768498128080 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20284/stat : 20284 (java) S 20280 20280 20204 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446159543 15508250624 10046 33554432000 4194304 4196468 140733574689088 139746028174224 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20285] ppid=20280 vsize=15144776 memory=140639602976384 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20285/stat : 20285 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159543 15508250624 10046 33554432000 4194304 4196468 140733574689088 139746027121424 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20286] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20286/stat : 20286 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159543 15508250624 10046 33554432000 4194304 4196468 140733574689088 139746026069136 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20287] ppid=20280 vsize=15144776 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20287/stat : 20287 (java) S 20280 20280 20204 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446159543 15508250624 10046 33554432000 4194304 4196468 140733574689088 139746025016336 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20288] ppid=20280 vsize=15144776 memory=140639602976384 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20288/stat : 20288 (java) S 20280 20280 20204 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 446159545 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745234466928 139746091948674 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20289] ppid=20280 vsize=15144776 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20289/stat : 20289 (java) S 20280 20280 20204 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 446159545 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745233412896 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20290] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20290/stat : 20290 (java) S 20280 20280 20204 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 446159545 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745232360560 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20295] ppid=20280 vsize=15144776 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20295/stat : 20295 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745231308880 139746091956123 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20296] ppid=20280 vsize=15144776 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/20282/task/20296/stat : 20296 (java) S 20280 20280 20204 0 -1 1077944384 590 0 0 0 3 0 0 0 20 0 15 0 446159548 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745230256752 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20297] ppid=20280 vsize=15144776 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/20282/task/20297/stat : 20297 (java) S 20280 20280 20204 0 -1 1077944384 40 0 0 0 1 0 0 0 20 0 15 0 446159548 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745229203952 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20298] ppid=20280 vsize=15144776 memory=140639602976384 CPUtime=0.08 cores=1,3,5,7
/proc/20282/task/20298/stat : 20298 (java) R 20280 20280 20204 0 -1 4202560 768 0 0 0 8 0 0 0 20 0 15 0 446159548 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745228151664 139746091958874 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20299] ppid=20280 vsize=15144776 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20299/stat : 20299 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745227099104 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20300] ppid=20280 vsize=15144776 memory=140639602976384 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20300/stat : 20300 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159548 15508250624 10046 33554432000 4194304 4196468 140733574689088 139745226045872 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 41632 KiB

[startup+0.310641 s]*
/proc/loadavg: 0.59 0.77 0.95 9/233 20300
/proc/meminfo: memFree=26532352/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0
[pid=20282] ppid=20280 vsize=15149032 memory=50228 CPUtime=0.53 cores=1,3,5,7
/proc/20282/stat : 20282 (java) S 20280 20280 20204 0 -1 1077944320 10837 0 0 0 49 4 0 0 20 0 15 0 446159542 15512608768 12557 33554432000 4194304 4196468 140733574689088 140733574671632 139746091937527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
/proc/20282/statm: 3787258 12557 3373 1 0 3748377 0
[pid=20282/tid=20283] ppid=20280 vsize=15149032 memory=8514701219880861597 CPUtime=0.3 cores=1,3,5,7
/proc/20282/task/20283/stat : 20283 (java) R 20280 20280 20204 0 -1 4202560 7792 0 0 0 27 3 0 0 20 0 15 0 446159543 15512608768 12557 33554432000 4194304 4196468 140733574689088 139746096168640 139746076018014 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20284] ppid=20280 vsize=15149032 memory=3472468768498128080 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20284/stat : 20284 (java) S 20280 20280 20204 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446159543 15512608768 12557 33554432000 4194304 4196468 140733574689088 139746028174224 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20285] ppid=20280 vsize=15149032 memory=140639602976384 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20285/stat : 20285 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159543 15512608768 12557 33554432000 4194304 4196468 140733574689088 139746027121424 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20286] ppid=20280 vsize=15149032 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20286/stat : 20286 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159543 15512608768 12557 33554432000 4194304 4196468 140733574689088 139746026069136 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20287] ppid=20280 vsize=15149032 memory=140639442446367 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20287/stat : 20287 (java) S 20280 20280 20204 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 446159543 15512608768 12557 33554432000 4194304 4196468 140733574689088 139746025016336 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20288] ppid=20280 vsize=15149032 memory=281278884871968 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20288/stat : 20288 (java) S 20280 20280 20204 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 446159545 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745234466928 139746091948674 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20289] ppid=20280 vsize=15149032 memory=140639442423311 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20289/stat : 20289 (java) S 20280 20280 20204 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 446159545 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745233412896 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20290] ppid=20280 vsize=15149032 memory=281279045408864 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20290/stat : 20290 (java) S 20280 20280 20204 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 446159545 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745232360560 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20295] ppid=20280 vsize=15149032 memory=140639442427919 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20295/stat : 20295 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745231308880 139746091956123 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20296] ppid=20280 vsize=15149032 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/20282/task/20296/stat : 20296 (java) S 20280 20280 20204 0 -1 1077944384 613 0 0 0 4 0 0 0 20 0 15 0 446159548 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745230256752 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20297] ppid=20280 vsize=15149032 memory=-1 CPUtime=0.04 cores=1,3,5,7
/proc/20282/task/20297/stat : 20297 (java) S 20280 20280 20204 0 -1 1077944384 201 0 0 0 4 0 0 0 20 0 15 0 446159548 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745229203952 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20298] ppid=20280 vsize=15149032 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/20282/task/20298/stat : 20298 (java) S 20280 20280 20204 0 -1 1077944384 926 0 0 0 12 0 0 0 20 0 15 0 446159548 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745228151664 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20299] ppid=20280 vsize=15149032 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20299/stat : 20299 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745227099104 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20300] ppid=20280 vsize=15149032 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20300/stat : 20300 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159548 15512608768 12557 33554432000 4194304 4196468 140733574689088 139745226045872 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 15262160 KiB
Current children cumulated memory: 51676 KiB

[startup+0.70172 s]
/proc/loadavg: 0.59 0.77 0.95 13/233 20300
/proc/meminfo: memFree=26385024/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0
[pid=20282] ppid=20280 vsize=15149108 memory=292936 CPUtime=1.3 cores=1,3,5,7
/proc/20282/stat : 20282 (java) S 20280 20280 20204 0 -1 1077944320 12998 0 0 0 106 24 0 0 20 0 15 0 446159542 15512686592 73234 33554432000 4194304 4196468 140733574689088 140733574671632 139746091937527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
/proc/20282/statm: 3787277 73234 3429 1 0 3748377 0
[pid=20282/tid=20283] ppid=20280 vsize=15149108 memory=1088 CPUtime=0.61 cores=1,3,5,7
/proc/20282/task/20283/stat : 20283 (java) R 20280 20280 20204 0 -1 4202560 8370 0 0 0 54 7 0 0 20 0 15 0 446159543 15512686592 73234 33554432000 4194304 4196468 140733574689088 139746096173072 139745703568134 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20284] ppid=20280 vsize=15149108 memory=988 CPUtime=0.04 cores=1,3,5,7
/proc/20282/task/20284/stat : 20284 (java) S 20280 20280 20204 0 -1 1077944384 58 0 0 0 1 3 0 0 20 0 15 0 446159543 15512686592 73234 33554432000 4194304 4196468 140733574689088 139746028174224 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20285] ppid=20280 vsize=15149108 memory=780 CPUtime=0.06 cores=1,3,5,7
/proc/20282/task/20285/stat : 20285 (java) S 20280 20280 20204 0 -1 1077944384 64 0 0 0 2 4 0 0 20 0 15 0 446159543 15512686592 73234 33554432000 4194304 4196468 140733574689088 139746027121424 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20286] ppid=20280 vsize=15149108 memory=6004 CPUtime=0.06 cores=1,3,5,7
/proc/20282/task/20286/stat : 20286 (java) S 20280 20280 20204 0 -1 1077944384 64 0 0 0 2 4 0 0 20 0 15 0 446159543 15512686592 73234 33554432000 4194304 4196468 140733574689088 139746026069136 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20287] ppid=20280 vsize=15149108 memory=624 CPUtime=0.06 cores=1,3,5,7
/proc/20282/task/20287/stat : 20287 (java) S 20280 20280 20204 0 -1 1077944384 61 0 0 0 2 4 0 0 20 0 15 0 446159543 15512686592 73234 33554432000 4194304 4196468 140733574689088 139746025016336 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20288] ppid=20280 vsize=15149108 memory=4004 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20288/stat : 20288 (java) S 20280 20280 20204 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 446159545 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745234466928 139746091948674 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20289] ppid=20280 vsize=15149108 memory=2832 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20289/stat : 20289 (java) S 20280 20280 20204 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 446159545 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745233412896 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20290] ppid=20280 vsize=15149108 memory=14012 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20290/stat : 20290 (java) S 20280 20280 20204 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 446159545 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745232360560 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20295] ppid=20280 vsize=15149108 memory=47924 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20295/stat : 20295 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745231308880 139746091956123 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20296] ppid=20280 vsize=15149108 memory=1988 CPUtime=0.09 cores=1,3,5,7
/proc/20282/task/20296/stat : 20296 (java) R 20280 20280 20204 0 -1 4202560 961 0 0 0 9 0 0 0 20 0 15 0 446159548 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745230256752 139746091958874 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20297] ppid=20280 vsize=15149108 memory=988 CPUtime=0.14 cores=1,3,5,7
/proc/20282/task/20297/stat : 20297 (java) R 20280 20280 20204 0 -1 4202560 803 0 0 0 14 0 0 0 20 0 15 0 446159548 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745229189832 139746073481774 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20298] ppid=20280 vsize=15149108 memory=1428 CPUtime=0.18 cores=1,3,5,7
/proc/20282/task/20298/stat : 20298 (java) S 20280 20280 20204 0 -1 1077944384 1236 0 0 0 18 0 0 0 20 0 15 0 446159548 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745228151664 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20299] ppid=20280 vsize=15149108 memory=1752 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20299/stat : 20299 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745227099104 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20300] ppid=20280 vsize=15149108 memory=1056 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20300/stat : 20300 (java) S 20280 20280 20204 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 446159548 15512686592 73234 33554432000 4194304 4196468 140733574689088 139745226045872 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
Current children cumulated CPU time: 1.3 s
Current children cumulated vsize: 15262236 KiB
Current children cumulated memory: 294384 KiB

[startup+1.50084 s]
/proc/loadavg: 0.59 0.77 0.95 10/233 20300
/proc/meminfo: memFree=25486956/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0

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

/proc/20282/task/20285/stat : 20285 (java) R 20280 20280 20204 0 -1 4202560 32658 0 0 0 1599 304 0 0 20 0 15 0 446159543 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139746027121312 139746076891042 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20286] ppid=20280 vsize=15151156 memory=8787000 CPUtime=18.99 cores=1,3,5,7
/proc/20282/task/20286/stat : 20286 (java) R 20280 20280 20204 0 -1 4202560 33560 0 0 0 1589 310 0 0 20 0 15 0 446159543 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139746026069336 139746076635224 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20287] ppid=20280 vsize=15151156 memory=164 CPUtime=18.9 cores=1,3,5,7
/proc/20282/task/20287/stat : 20287 (java) R 20280 20280 20204 0 -1 4202560 113897 0 0 0 1563 327 0 0 20 0 15 0 446159543 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139746025016232 139746084565735 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20288] ppid=20280 vsize=15151156 memory=7805975488851236452 CPUtime=6.86 cores=1,3,5,7
/proc/20282/task/20288/stat : 20288 (java) S 20280 20280 20204 0 -1 1077944384 20991 0 0 0 684 2 0 0 20 0 15 0 446159545 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745234465248 139746091947733 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20289] ppid=20280 vsize=15151156 memory=7228423913357289617 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20289/stat : 20289 (java) S 20280 20280 20204 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 446159545 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745233412960 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20290] ppid=20280 vsize=15151156 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20290/stat : 20290 (java) S 20280 20280 20204 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 446159545 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745232360576 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20295] ppid=20280 vsize=15151156 memory=288292190212433753 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20295/stat : 20295 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745231308880 139746091956123 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20296] ppid=20280 vsize=15151156 memory=-3621219715169225006 CPUtime=0.51 cores=1,3,5,7
/proc/20282/task/20296/stat : 20296 (java) S 20280 20280 20204 0 -1 1077944384 2198 0 0 0 51 0 0 0 20 0 15 0 446159548 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745230256752 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20297] ppid=20280 vsize=15151156 memory=0 CPUtime=0.51 cores=1,3,5,7
/proc/20282/task/20297/stat : 20297 (java) S 20280 20280 20204 0 -1 1077944384 2495 0 0 0 51 0 0 0 20 0 15 0 446159548 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745229203952 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20298] ppid=20280 vsize=15151156 memory=-8316900901535099443 CPUtime=0.33 cores=1,3,5,7
/proc/20282/task/20298/stat : 20298 (java) S 20280 20280 20204 0 -1 1077944384 2566 0 0 0 33 0 0 0 20 0 15 0 446159548 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745228151664 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20299] ppid=20280 vsize=15151156 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20299/stat : 20299 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745227099104 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20300] ppid=20280 vsize=15151156 memory=1448 CPUtime=0.01 cores=1,3,5,7
/proc/20282/task/20300/stat : 20300 (java) S 20280 20280 20204 0 -1 1077944384 400 0 0 0 0 1 0 0 20 0 15 0 446159548 15514783744 3136701 33554432000 4194304 4196468 140733574689088 139745226045872 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
Current children cumulated CPU time: 96.53 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12548252 KiB

[startup+41.6008 s]
/proc/loadavg: 3.23 1.41 1.16 9/233 20303
/proc/meminfo: memFree=13769288/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0
[pid=20282] ppid=20280 vsize=15151156 memory=12589820 CPUtime=108.5 cores=1,3,5,7
/proc/20282/stat : 20282 (java) S 20280 20280 20204 0 -1 1077944320 291409 0 0 0 9569 1281 0 0 20 0 15 0 446159542 15514783744 3147455 33554432000 4194304 4196468 140733574689088 140733574671632 139746091937527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
/proc/20282/statm: 3787789 3147455 3497 1 0 3748889 0
[pid=20282/tid=20283] ppid=20280 vsize=15151156 memory=4004 CPUtime=12.35 cores=1,3,5,7
/proc/20282/task/20283/stat : 20283 (java) S 20280 20280 20204 0 -1 1077944384 26832 0 0 0 1210 25 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746096175664 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20284] ppid=20280 vsize=15151156 memory=6791534058613427641 CPUtime=21.91 cores=1,3,5,7
/proc/20282/task/20284/stat : 20284 (java) R 20280 20280 20204 0 -1 4202560 53754 0 0 0 1887 304 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746028174424 139746085040531 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20285] ppid=20280 vsize=15151156 memory=7595995147685749871 CPUtime=21.96 cores=1,3,5,7
/proc/20282/task/20285/stat : 20285 (java) R 20280 20280 20204 0 -1 4202560 32727 0 0 0 1891 305 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746027121232 139746084565735 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20286] ppid=20280 vsize=15151156 memory=7302425607343663466 CPUtime=21.91 cores=1,3,5,7
/proc/20282/task/20286/stat : 20286 (java) R 20280 20280 20204 0 -1 4202560 33603 0 0 0 1880 311 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746026069256 139746084565735 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20287] ppid=20280 vsize=15151156 memory=4638778398333162338 CPUtime=21.82 cores=1,3,5,7
/proc/20282/task/20287/stat : 20287 (java) R 20280 20280 20204 0 -1 4202560 114477 0 0 0 1855 327 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746025016144 139746084565735 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20288] ppid=20280 vsize=15151156 memory=7805974384891420736 CPUtime=7.08 cores=1,3,5,7
/proc/20282/task/20288/stat : 20288 (java) S 20280 20280 20204 0 -1 1077944384 21008 0 0 0 706 2 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745234465488 139746091947733 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20289] ppid=20280 vsize=15151156 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20289/stat : 20289 (java) S 20280 20280 20204 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745233412960 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20290] ppid=20280 vsize=15151156 memory=212 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20290/stat : 20290 (java) S 20280 20280 20204 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745232360576 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20295] ppid=20280 vsize=15151156 memory=213 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20295/stat : 20295 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745231308880 139746091956123 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20296] ppid=20280 vsize=15151156 memory=216 CPUtime=0.51 cores=1,3,5,7
/proc/20282/task/20296/stat : 20296 (java) S 20280 20280 20204 0 -1 1077944384 2198 0 0 0 51 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745230256752 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20297] ppid=20280 vsize=15151156 memory=10515704 CPUtime=0.51 cores=1,3,5,7
/proc/20282/task/20297/stat : 20297 (java) S 20280 20280 20204 0 -1 1077944384 2495 0 0 0 51 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745229203952 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20298] ppid=20280 vsize=15151156 memory=113 CPUtime=0.33 cores=1,3,5,7
/proc/20282/task/20298/stat : 20298 (java) S 20280 20280 20204 0 -1 1077944384 2566 0 0 0 33 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745228151664 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20299] ppid=20280 vsize=15151156 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20299/stat : 20299 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745227099104 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20300] ppid=20280 vsize=15151156 memory=288230583166042426 CPUtime=0.01 cores=1,3,5,7
/proc/20282/task/20300/stat : 20300 (java) S 20280 20280 20204 0 -1 1077944384 400 0 0 0 0 1 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745226045872 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
Current children cumulated CPU time: 108.5 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12591268 KiB

[startup+42.4008 s]
/proc/loadavg: 3.61 1.52 1.20 9/233 20303
/proc/meminfo: memFree=13769412/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0
[pid=20282] ppid=20280 vsize=15151156 memory=12589820 CPUtime=111.61 cores=1,3,5,7
/proc/20282/stat : 20282 (java) S 20280 20280 20204 0 -1 1077944320 291410 0 0 0 9878 1283 0 0 20 0 15 0 446159542 15514783744 3147455 33554432000 4194304 4196468 140733574689088 140733574671632 139746091937527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
/proc/20282/statm: 3787789 3147455 3497 1 0 3748889 0
[pid=20282/tid=20283] ppid=20280 vsize=15151156 memory=6791534058613427641 CPUtime=12.35 cores=1,3,5,7
/proc/20282/task/20283/stat : 20283 (java) S 20280 20280 20204 0 -1 1077944384 26832 0 0 0 1210 25 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746096175664 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20284] ppid=20280 vsize=15151156 memory=1752 CPUtime=22.71 cores=1,3,5,7
/proc/20282/task/20284/stat : 20284 (java) R 20280 20280 20204 0 -1 4202560 53754 0 0 0 1967 304 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746028174424 139746076637443 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20285] ppid=20280 vsize=15151156 memory=1448 CPUtime=22.74 cores=1,3,5,7
/proc/20282/task/20285/stat : 20285 (java) R 20280 20280 20204 0 -1 4202560 32727 0 0 0 1968 306 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746027121232 139746084565735 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20286] ppid=20280 vsize=15151156 memory=12589820 CPUtime=22.67 cores=1,3,5,7
/proc/20282/task/20286/stat : 20286 (java) R 20280 20280 20204 0 -1 4202560 33603 0 0 0 1955 312 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746026069256 139746084565735 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20287] ppid=20280 vsize=15151156 memory=1448 CPUtime=22.6 cores=1,3,5,7
/proc/20282/task/20287/stat : 20287 (java) R 20280 20280 20204 0 -1 4202560 114477 0 0 0 1932 328 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746025016456 139746084565735 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20288] ppid=20280 vsize=15151156 memory=12589820 CPUtime=7.08 cores=1,3,5,7
/proc/20282/task/20288/stat : 20288 (java) S 20280 20280 20204 0 -1 1077944384 21008 0 0 0 706 2 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745234465488 139746091947733 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20289] ppid=20280 vsize=15151156 memory=-8990767739041718176 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20289/stat : 20289 (java) S 20280 20280 20204 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745233412960 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20290] ppid=20280 vsize=15151156 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20290/stat : 20290 (java) S 20280 20280 20204 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745232360576 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20295] ppid=20280 vsize=15151156 memory=12517960 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20295/stat : 20295 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745231308880 139746091956123 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20296] ppid=20280 vsize=15151156 memory=0 CPUtime=0.51 cores=1,3,5,7
/proc/20282/task/20296/stat : 20296 (java) S 20280 20280 20204 0 -1 1077944384 2198 0 0 0 51 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745230256800 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20297] ppid=20280 vsize=15151156 memory=0 CPUtime=0.51 cores=1,3,5,7
/proc/20282/task/20297/stat : 20297 (java) S 20280 20280 20204 0 -1 1077944384 2496 0 0 0 51 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745229203712 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20298] ppid=20280 vsize=15151156 memory=0 CPUtime=0.33 cores=1,3,5,7
/proc/20282/task/20298/stat : 20298 (java) S 20280 20280 20204 0 -1 1077944384 2566 0 0 0 33 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745228151712 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20299] ppid=20280 vsize=15151156 memory=0 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20299/stat : 20299 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745227099104 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20300] ppid=20280 vsize=15151156 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/20282/task/20300/stat : 20300 (java) S 20280 20280 20204 0 -1 1077944384 400 0 0 0 0 1 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745226045872 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
Current children cumulated CPU time: 111.61 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12591268 KiB

[startup+43.2007 s]
/proc/loadavg: 3.61 1.52 1.20 9/233 20303
/proc/meminfo: memFree=13689540/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0
[pid=20282] ppid=20280 vsize=15151156 memory=12589820 CPUtime=114.42 cores=1,3,5,7
/proc/20282/stat : 20282 (java) S 20280 20280 20204 0 -1 1077944320 291551 0 0 0 10157 1285 0 0 20 0 15 0 446159542 15514783744 3147455 33554432000 4194304 4196468 140733574689088 140733574671632 139746091937527 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
/proc/20282/statm: 3787789 3147455 3497 1 0 3748889 0
[pid=20282/tid=20283] ppid=20280 vsize=15151156 memory=6791534058613427641 CPUtime=12.35 cores=1,3,5,7
/proc/20282/task/20283/stat : 20283 (java) S 20280 20280 20204 0 -1 1077944384 26832 0 0 0 1210 25 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746096175664 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20284] ppid=20280 vsize=15151156 memory=47924 CPUtime=23.4 cores=1,3,5,7
/proc/20282/task/20284/stat : 20284 (java) S 20280 20280 20204 0 -1 1077944384 53895 0 0 0 2036 304 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746028174224 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20285] ppid=20280 vsize=15151156 memory=1988 CPUtime=23.42 cores=1,3,5,7
/proc/20282/task/20285/stat : 20285 (java) S 20280 20280 20204 0 -1 1077944384 32727 0 0 0 2035 307 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746027121424 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20286] ppid=20280 vsize=15151156 memory=988 CPUtime=23.32 cores=1,3,5,7
/proc/20282/task/20286/stat : 20286 (java) S 20280 20280 20204 0 -1 1077944384 33603 0 0 0 2020 312 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746026069136 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20287] ppid=20280 vsize=15151156 memory=3620 CPUtime=23.27 cores=1,3,5,7
/proc/20282/task/20287/stat : 20287 (java) S 20280 20280 20204 0 -1 1077944384 114477 0 0 0 1999 328 0 0 20 0 15 0 446159543 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139746025016336 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20288] ppid=20280 vsize=15151156 memory=47924 CPUtime=7.19 cores=1,3,5,7
/proc/20282/task/20288/stat : 20288 (java) R 20280 20280 20204 0 -1 4202560 21008 0 0 0 717 2 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745234465376 139746076933908 0 0 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20289] ppid=20280 vsize=15151156 memory=1988 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20289/stat : 20289 (java) S 20280 20280 20204 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745233412960 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20290] ppid=20280 vsize=15151156 memory=988 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20290/stat : 20290 (java) S 20280 20280 20204 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 446159545 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745232360576 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20295] ppid=20280 vsize=15151156 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20295/stat : 20295 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745231308880 139746091956123 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20296] ppid=20280 vsize=15151156 memory=12589820 CPUtime=0.51 cores=1,3,5,7
/proc/20282/task/20296/stat : 20296 (java) S 20280 20280 20204 0 -1 1077944384 2198 0 0 0 51 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745230256800 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20297] ppid=20280 vsize=15151156 memory=4004 CPUtime=0.51 cores=1,3,5,7
/proc/20282/task/20297/stat : 20297 (java) S 20280 20280 20204 0 -1 1077944384 2496 0 0 0 51 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745229203712 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20298] ppid=20280 vsize=15151156 memory=1448 CPUtime=0.33 cores=1,3,5,7
/proc/20282/task/20298/stat : 20298 (java) S 20280 20280 20204 0 -1 1077944384 2566 0 0 0 33 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745228151712 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20299] ppid=20280 vsize=15151156 memory=12589820 CPUtime=0 cores=1,3,5,7
/proc/20282/task/20299/stat : 20299 (java) S 20280 20280 20204 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745227099104 139746091947733 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
[pid=20282/tid=20300] ppid=20280 vsize=15151156 memory=1428 CPUtime=0.01 cores=1,3,5,7
/proc/20282/task/20300/stat : 20300 (java) S 20280 20280 20204 0 -1 1077944384 400 0 0 0 0 1 0 0 20 0 15 0 446159548 15514783744 3147455 33554432000 4194304 4196468 140733574689088 139745226045872 139746091948674 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11706368 140733574697967 140733574698138 140733574698138 140733574701007 0
Current children cumulated CPU time: 114.42 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12591268 KiB

[startup+43.6008 s]
/proc/loadavg: 3.61 1.52 1.20 9/233 20303
/proc/meminfo: memFree=13689540/32770624 swapFree=66941524/67108860
[pid=20280] ppid=20277 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/20280/stat : 20280 (xcsp3-exec) S 20277 20280 20204 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 446159542 115843072 362 33554432000 4194304 5098028 140724961461328 140724961459432 140358187352700 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 34353152 140724961469306 140724961469549 140724961469549 140724961472458 0
/proc/20280/statm: 28282 362 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1448 KiB

Child status: 1
Real time (s): 43.6133
CPU time (s): 114.826
CPU user time (s): 101.914
CPU system time (s): 12.912
CPU usage (%): 263.282
Max. virtual memory (cumulated for all children) (KiB): 15264284
Max. memory (cumulated for all children) (KiB): 12591384

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 101.914
system time used= 12.912
maximum resident set size= 12590144
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 292734
page faults= 0
swaps= 0
block input operations= 0
block output operations= 152
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 6091
involuntary context switches= 2480


# summary of solver processes directly reported to runsolver:
#   pid: 20280
#   total CPU time (s): 114.826
#   total CPU user time (s): 101.914
#   total CPU system time (s): 12.912

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.285891 second user time and 0.521888 second system time

The end

Launcher Data

Begin job on node149 at 2019-09-17 07:46:11
IDJOB=4399355
IDBENCH=138083
IDSOLVER=2853
FILE ID=node149/4399355-1568699208
RUNJOBID= node149-1568699170-20236
PBS_JOBID= 21703822
Free space on /tmp= 61316 MiB

SOLVER NAME= choco-solver 2019-09-16
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-75.xml
COMMAND LINE= xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 12000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4399355-1568699208/watcher-4399355-1568699208 -o /tmp/evaluation-result-4399355-1568699208/solver-4399355-1568699208 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node149-1568699170-20236 --watchdog 2580  xcsp3-exec -dir HOME -tl 2520 -p 4 -ml 12000 -tdir HOME -seed 1443934701 HOME/instance-4399355-1568699208.xml

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

MD5SUM BENCH= 9cdf82428becd6b5ad716031980a59d2
RANDOM SEED=1443934701

node149.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.81
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.81
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.81
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.81
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:        26603256 kB
MemAvailable:   31767496 kB
Buffers:          107604 kB
Cached:          5358700 kB
SwapCached:        61076 kB
Active:          2606568 kB
Inactive:        2997604 kB
Active(anon):      80048 kB
Inactive(anon):   106192 kB
Active(file):    2526520 kB
Inactive(file):  2891412 kB
Unevictable:      111228 kB
Mlocked:          111228 kB
SwapTotal:      67108860 kB
SwapFree:       66941524 kB
Dirty:            134960 kB
Writeback:             0 kB
AnonPages:        156728 kB
Mapped:            60852 kB
Shmem:             39980 kB
Slab:             153644 kB
SReclaimable:     124284 kB
SUnreclaim:        29360 kB
KernelStack:        3728 kB
PageTables:         5940 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1509832 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     81920 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      144768 kB
DirectMap2M:    33400832 kB

Free space on /tmp at the end= 61288 MiB
End job on node149 at 2019-09-17 07:46:55