Trace number 4394295

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-06-14? 112.948 43.4418

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 benchmark2400.05
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-4394295-1568334574.xml"  -tl '2400s' -p 4
0.13/0.18	c Choco e747e1e
0.13/0.18	c [HOME/instance-4394295-1568334574.xml, -tl, 2400s, -p, 4]
0.35/0.22	c 4 solvers in parallel
0.35/0.28	c parse instance...
112.79/43.34	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
112.79/43.34		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:101)
112.79/43.34		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
112.79/43.34		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2096)
112.79/43.34		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2043)
112.79/43.34		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:317)
112.79/43.34		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
112.79/43.34		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
112.79/43.34		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
112.79/43.34		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
112.79/43.34		at org.xcsp.parser.XCallbacks$$Lambda$110/1511785794.accept(Unknown Source)
112.79/43.34		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
112.79/43.34		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
112.79/43.34		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
112.79/43.34		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
112.79/43.34		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
112.79/43.34		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
112.79/43.34		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
112.79/43.34		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
112.79/43.34		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
112.79/43.34		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
112.79/43.34		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
112.79/43.34		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
112.79/43.34	s UNKNOWN
112.79/43.34	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 (8873 MiB free)
  memory of node 1: 16384 MiB (12310 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4394295-1568334574/watcher-4394295-1568334574 -o /tmp/evaluation-result-4394295-1568334574/solver-4394295-1568334574 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node119-1568327905-19560 --watchdog 2560 xcsp3-exec -dir HOME -tl 2400 -p 4 -ml 12000 -tdir HOME -seed 418899555 HOME/instance-4394295-1568334574.xml 

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

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 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=31510, runsolver pid=31507
Current StackSize limit: 8192 KiB


[startup+0.10073 s]*
/proc/loadavg: 7.75 8.32 8.38 7/233 31526
/proc/meminfo: memFree=21674580/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/statm: 28282 362 304 221 0 87 0
[pid=31512] ppid=31510 vsize=15144768 memory=30132 CPUtime=0.13 cores=1,3,5,7
/proc/31512/stat : 31512 (java) S 31510 31510 19528 0 -1 1077944320 5975 0 0 0 12 1 0 0 20 0 15 0 409372418 15508242432 7533 33554432000 4194304 4196468 140735208431888 140735208414432 140595509161719 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
/proc/31512/statm: 3786192 7533 3150 1 0 3748377 0
[pid=31512/tid=31513] ppid=31510 vsize=15144768 memory=-6962121287837372198 CPUtime=0.08 cores=1,3,5,7
/proc/31512/task/31513/stat : 31513 (java) R 31510 31510 19528 0 -1 4202560 3856 0 0 0 8 0 0 0 20 0 15 0 409372419 15508242432 7533 33554432000 4194304 4196468 140735208431888 140595513393744 140595509173654 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31514] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31514/stat : 31514 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15508242432 7533 33554432000 4194304 4196468 140735208431888 140595420818576 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31515] ppid=31510 vsize=15144768 memory=140719187654272 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31515/stat : 31515 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15508242432 7533 33554432000 4194304 4196468 140735208431888 140595100118032 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31516] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31516/stat : 31516 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15508242432 7533 33554432000 4194304 4196468 140735208431888 140595099065232 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31517] ppid=31510 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31517/stat : 31517 (java) S 31510 31510 19528 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 409372419 15508242432 7533 33554432000 4194304 4196468 140735208431888 140595098012432 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31518] ppid=31510 vsize=15144768 memory=140719187654272 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31518/stat : 31518 (java) S 31510 31510 19528 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 409372421 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594977700208 140595509172866 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31519] ppid=31510 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31519/stat : 31519 (java) S 31510 31510 19528 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 409372421 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594976646176 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31520] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31520/stat : 31520 (java) S 31510 31510 19528 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 409372421 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594975593328 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31521] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31521/stat : 31521 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594974541648 140595509180315 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31522] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31522/stat : 31522 (java) R 31510 31510 19528 0 -1 1077944384 418 0 0 0 0 0 0 0 20 0 15 0 409372424 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594973490128 140595509171925 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31523] ppid=31510 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31523/stat : 31523 (java) S 31510 31510 19528 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 15 0 409372424 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594972437232 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31524] ppid=31510 vsize=15144768 memory=140719187654272 CPUtime=0.02 cores=1,3,5,7
/proc/31512/task/31524/stat : 31524 (java) R 31510 31510 19528 0 -1 4202560 355 0 0 0 2 0 0 0 20 0 15 0 409372424 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594971380192 140595509183066 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31525] ppid=31510 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31525/stat : 31525 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594970331872 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31526] ppid=31510 vsize=15144768 memory=140719187654272 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31526/stat : 31526 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372424 15508242432 7533 33554432000 4194304 4196468 140735208431888 140594969279152 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 15257896 KiB
Current children cumulated memory: 31580 KiB

[startup+0.210722 s]*
/proc/loadavg: 7.75 8.32 8.38 7/233 31526
/proc/meminfo: memFree=21662212/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/statm: 28282 362 304 221 0 87 0
[pid=31512] ppid=31510 vsize=15144768 memory=41220 CPUtime=0.35 cores=1,3,5,7
/proc/31512/stat : 31512 (java) S 31510 31510 19528 0 -1 1077944320 9497 0 0 0 32 3 0 0 20 0 15 0 409372418 15508242432 10305 33554432000 4194304 4196468 140735208431888 140735208414432 140595509161719 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
/proc/31512/statm: 3786192 10305 3276 1 0 3748377 0
[pid=31512/tid=31513] ppid=31510 vsize=15144768 memory=7883960649037381690 CPUtime=0.2 cores=1,3,5,7
/proc/31512/task/31513/stat : 31513 (java) R 31510 31510 19528 0 -1 4202560 6665 0 0 0 18 2 0 0 20 0 15 0 409372419 15508242432 10305 33554432000 4194304 4196468 140735208431888 140595513395648 140595509183645 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31514] ppid=31510 vsize=15144768 memory=10535 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31514/stat : 31514 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15508242432 10305 33554432000 4194304 4196468 140735208431888 140595420818576 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31515] ppid=31510 vsize=15144768 memory=140719190638899 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31515/stat : 31515 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15508242432 10305 33554432000 4194304 4196468 140735208431888 140595100118032 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31516] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31516/stat : 31516 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15508242432 10305 33554432000 4194304 4196468 140735208431888 140595099065232 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31517] ppid=31510 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31517/stat : 31517 (java) S 31510 31510 19528 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 409372419 15508242432 10305 33554432000 4194304 4196468 140735208431888 140595098012432 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31518] ppid=31510 vsize=15144768 memory=140719187654272 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31518/stat : 31518 (java) S 31510 31510 19528 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 409372421 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594977700208 140595509172866 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31519] ppid=31510 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31519/stat : 31519 (java) S 31510 31510 19528 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 409372421 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594976646176 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31520] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31520/stat : 31520 (java) S 31510 31510 19528 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 409372421 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594975593328 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31521] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31521/stat : 31521 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594974541648 140595509180315 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31522] ppid=31510 vsize=15144768 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/31512/task/31522/stat : 31522 (java) R 31510 31510 19528 0 -1 1077944384 465 0 0 0 2 0 0 0 20 0 15 0 409372424 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594973490032 140595509172866 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31523] ppid=31510 vsize=15144768 memory=-1 CPUtime=0.02 cores=1,3,5,7
/proc/31512/task/31523/stat : 31523 (java) R 31510 31510 19528 0 -1 1077944384 315 0 0 0 2 0 0 0 20 0 15 0 409372424 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594972437232 140595509172866 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31524] ppid=31510 vsize=15144768 memory=140719187654272 CPUtime=0.08 cores=1,3,5,7
/proc/31512/task/31524/stat : 31524 (java) R 31510 31510 19528 0 -1 1077944384 746 0 0 0 8 0 0 0 20 0 15 0 409372424 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594971384432 140595509172866 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31525] ppid=31510 vsize=15144768 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31525/stat : 31525 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594970331872 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31526] ppid=31510 vsize=15144768 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31526/stat : 31526 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372424 15508242432 10305 33554432000 4194304 4196468 140735208431888 140594969279152 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
Current children cumulated CPU time: 0.35 s
Current children cumulated vsize: 15257896 KiB
Current children cumulated memory: 42668 KiB

[startup+0.310583 s]*
/proc/loadavg: 7.75 8.32 8.38 7/233 31526
/proc/meminfo: memFree=21655428/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/statm: 28282 362 304 221 0 87 0
[pid=31512] ppid=31510 vsize=15149024 memory=50408 CPUtime=0.54 cores=1,3,5,7
/proc/31512/stat : 31512 (java) S 31510 31510 19528 0 -1 1077944320 10884 0 0 0 50 4 0 0 20 0 15 0 409372418 15512600576 12602 33554432000 4194304 4196468 140735208431888 140735208414432 140595509161719 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
/proc/31512/statm: 3787256 12602 3369 1 0 3748377 0
[pid=31512/tid=31513] ppid=31510 vsize=15149024 memory=6791534058613427641 CPUtime=0.3 cores=1,3,5,7
/proc/31512/task/31513/stat : 31513 (java) R 31510 31510 19528 0 -1 4202560 7835 0 0 0 27 3 0 0 20 0 15 0 409372419 15512600576 12602 33554432000 4194304 4196468 140735208431888 140595513388336 140595493242206 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31514] ppid=31510 vsize=15149024 memory=6655300316396806240 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31514/stat : 31514 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15512600576 12602 33554432000 4194304 4196468 140735208431888 140595420818576 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31515] ppid=31510 vsize=15149024 memory=6944652177228980320 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31515/stat : 31515 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15512600576 12602 33554432000 4194304 4196468 140735208431888 140595100118032 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31516] ppid=31510 vsize=15149024 memory=-4190076264842474805 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31516/stat : 31516 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372419 15512600576 12602 33554432000 4194304 4196468 140735208431888 140595099065232 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31517] ppid=31510 vsize=15149024 memory=-7377628852694597791 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31517/stat : 31517 (java) S 31510 31510 19528 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 409372419 15512600576 12602 33554432000 4194304 4196468 140735208431888 140595098012432 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31518] ppid=31510 vsize=15149024 memory=6944656425123485561 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31518/stat : 31518 (java) S 31510 31510 19528 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 409372421 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594977700208 140595509172866 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31519] ppid=31510 vsize=15149024 memory=7893295687695687954 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31519/stat : 31519 (java) S 31510 31510 19528 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 409372421 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594976646176 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31520] ppid=31510 vsize=15149024 memory=4627853888499060086 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31520/stat : 31520 (java) S 31510 31510 19528 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 409372421 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594975593328 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31521] ppid=31510 vsize=15149024 memory=-7828588039587137883 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31521/stat : 31521 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594974541648 140595509180315 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31522] ppid=31510 vsize=15149024 memory=4426078206164241782 CPUtime=0.05 cores=1,3,5,7
/proc/31512/task/31522/stat : 31522 (java) R 31510 31510 19528 0 -1 4202560 572 0 0 0 5 0 0 0 20 0 15 0 409372424 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594973471048 140595487578031 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31523] ppid=31510 vsize=15149024 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/31512/task/31523/stat : 31523 (java) S 31510 31510 19528 0 -1 1077944384 352 0 0 0 4 0 0 0 20 0 15 0 409372424 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594972437232 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31524] ppid=31510 vsize=15149024 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/31512/task/31524/stat : 31524 (java) S 31510 31510 19528 0 -1 1077944384 821 0 0 0 12 0 0 0 20 0 15 0 409372424 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594971384432 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31525] ppid=31510 vsize=15149024 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31525/stat : 31525 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594970331872 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31526] ppid=31510 vsize=15149024 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31526/stat : 31526 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372424 15512600576 12602 33554432000 4194304 4196468 140735208431888 140594969279152 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
Current children cumulated CPU time: 0.54 s
Current children cumulated vsize: 15262152 KiB
Current children cumulated memory: 51856 KiB

[startup+0.700782 s]
/proc/loadavg: 7.75 8.32 8.38 9/233 31526
/proc/meminfo: memFree=21497420/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/statm: 28282 362 304 221 0 87 0
[pid=31512] ppid=31510 vsize=15149100 memory=288984 CPUtime=1.23 cores=1,3,5,7
/proc/31512/stat : 31512 (java) S 31510 31510 19528 0 -1 1077944320 11997 0 0 0 103 20 0 0 20 0 15 0 409372418 15512678400 72246 33554432000 4194304 4196468 140735208431888 140735208414432 140595509161719 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
/proc/31512/statm: 3787275 72246 3428 1 0 3748377 0
[pid=31512/tid=31513] ppid=31510 vsize=15149100 memory=1436 CPUtime=0.61 cores=1,3,5,7
/proc/31512/task/31513/stat : 31513 (java) R 31510 31510 19528 0 -1 4202560 8298 0 0 0 54 7 0 0 20 0 15 0 409372419 15512678400 72246 33554432000 4194304 4196468 140735208431888 140595513396000 140595102053969 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31514] ppid=31510 vsize=15149100 memory=4164 CPUtime=0.04 cores=1,3,5,7
/proc/31512/task/31514/stat : 31514 (java) S 31510 31510 19528 0 -1 1077944384 47 0 0 0 2 2 0 0 20 0 15 0 409372419 15512678400 72246 33554432000 4194304 4196468 140735208431888 140595420818576 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31515] ppid=31510 vsize=15149100 memory=1548 CPUtime=0.06 cores=1,3,5,7
/proc/31512/task/31515/stat : 31515 (java) S 31510 31510 19528 0 -1 1077944384 64 0 0 0 3 3 0 0 20 0 15 0 409372419 15512678400 72246 33554432000 4194304 4196468 140735208431888 140595100118032 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31516] ppid=31510 vsize=15149100 memory=1728 CPUtime=0.06 cores=1,3,5,7
/proc/31512/task/31516/stat : 31516 (java) S 31510 31510 19528 0 -1 1077944384 64 0 0 0 3 3 0 0 20 0 15 0 409372419 15512678400 72246 33554432000 4194304 4196468 140735208431888 140595099065232 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31517] ppid=31510 vsize=15149100 memory=7980 CPUtime=0.06 cores=1,3,5,7
/proc/31512/task/31517/stat : 31517 (java) S 31510 31510 19528 0 -1 1077944384 70 0 0 0 3 3 0 0 20 0 15 0 409372419 15512678400 72246 33554432000 4194304 4196468 140735208431888 140595098012432 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31518] ppid=31510 vsize=15149100 memory=9580 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31518/stat : 31518 (java) S 31510 31510 19528 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 409372421 15512678400 72246 33554432000 4194304 4196468 140735208431888 140594977700208 140595509172866 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31519] ppid=31510 vsize=15149100 memory=1052 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31519/stat : 31519 (java) S 31510 31510 19528 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 409372421 15512678400 72246 33554432000 4194304 4196468 140735208431888 140594976646176 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31520] ppid=31510 vsize=15149100 memory=776 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31520/stat : 31520 (java) S 31510 31510 19528 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 409372421 15512678400 72246 33554432000 4194304 4196468 140735208431888 140594975593328 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31521] ppid=31510 vsize=15149100 memory=2832 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31521/stat : 31521 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15512678400 72246 33554432000 4194304 4196468 140735208431888 140594974541648 140595509180315 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31522] ppid=31510 vsize=15149100 memory=668 CPUtime=0.09 cores=1,3,5,7
/proc/31512/task/31522/stat : 31522 (java) S 31510 31510 19528 0 -1 1077944384 597 0 0 0 9 0 0 0 20 0 15 0 409372424 15512678400 72246 33554432000 4194304 4196468 140735208431888 140594973490032 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31523] ppid=31510 vsize=15149100 memory=1232 CPUtime=0.08 cores=1,3,5,7
/proc/31512/task/31523/stat : 31523 (java) S 31510 31510 19528 0 -1 1077944384 515 0 0 0 8 0 0 0 20 0 15 0 409372424 15512678400 72246 33554432000 4194304 4196468 140735208431888 140594972437232 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31524] ppid=31510 vsize=15149100 memory=1064 CPUtime=0.18 cores=1,3,5,7
/proc/31512/task/31524/stat : 31524 (java) S 31510 31510 19528 0 -1 1077944384 961 0 0 0 18 0 0 0 20 0 15 0 409372424 15512678400 72758 33554432000 4194304 4196468 140735208431888 140594971384432 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31525] ppid=31510 vsize=15149100 memory=14008 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31525/stat : 31525 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15512678400 72758 33554432000 4194304 4196468 140735208431888 140594970331872 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31526] ppid=31510 vsize=15149100 memory=21204 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31526/stat : 31526 (java) S 31510 31510 19528 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 409372424 15512678400 72758 33554432000 4194304 4196468 140735208431888 140594969279152 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
Current children cumulated CPU time: 1.23 s
Current children cumulated vsize: 15262228 KiB
Current children cumulated memory: 290432 KiB

[startup+1.50074 s]
/proc/loadavg: 7.75 8.32 8.38 8/233 31526
/proc/meminfo: memFree=20624856/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/statm: 28282 362 304 221 0 87 0

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

/proc/31512/task/31515/stat : 31515 (java) R 31510 31510 19528 0 -1 4202560 123451 0 0 0 1575 300 0 0 20 0 15 0 409372419 15514775552 3135318 33554432000 4194304 4196468 140735208431888 140595100118232 140595502264698 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31516] ppid=31510 vsize=15151148 memory=1232 CPUtime=18.74 cores=1,3,5,7
/proc/31512/task/31516/stat : 31516 (java) R 31510 31510 19528 0 -1 4202560 115904 0 0 0 1554 320 0 0 20 0 15 0 409372419 15514775552 3135318 33554432000 4194304 4196468 140735208431888 140595099065232 140595502264436 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31517] ppid=31510 vsize=15151148 memory=1064 CPUtime=18.79 cores=1,3,5,7
/proc/31512/task/31517/stat : 31517 (java) R 31510 31510 19528 0 -1 4202560 215533 0 0 0 1586 293 0 0 20 0 15 0 409372419 15514775552 3135318 33554432000 4194304 4196468 140735208431888 140595098012432 140595494159760 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31518] ppid=31510 vsize=15151148 memory=13345 CPUtime=7.01 cores=1,3,5,7
/proc/31512/task/31518/stat : 31518 (java) S 31510 31510 19528 0 -1 1077944384 39589 0 0 0 698 3 0 0 20 0 15 0 409372421 15514775552 3135318 33554432000 4194304 4196468 140735208431888 140594977698752 140595509171925 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31519] ppid=31510 vsize=15151148 memory=4420 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31519/stat : 31519 (java) S 31510 31510 19528 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 409372421 15514775552 3135318 33554432000 4194304 4196468 140735208431888 140594976646240 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31520] ppid=31510 vsize=15151148 memory=6628 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31520/stat : 31520 (java) S 31510 31510 19528 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 409372421 15514775552 3135318 33554432000 4194304 4196468 140735208431888 140594975593344 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31521] ppid=31510 vsize=15151148 memory=8836 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31521/stat : 31521 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15514775552 3135830 33554432000 4194304 4196468 140735208431888 140594974541648 140595509180315 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31522] ppid=31510 vsize=15151148 memory=11044 CPUtime=0.49 cores=1,3,5,7
/proc/31512/task/31522/stat : 31522 (java) S 31510 31510 19528 0 -1 1077944384 2063 0 0 0 49 0 0 0 20 0 15 0 409372424 15514775552 3135830 33554432000 4194304 4196468 140735208431888 140594973490032 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31523] ppid=31510 vsize=15151148 memory=13252 CPUtime=0.44 cores=1,3,5,7
/proc/31512/task/31523/stat : 31523 (java) S 31510 31510 19528 0 -1 1077944384 2043 0 0 0 44 0 0 0 20 0 15 0 409372424 15514775552 3135830 33554432000 4194304 4196468 140735208431888 140594972437232 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31524] ppid=31510 vsize=15151148 memory=1448 CPUtime=0.33 cores=1,3,5,7
/proc/31512/task/31524/stat : 31524 (java) S 31510 31510 19528 0 -1 1077944384 2399 0 0 0 33 0 0 0 20 0 15 0 409372424 15514775552 3135830 33554432000 4194304 4196468 140735208431888 140594971384432 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31525] ppid=31510 vsize=15151148 memory=12272396 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31525/stat : 31525 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15514775552 3135830 33554432000 4194304 4196468 140735208431888 140594970331872 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31526] ppid=31510 vsize=15151148 memory=4713745541279610410 CPUtime=0.01 cores=1,3,5,7
/proc/31512/task/31526/stat : 31526 (java) S 31510 31510 19528 0 -1 1077944384 313 0 0 0 0 1 0 0 20 0 15 0 409372424 15514775552 3135830 33554432000 4194304 4196468 140735208431888 140594969279152 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
Current children cumulated CPU time: 95.66 s
Current children cumulated vsize: 15264276 KiB
Current children cumulated memory: 12542720 KiB

[startup+41.6008 s]
/proc/loadavg: 7.11 8.07 8.29 9/233 31529
/proc/meminfo: memFree=8696524/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/statm: 28282 362 304 221 0 87 0
[pid=31512] ppid=31510 vsize=15151148 memory=12817936 CPUtime=107.42 cores=1,3,5,7
/proc/31512/stat : 31512 (java) S 31510 31510 19528 0 -1 1077944320 813617 0 0 0 9445 1297 0 0 20 0 15 0 409372418 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140735208414432 140595509161719 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
/proc/31512/statm: 3787787 3204484 3494 1 0 3748889 0
[pid=31512/tid=31513] ppid=31510 vsize=15151148 memory=2244 CPUtime=12.34 cores=1,3,5,7
/proc/31512/task/31513/stat : 31513 (java) S 31510 31510 19528 0 -1 1077944384 67945 0 0 0 1211 23 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595513399856 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31514] ppid=31510 vsize=15151148 memory=2704 CPUtime=21.53 cores=1,3,5,7
/proc/31512/task/31514/stat : 31514 (java) R 31510 31510 19528 0 -1 4202560 135759 0 0 0 1818 335 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595420818696 140595501789927 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31515] ppid=31510 vsize=15151148 memory=140719033670840 CPUtime=21.63 cores=1,3,5,7
/proc/31512/task/31515/stat : 31515 (java) R 31510 31510 19528 0 -1 4202560 230096 0 0 0 1858 305 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595100118232 140595502264728 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31516] ppid=31510 vsize=15151148 memory=5859271421085237344 CPUtime=21.63 cores=1,3,5,7
/proc/31512/task/31516/stat : 31516 (java) R 31510 31510 19528 0 -1 4202560 116257 0 0 0 1832 331 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595099065040 140595501789927 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31517] ppid=31510 vsize=15151148 memory=5859271421085237344 CPUtime=21.66 cores=1,3,5,7
/proc/31512/task/31517/stat : 31517 (java) R 31510 31510 19528 0 -1 4202560 215799 0 0 0 1871 295 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595098012552 140595501789927 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31518] ppid=31510 vsize=15151148 memory=-3622645143214314312 CPUtime=7.27 cores=1,3,5,7
/proc/31512/task/31518/stat : 31518 (java) S 31510 31510 19528 0 -1 1077944384 39608 0 0 0 724 3 0 0 20 0 15 0 409372421 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594977698768 140595509171925 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31519] ppid=31510 vsize=15151148 memory=2008 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31519/stat : 31519 (java) S 31510 31510 19528 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 409372421 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594976646240 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31520] ppid=31510 vsize=15151148 memory=1436 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31520/stat : 31520 (java) S 31510 31510 19528 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 409372421 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594975593344 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31521] ppid=31510 vsize=15151148 memory=4164 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31521/stat : 31521 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594974541648 140595509180315 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31522] ppid=31510 vsize=15151148 memory=6791534058613427641 CPUtime=0.49 cores=1,3,5,7
/proc/31512/task/31522/stat : 31522 (java) S 31510 31510 19528 0 -1 1077944384 2063 0 0 0 49 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594973490080 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31523] ppid=31510 vsize=15151148 memory=4164 CPUtime=0.44 cores=1,3,5,7
/proc/31512/task/31523/stat : 31523 (java) S 31510 31510 19528 0 -1 1077944384 2044 0 0 0 44 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594972436992 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31524] ppid=31510 vsize=15151148 memory=1548 CPUtime=0.33 cores=1,3,5,7
/proc/31512/task/31524/stat : 31524 (java) S 31510 31510 19528 0 -1 1077944384 2399 0 0 0 33 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594971384480 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31525] ppid=31510 vsize=15151148 memory=1728 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31525/stat : 31525 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594970331872 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31526] ppid=31510 vsize=15151148 memory=12817936 CPUtime=0.02 cores=1,3,5,7
/proc/31512/task/31526/stat : 31526 (java) S 31510 31510 19528 0 -1 1077944384 313 0 0 0 1 1 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594969279152 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
Current children cumulated CPU time: 107.42 s
Current children cumulated vsize: 15264276 KiB
Current children cumulated memory: 12819384 KiB

[startup+42.4008 s]
/proc/loadavg: 7.11 8.07 8.29 8/233 31529
/proc/meminfo: memFree=8696400/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/statm: 28282 362 304 221 0 87 0
[pid=31512] ppid=31510 vsize=15151148 memory=12817936 CPUtime=110.53 cores=1,3,5,7
/proc/31512/stat : 31512 (java) S 31510 31510 19528 0 -1 1077944320 814666 0 0 0 9754 1299 0 0 20 0 15 0 409372418 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140735208414432 140595509161719 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
/proc/31512/statm: 3787787 3204484 3494 1 0 3748889 0
[pid=31512/tid=31513] ppid=31510 vsize=15151148 memory=9580 CPUtime=12.34 cores=1,3,5,7
/proc/31512/task/31513/stat : 31513 (java) S 31510 31510 19528 0 -1 1077944384 67945 0 0 0 1211 23 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595513399856 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31514] ppid=31510 vsize=15151148 memory=14008 CPUtime=22.3 cores=1,3,5,7
/proc/31512/task/31514/stat : 31514 (java) R 31510 31510 19528 0 -1 4202560 135759 0 0 0 1894 336 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595420818696 140595501789927 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31515] ppid=31510 vsize=15151148 memory=21204 CPUtime=22.43 cores=1,3,5,7
/proc/31512/task/31515/stat : 31515 (java) R 31510 31510 19528 0 -1 4202560 231145 0 0 0 1938 305 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595100118232 140595493861979 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31516] ppid=31510 vsize=15151148 memory=3504 CPUtime=22.39 cores=1,3,5,7
/proc/31512/task/31516/stat : 31516 (java) R 31510 31510 19528 0 -1 4202560 116257 0 0 0 1908 331 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595099065040 140595501789927 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31517] ppid=31510 vsize=15151148 memory=6791534058613427641 CPUtime=22.43 cores=1,3,5,7
/proc/31512/task/31517/stat : 31517 (java) R 31510 31510 19528 0 -1 4202560 215799 0 0 0 1948 295 0 0 20 0 15 0 409372419 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140595098012552 140595501789927 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31518] ppid=31510 vsize=15151148 memory=7584172172082901604 CPUtime=7.27 cores=1,3,5,7
/proc/31512/task/31518/stat : 31518 (java) S 31510 31510 19528 0 -1 1077944384 39608 0 0 0 724 3 0 0 20 0 15 0 409372421 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594977698768 140595509171925 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31519] ppid=31510 vsize=15151148 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31519/stat : 31519 (java) S 31510 31510 19528 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 409372421 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594976646240 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31520] ppid=31510 vsize=15151148 memory=12817936 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31520/stat : 31520 (java) S 31510 31510 19528 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 409372421 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594975593344 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31521] ppid=31510 vsize=15151148 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31521/stat : 31521 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594974541648 140595509180315 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31522] ppid=31510 vsize=15151148 memory=12817936 CPUtime=0.49 cores=1,3,5,7
/proc/31512/task/31522/stat : 31522 (java) S 31510 31510 19528 0 -1 1077944384 2063 0 0 0 49 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594973490080 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31523] ppid=31510 vsize=15151148 memory=21204 CPUtime=0.44 cores=1,3,5,7
/proc/31512/task/31523/stat : 31523 (java) S 31510 31510 19528 0 -1 1077944384 2044 0 0 0 44 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594972436992 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31524] ppid=31510 vsize=15151148 memory=14056 CPUtime=0.33 cores=1,3,5,7
/proc/31512/task/31524/stat : 31524 (java) S 31510 31510 19528 0 -1 1077944384 2399 0 0 0 33 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594971384480 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31525] ppid=31510 vsize=15151148 memory=2116 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31525/stat : 31525 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594970331872 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31526] ppid=31510 vsize=15151148 memory=6791534058613427641 CPUtime=0.02 cores=1,3,5,7
/proc/31512/task/31526/stat : 31526 (java) S 31510 31510 19528 0 -1 1077944384 313 0 0 0 1 1 0 0 20 0 15 0 409372424 15514775552 3204484 33554432000 4194304 4196468 140735208431888 140594969279152 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
Current children cumulated CPU time: 110.53 s
Current children cumulated vsize: 15264276 KiB
Current children cumulated memory: 12819384 KiB

[startup+43.2008 s]
/proc/loadavg: 7.11 8.07 8.29 6/233 31529
/proc/meminfo: memFree=8696400/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/statm: 28282 362 304 221 0 87 0
[pid=31512] ppid=31510 vsize=15151148 memory=12818004 CPUtime=112.69 cores=1,3,5,7
/proc/31512/stat : 31512 (java) S 31510 31510 19528 0 -1 1077944320 814797 0 0 0 9970 1299 0 0 20 0 15 0 409372418 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140735208414432 140595509161719 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
/proc/31512/statm: 3787787 3204501 3494 1 0 3748889 0
[pid=31512/tid=31513] ppid=31510 vsize=15151148 memory=1232 CPUtime=12.34 cores=1,3,5,7
/proc/31512/task/31513/stat : 31513 (java) S 31510 31510 19528 0 -1 1077944384 67945 0 0 0 1211 23 0 0 20 0 15 0 409372419 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140595513399856 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31514] ppid=31510 vsize=15151148 memory=1064 CPUtime=22.75 cores=1,3,5,7
/proc/31512/task/31514/stat : 31514 (java) S 31510 31510 19528 0 -1 1077944384 135759 0 0 0 1939 336 0 0 20 0 15 0 409372419 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140595420818576 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31515] ppid=31510 vsize=15151148 memory=14008 CPUtime=22.9 cores=1,3,5,7
/proc/31512/task/31515/stat : 31515 (java) S 31510 31510 19528 0 -1 1077944384 231145 0 0 0 1985 305 0 0 20 0 15 0 409372419 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140595100118032 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31516] ppid=31510 vsize=15151148 memory=1448 CPUtime=22.86 cores=1,3,5,7
/proc/31512/task/31516/stat : 31516 (java) S 31510 31510 19528 0 -1 1077944384 116257 0 0 0 1954 332 0 0 20 0 15 0 409372419 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140595099065232 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31517] ppid=31510 vsize=15151148 memory=3504 CPUtime=22.88 cores=1,3,5,7
/proc/31512/task/31517/stat : 31517 (java) S 31510 31510 19528 0 -1 1077944384 215799 0 0 0 1993 295 0 0 20 0 15 0 409372419 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140595098012432 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31518] ppid=31510 vsize=15151148 memory=38376 CPUtime=7.6 cores=1,3,5,7
/proc/31512/task/31518/stat : 31518 (java) R 31510 31510 19528 0 -1 4202560 39739 0 0 0 757 3 0 0 20 0 15 0 409372421 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594977698768 140595494158126 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31519] ppid=31510 vsize=15151148 memory=988 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31519/stat : 31519 (java) S 31510 31510 19528 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 409372421 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594976646240 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31520] ppid=31510 vsize=15151148 memory=2008 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31520/stat : 31520 (java) S 31510 31510 19528 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 409372421 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594975593344 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31521] ppid=31510 vsize=15151148 memory=1436 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31521/stat : 31521 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594974541648 140595509180315 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31522] ppid=31510 vsize=15151148 memory=1448 CPUtime=0.49 cores=1,3,5,7
/proc/31512/task/31522/stat : 31522 (java) S 31510 31510 19528 0 -1 1077944384 2063 0 0 0 49 0 0 0 20 0 15 0 409372424 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594973490080 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31523] ppid=31510 vsize=15151148 memory=4164 CPUtime=0.44 cores=1,3,5,7
/proc/31512/task/31523/stat : 31523 (java) S 31510 31510 19528 0 -1 1077944384 2044 0 0 0 44 0 0 0 20 0 15 0 409372424 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594972436992 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31524] ppid=31510 vsize=15151148 memory=1548 CPUtime=0.33 cores=1,3,5,7
/proc/31512/task/31524/stat : 31524 (java) S 31510 31510 19528 0 -1 1077944384 2399 0 0 0 33 0 0 0 20 0 15 0 409372424 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594971384480 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31525] ppid=31510 vsize=15151148 memory=1728 CPUtime=0 cores=1,3,5,7
/proc/31512/task/31525/stat : 31525 (java) S 31510 31510 19528 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 409372424 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594970331872 140595509171925 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
[pid=31512/tid=31526] ppid=31510 vsize=15151148 memory=7980 CPUtime=0.02 cores=1,3,5,7
/proc/31512/task/31526/stat : 31526 (java) S 31510 31510 19528 0 -1 1077944384 313 0 0 0 1 1 0 0 20 0 15 0 409372424 15514775552 3204501 33554432000 4194304 4196468 140735208431888 140594969279152 140595509172866 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31371264 140735208440815 140735208440986 140735208440986 140735208443855 0
Current children cumulated CPU time: 112.69 s
Current children cumulated vsize: 15264276 KiB
Current children cumulated memory: 12819452 KiB

[startup+43.401 s]
/proc/loadavg: 7.11 8.07 8.29 6/233 31529
/proc/meminfo: memFree=8696400/32770624 swapFree=66939828/67108860
[pid=31510] ppid=31507 vsize=113128 memory=1448 CPUtime=0 cores=1,3,5,7
/proc/31510/stat : 31510 (xcsp3-exec) S 31507 31510 19528 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 409372418 115843072 362 33554432000 4194304 5098028 140729967231200 140729967229304 139894363583100 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 40378368 140729967240059 140729967240301 140729967240301 140729967243210 0
/proc/31510/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.4418
CPU time (s): 112.948
CPU user time (s): 99.8544
CPU system time (s): 13.0939
CPU usage (%): 259.999
Max. virtual memory (cumulated for all children) (KiB): 15264276
Max. memory (cumulated for all children) (KiB): 12819452

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 99.8544
system time used= 13.0939
maximum resident set size= 12818300
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 815488
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= 11556
involuntary context switches= 3597


# summary of solver processes directly reported to runsolver:
#   pid: 31510
#   total CPU time (s): 112.948
#   total CPU user time (s): 99.8544
#   total CPU system time (s): 13.0939

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.271211 second user time and 0.533975 second system time

The end

Launcher Data

Begin job on node119 at 2019-09-13 02:28:55
IDJOB=4394295
IDBENCH=138083
IDSOLVER=2842
FILE ID=node119/4394295-1568334574
RUNJOBID= node119-1568327905-19560
PBS_JOBID= 21701152
Free space on /tmp= 57164 MiB

SOLVER NAME= choco-solver 2019-06-14
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-4394295-1568334574/watcher-4394295-1568334574 -o /tmp/evaluation-result-4394295-1568334574/solver-4394295-1568334574 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node119-1568327905-19560 --watchdog 2560  xcsp3-exec -dir HOME -tl 2400 -p 4 -ml 12000 -tdir HOME -seed 418899555 HOME/instance-4394295-1568334574.xml

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

MD5SUM BENCH= 9cdf82428becd6b5ad716031980a59d2
RANDOM SEED=418899555

node119.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.47
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.47
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.47
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.47
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:        21692272 kB
MemAvailable:   31261892 kB
Buffers:          173444 kB
Cached:          9613204 kB
SwapCached:        61088 kB
Active:          2928268 kB
Inactive:        7466312 kB
Active(anon):     546120 kB
Inactive(anon):   103388 kB
Active(file):    2382148 kB
Inactive(file):  7362924 kB
Unevictable:      106772 kB
Mlocked:          106772 kB
SwapTotal:      67108860 kB
SwapFree:       66939828 kB
Dirty:            109000 kB
Writeback:             0 kB
AnonPages:        661444 kB
Mapped:            56764 kB
Shmem:             32808 kB
Slab:             282432 kB
SReclaimable:     253008 kB
SUnreclaim:        29424 kB
KernelStack:        3792 kB
PageTables:         6904 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1755316 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    567296 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      126336 kB
DirectMap2M:    33419264 kB

Free space on /tmp at the end= 57136 MiB
End job on node119 at 2019-09-13 02:29:39