Trace number 4403447

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 NameAnswerCPU timeWall clock time
choco-solver 2019-09-20? 325.35 128.26

General information on the benchmark

NamePigeonsPlus/PigeonsPlus-m1-s1/
pigeonsPlus-08-08.xml
MD5SUMa4344d82eae68729eeb0bbc0b13d3fa1
Bench CategoryCSP (decision problem)
Best result obtained on this benchmarkUNSAT
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark29.4324
Satisfiable
(Un)Satisfiability was proved
Number of variables72
Number of constraints44
Number of domains2
Minimum domain size7
Maximum domain size8
Distribution of domain sizes[{"size":7,"count":8},{"size":8,"count":64}]
Minimum variable degree1
Maximum variable degree8
Distribution of variable degrees[{"degree":1,"count":56},{"degree":2,"count":8},{"degree":8,"count":8}]
Minimum constraint arity2
Maximum constraint arity8
Distribution of constraint arities[{"arity":2,"count":36},{"arity":8,"count":8}]
Number of extensional constraints44
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":44}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.00	c java -server -Xmx12000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4403447-1568991675.xml"  -tl '2520s' -p 4
0.13/0.18	c Choco 3fb4b153
0.13/0.18	c [HOME/instance-4403447-1568991675.xml, -tl, 2520s, -p, 4]
0.34/0.22	c 4 solvers in parallel
0.34/0.28	c parse instance...
325.08/128.06	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
325.08/128.06		at java.util.Arrays.copyOf(Arrays.java:3181)
325.08/128.06		at java.util.ArrayList.grow(ArrayList.java:261)
325.08/128.06		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
325.08/128.06		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
325.08/128.06		at java.util.ArrayList.add(ArrayList.java:458)
325.08/128.06		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:159)
325.08/128.06		at org.chocosolver.solver.constraints.extension.Tuples.<init>(Tuples.java:59)
325.08/128.06		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:309)
325.08/128.06		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
325.08/128.06		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
325.08/128.06		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
325.08/128.06		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
325.08/128.06		at org.xcsp.parser.XCallbacks$$Lambda$94/861842890.accept(Unknown Source)
325.08/128.06		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
325.08/128.06		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
325.08/128.06		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
325.08/128.06		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
325.08/128.06		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
325.08/128.06		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
325.08/128.06		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
325.08/128.06		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
325.08/128.06		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
325.08/128.06		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
325.08/128.06		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
325.08/128.06		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
325.08/128.06	s UNKNOWN
325.08/128.06	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 (8825 MiB free)
  memory of node 1: 16384 MiB (6785 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4403447-1568991675/watcher-4403447-1568991675 -o /tmp/evaluation-result-4403447-1568991675/solver-4403447-1568991675 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node104-1568983762-7721 --watchdog 2580 xcsp3-exec -dir HOME -tl 2520 -p 4 -ml 12000 -tdir HOME -seed 785499973 HOME/instance-4403447-1568991675.xml 

running on 4 cores: 0,2,4,6

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
Current StackSize limit: 8192 KiB

solver pid=11649, runsolver pid=11646

[startup+0.102307 s]*
/proc/loadavg: 8.31 8.33 8.12 6/233 11665
/proc/meminfo: memFree=15968276/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/statm: 28282 362 304 221 0 87 0
[pid=11651] ppid=11649 vsize=15144776 memory=30288 CPUtime=0.13 cores=0,2,4,6
/proc/11651/stat : 11651 (java) S 11649 11649 7690 0 -1 1077944320 5514 0 0 0 12 1 0 0 20 0 15 0 475424398 15508250624 7572 33554432000 4194304 4196468 140732771837472 140732771820016 139844243570423 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
/proc/11651/statm: 3786194 7572 3150 1 0 3748377 0
[pid=11651/tid=11652] ppid=11649 vsize=15144776 memory=-2698087569006908830 CPUtime=0.09 cores=0,2,4,6
/proc/11651/task/11652/stat : 11652 (java) R 11649 11649 7690 0 -1 4202560 3389 0 0 0 8 1 0 0 20 0 15 0 475424398 15508250624 7572 33554432000 4194304 4196468 140732771837472 139844247800016 139844243582358 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11653] ppid=11649 vsize=15144776 memory=-3689349214911541841 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11653/stat : 11653 (java) S 11649 11649 7690 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475424399 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843836390160 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11654] ppid=11649 vsize=15144776 memory=140690987308672 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11654/stat : 11654 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424399 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843835337616 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11655] ppid=11649 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11655/stat : 11655 (java) S 11649 11649 7690 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475424399 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843834285072 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11656] ppid=11649 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11656/stat : 11656 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424399 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843833232528 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11657] ppid=11649 vsize=15144776 memory=140690987308672 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11657/stat : 11657 (java) S 11649 11649 7690 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475424401 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843712124912 139844243581570 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11658] ppid=11649 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11658/stat : 11658 (java) S 11649 11649 7690 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 475424401 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843711071136 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11659] ppid=11649 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11659/stat : 11659 (java) S 11649 11649 7690 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 475424401 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843710018544 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11660] ppid=11649 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11660/stat : 11660 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843708967120 139844243589019 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11661] ppid=11649 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11661/stat : 11661 (java) R 11649 11649 7690 0 -1 1077944384 418 0 0 0 0 0 0 0 20 0 15 0 475424404 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843707914736 139844243581570 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11662] ppid=11649 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11662/stat : 11662 (java) R 11649 11649 7690 0 -1 4202560 48 0 0 0 0 0 0 0 20 0 15 0 475424404 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843706862192 139844227070826 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11663] ppid=11649 vsize=15144776 memory=140690987308672 CPUtime=0.02 cores=0,2,4,6
/proc/11651/task/11663/stat : 11663 (java) S 11649 11649 7690 0 -1 1077944384 357 0 0 0 2 0 0 0 20 0 15 0 475424404 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843705809648 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11664] ppid=11649 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11664/stat : 11664 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843704757344 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11665] ppid=11649 vsize=15144776 memory=140690987308672 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11665/stat : 11665 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424404 15508250624 7572 33554432000 4194304 4196468 140732771837472 139843703703856 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 31736 KiB

[startup+0.210928 s]*
/proc/loadavg: 8.31 8.33 8.12 9/233 11665
/proc/meminfo: memFree=15955540/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/statm: 28282 362 304 221 0 87 0
[pid=11651] ppid=11649 vsize=15144776 memory=41392 CPUtime=0.34 cores=0,2,4,6
/proc/11651/stat : 11651 (java) S 11649 11649 7690 0 -1 1077944320 9019 0 0 0 31 3 0 0 20 0 15 0 475424398 15508250624 10348 33554432000 4194304 4196468 140732771837472 140732771820016 139844243570423 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
/proc/11651/statm: 3786194 10348 3301 1 0 3748377 0
[pid=11651/tid=11652] ppid=11649 vsize=15144776 memory=7883960649037381690 CPUtime=0.2 cores=0,2,4,6
/proc/11651/task/11652/stat : 11652 (java) R 11649 11649 7690 0 -1 4202560 6195 0 0 0 18 2 0 0 20 0 15 0 475424398 15508250624 10348 33554432000 4194304 4196468 140732771837472 139844247807120 139844243592349 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11653] ppid=11649 vsize=15144776 memory=1898699 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11653/stat : 11653 (java) S 11649 11649 7690 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475424399 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843836390160 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11654] ppid=11649 vsize=15144776 memory=3389747 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11654/stat : 11654 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424399 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843835337616 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11655] ppid=11649 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11655/stat : 11655 (java) S 11649 11649 7690 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475424399 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843834285072 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11656] ppid=11649 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11656/stat : 11656 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424399 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843833232528 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11657] ppid=11649 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11657/stat : 11657 (java) S 11649 11649 7690 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 15 0 475424401 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843712124912 139844243581570 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11658] ppid=11649 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11658/stat : 11658 (java) S 11649 11649 7690 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 475424401 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843711071136 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11659] ppid=11649 vsize=15144776 memory=140690987308672 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11659/stat : 11659 (java) S 11649 11649 7690 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 475424401 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843710018544 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11660] ppid=11649 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11660/stat : 11660 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843708967120 139844243589019 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11661] ppid=11649 vsize=15144776 memory=0 CPUtime=0.02 cores=0,2,4,6
/proc/11651/task/11661/stat : 11661 (java) S 11649 11649 7690 0 -1 1077944384 634 0 0 0 2 0 0 0 20 0 15 0 475424404 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843707914736 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11662] ppid=11649 vsize=15144776 memory=-1 CPUtime=0.02 cores=0,2,4,6
/proc/11651/task/11662/stat : 11662 (java) S 11649 11649 7690 0 -1 1077944384 152 0 0 0 2 0 0 0 20 0 15 0 475424404 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843706862192 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11663] ppid=11649 vsize=15144776 memory=0 CPUtime=0.08 cores=0,2,4,6
/proc/11651/task/11663/stat : 11663 (java) S 11649 11649 7690 0 -1 1077944384 731 0 0 0 8 0 0 0 20 0 15 0 475424404 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843705809648 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11664] ppid=11649 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11664/stat : 11664 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843704757344 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11665] ppid=11649 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11665/stat : 11665 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424404 15508250624 10348 33554432000 4194304 4196468 140732771837472 139843703703856 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 42840 KiB

[startup+0.318747 s]*
/proc/loadavg: 8.31 8.33 8.12 6/233 11665
/proc/meminfo: memFree=15948404/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/statm: 28282 362 304 221 0 87 0
[pid=11651] ppid=11649 vsize=15149032 memory=50456 CPUtime=0.51 cores=0,2,4,6
/proc/11651/stat : 11651 (java) S 11649 11649 7690 0 -1 1077944320 10371 0 0 0 48 3 0 0 20 0 15 0 475424398 15512608768 12606 33554432000 4194304 4196468 140732771837472 140732771820016 139844243570423 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
/proc/11651/statm: 3787258 12614 3360 1 0 3748377 0
[pid=11651/tid=11652] ppid=11649 vsize=15149032 memory=8389772277269004345 CPUtime=0.3 cores=0,2,4,6
/proc/11651/task/11652/stat : 11652 (java) R 11649 11649 7690 0 -1 4202560 7429 0 0 0 28 2 0 0 20 0 15 0 475424398 15512608768 12614 33554432000 4194304 4196468 140732771837472 139844247805360 139844227650910 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11653] ppid=11649 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11653/stat : 11653 (java) S 11649 11649 7690 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475424399 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843836390160 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11654] ppid=11649 vsize=15149032 memory=3391388 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11654/stat : 11654 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424399 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843835337616 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11655] ppid=11649 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11655/stat : 11655 (java) S 11649 11649 7690 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475424399 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843834285072 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11656] ppid=11649 vsize=15149032 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11656/stat : 11656 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424399 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843833232528 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11657] ppid=11649 vsize=15149032 memory=140690987308672 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11657/stat : 11657 (java) S 11649 11649 7690 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 15 0 475424401 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843712124912 139844243581570 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11658] ppid=11649 vsize=15149032 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11658/stat : 11658 (java) S 11649 11649 7690 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 475424401 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843711071136 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11659] ppid=11649 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11659/stat : 11659 (java) S 11649 11649 7690 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 475424401 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843710018544 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11660] ppid=11649 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11660/stat : 11660 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843708967120 139844243589019 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11661] ppid=11649 vsize=15149032 memory=0 CPUtime=0.03 cores=0,2,4,6
/proc/11651/task/11661/stat : 11661 (java) S 11649 11649 7690 0 -1 1077944384 661 0 0 0 3 0 0 0 20 0 15 0 475424404 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843707914736 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11662] ppid=11649 vsize=15149032 memory=-1 CPUtime=0.03 cores=0,2,4,6
/proc/11651/task/11662/stat : 11662 (java) S 11649 11649 7690 0 -1 1077944384 184 0 0 0 3 0 0 0 20 0 15 0 475424404 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843706862192 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11663] ppid=11649 vsize=15149032 memory=140690987308672 CPUtime=0.12 cores=0,2,4,6
/proc/11651/task/11663/stat : 11663 (java) S 11649 11649 7690 0 -1 1077944384 806 0 0 0 12 0 0 0 20 0 15 0 475424404 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843705809648 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11664] ppid=11649 vsize=15149032 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11664/stat : 11664 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843704757344 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11665] ppid=11649 vsize=15149032 memory=140690987308672 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11665/stat : 11665 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424404 15512608768 12614 33554432000 4194304 4196468 140732771837472 139843703703856 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
Current children cumulated CPU time: 0.51 s
Current children cumulated vsize: 15262160 KiB
Current children cumulated memory: 51904 KiB

[startup+0.700783 s]
/proc/loadavg: 8.31 8.33 8.12 9/233 11665
/proc/meminfo: memFree=15807488/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/statm: 28282 362 304 221 0 87 0
[pid=11651] ppid=11649 vsize=15149108 memory=289032 CPUtime=1.24 cores=0,2,4,6
/proc/11651/stat : 11651 (java) S 11649 11649 7690 0 -1 1077944320 11501 0 0 0 102 22 0 0 20 0 15 0 475424398 15512686592 72258 33554432000 4194304 4196468 140732771837472 140732771820016 139844243570423 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
/proc/11651/statm: 3787277 72258 3434 1 0 3748377 0
[pid=11651/tid=11652] ppid=11649 vsize=15149108 memory=2120 CPUtime=0.61 cores=0,2,4,6
/proc/11651/task/11652/stat : 11652 (java) R 11649 11649 7690 0 -1 4202560 7806 0 0 0 55 6 0 0 20 0 15 0 475424398 15512686592 72258 33554432000 4194304 4196468 140732771837472 139844247810032 139844227614053 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11653] ppid=11649 vsize=15149108 memory=532 CPUtime=0.05 cores=0,2,4,6
/proc/11651/task/11653/stat : 11653 (java) S 11649 11649 7690 0 -1 1077944384 70 0 0 0 2 3 0 0 20 0 15 0 475424399 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843836390160 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11654] ppid=11649 vsize=15149108 memory=1564 CPUtime=0.05 cores=0,2,4,6
/proc/11651/task/11654/stat : 11654 (java) S 11649 11649 7690 0 -1 1077944384 60 0 0 0 2 3 0 0 20 0 15 0 475424399 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843835337616 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11655] ppid=11649 vsize=15149108 memory=924 CPUtime=0.04 cores=0,2,4,6
/proc/11651/task/11655/stat : 11655 (java) S 11649 11649 7690 0 -1 1077944384 55 0 0 0 2 2 0 0 20 0 15 0 475424399 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843834285072 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11656] ppid=11649 vsize=15149108 memory=1680 CPUtime=0.05 cores=0,2,4,6
/proc/11651/task/11656/stat : 11656 (java) S 11649 11649 7690 0 -1 1077944384 62 0 0 0 2 3 0 0 20 0 15 0 475424399 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843833232528 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11657] ppid=11649 vsize=15149108 memory=1440 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11657/stat : 11657 (java) S 11649 11649 7690 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 475424401 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843712124912 139844243581570 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11658] ppid=11649 vsize=15149108 memory=912 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11658/stat : 11658 (java) S 11649 11649 7690 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 475424401 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843711071136 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11659] ppid=11649 vsize=15149108 memory=1984 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11659/stat : 11659 (java) S 11649 11649 7690 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 475424401 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843710018544 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11660] ppid=11649 vsize=15149108 memory=7086240636095582563 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11660/stat : 11660 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843708967120 139844243589019 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11661] ppid=11649 vsize=15149108 memory=7453282923444726100 CPUtime=0.09 cores=0,2,4,6
/proc/11651/task/11661/stat : 11661 (java) R 11649 11649 7690 0 -1 1077944384 833 0 0 0 9 0 0 0 20 0 15 0 475424404 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843707914736 139844243581570 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11662] ppid=11649 vsize=15149108 memory=4639059877604708710 CPUtime=0.09 cores=0,2,4,6
/proc/11651/task/11662/stat : 11662 (java) R 11649 11649 7690 0 -1 4202560 305 0 0 0 9 0 0 0 20 0 15 0 475424404 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843706852576 139844225093878 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11663] ppid=11649 vsize=15149108 memory=8514726395715219869 CPUtime=0.18 cores=0,2,4,6
/proc/11651/task/11663/stat : 11663 (java) S 11649 11649 7690 0 -1 1077944384 928 0 0 0 18 0 0 0 20 0 15 0 475424404 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843705809648 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11664] ppid=11649 vsize=15149108 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11664/stat : 11664 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843704757344 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11665] ppid=11649 vsize=15149108 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11665/stat : 11665 (java) S 11649 11649 7690 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475424404 15512686592 72258 33554432000 4194304 4196468 140732771837472 139843703703856 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
Current children cumulated CPU time: 1.24 s
Current children cumulated vsize: 15262236 KiB
Current children cumulated memory: 290480 KiB

[startup+1.50079 s]
/proc/loadavg: 8.31 8.33 8.12 6/233 11665
/proc/meminfo: memFree=15030620/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/statm: 28282 362 304 221 0 87 0

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

/proc/11651/task/11654/stat : 11654 (java) R 11649 11649 7690 0 -1 4202560 920068 0 0 0 6066 236 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843835337736 139844236198631 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11655] ppid=11649 vsize=15151156 memory=1448 CPUtime=63.42 cores=0,2,4,6
/proc/11651/task/11655/stat : 11655 (java) R 11649 11649 7690 0 -1 4202560 720396 0 0 0 6128 214 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843834285272 139844236666816 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11656] ppid=11649 vsize=15151156 memory=12800060 CPUtime=63.01 cores=0,2,4,6
/proc/11651/task/11656/stat : 11656 (java) R 11649 11649 7690 0 -1 4202560 656904 0 0 0 6094 207 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843833232336 139844236198631 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11657] ppid=11649 vsize=15151156 memory=2480 CPUtime=18.61 cores=0,2,4,6
/proc/11651/task/11657/stat : 11657 (java) S 11649 11649 7690 0 -1 1077944384 57346 0 0 0 1850 11 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843712123472 139844243580629 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11658] ppid=11649 vsize=15151156 memory=1768 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11658/stat : 11658 (java) S 11649 11649 7690 0 -1 1077944384 97 0 0 0 0 0 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843711071200 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11659] ppid=11649 vsize=15151156 memory=988 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11659/stat : 11659 (java) S 11649 11649 7690 0 -1 1077944384 178 0 0 0 0 0 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843710018560 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11660] ppid=11649 vsize=15151156 memory=2004 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11660/stat : 11660 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843708967120 139844243589019 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11661] ppid=11649 vsize=15151156 memory=1416 CPUtime=0.93 cores=0,2,4,6
/proc/11651/task/11661/stat : 11661 (java) S 11649 11649 7690 0 -1 1077944384 6464 0 0 0 92 1 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843707914496 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11662] ppid=11649 vsize=15151156 memory=1712 CPUtime=0.95 cores=0,2,4,6
/proc/11651/task/11662/stat : 11662 (java) S 11649 11649 7690 0 -1 1077944384 6817 0 0 0 95 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843706862240 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11663] ppid=11649 vsize=15151156 memory=692 CPUtime=0.38 cores=0,2,4,6
/proc/11651/task/11663/stat : 11663 (java) S 11649 11649 7690 0 -1 1077944384 3942 0 0 0 38 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843705809696 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11664] ppid=11649 vsize=15151156 memory=2600 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11664/stat : 11664 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843704757344 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11665] ppid=11649 vsize=15151156 memory=1412 CPUtime=0.04 cores=0,2,4,6
/proc/11651/task/11665/stat : 11665 (java) S 11649 11649 7690 0 -1 1077944384 675 0 0 0 3 1 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843703703856 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
Current children cumulated CPU time: 315.84 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12801508 KiB

[startup+126.401 s]
/proc/loadavg: 6.97 7.68 7.90 9/233 11756
/proc/meminfo: memFree=3190476/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/statm: 28282 362 304 221 0 87 0
[pid=11651] ppid=11649 vsize=15151156 memory=12800060 CPUtime=322.03 cores=0,2,4,6
/proc/11651/stat : 11651 (java) S 11649 11649 7690 0 -1 1077944320 2972430 0 0 0 31239 964 0 0 20 0 15 0 475424398 15514783744 3200015 33554432000 4194304 4196468 140732771837472 140732771820016 139844243570423 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
/proc/11651/statm: 3787789 3200015 3504 1 0 3748889 0
[pid=11651/tid=11652] ppid=11649 vsize=15151156 memory=12800060 CPUtime=42.29 cores=0,2,4,6
/proc/11651/task/11652/stat : 11652 (java) S 11649 11649 7690 0 -1 1077944384 119747 0 0 0 4163 66 0 0 20 0 15 0 475424398 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139844247808880 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11653] ppid=11649 vsize=15151156 memory=55336 CPUtime=64.6 cores=0,2,4,6
/proc/11651/task/11653/stat : 11653 (java) R 11649 11649 7690 0 -1 4202560 477276 0 0 0 6239 221 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843836390280 139844236198631 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11654] ppid=11649 vsize=15151156 memory=988 CPUtime=64.56 cores=0,2,4,6
/proc/11651/task/11654/stat : 11654 (java) R 11649 11649 7690 0 -1 4202560 920068 0 0 0 6220 236 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843835337736 139844236198631 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11655] ppid=11649 vsize=15151156 memory=2004 CPUtime=65.02 cores=0,2,4,6
/proc/11651/task/11655/stat : 11655 (java) R 11649 11649 7690 0 -1 4202560 721675 0 0 0 6288 214 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843834285272 139844228559897 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11656] ppid=11649 vsize=15151156 memory=1416 CPUtime=64.55 cores=0,2,4,6
/proc/11651/task/11656/stat : 11656 (java) R 11649 11649 7690 0 -1 4202560 656904 0 0 0 6247 208 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843833232336 139844236198631 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11657] ppid=11649 vsize=15151156 memory=6791534058613427641 CPUtime=18.61 cores=0,2,4,6
/proc/11651/task/11657/stat : 11657 (java) S 11649 11649 7690 0 -1 1077944384 57346 0 0 0 1850 11 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843712123472 139844243580629 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11658] ppid=11649 vsize=15151156 memory=12800060 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11658/stat : 11658 (java) S 11649 11649 7690 0 -1 1077944384 97 0 0 0 0 0 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843711071200 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11659] ppid=11649 vsize=15151156 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11659/stat : 11659 (java) S 11649 11649 7690 0 -1 1077944384 178 0 0 0 0 0 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843710018560 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11660] ppid=11649 vsize=15151156 memory=4104 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11660/stat : 11660 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843708967120 139844243589019 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11661] ppid=11649 vsize=15151156 memory=1712 CPUtime=0.93 cores=0,2,4,6
/proc/11651/task/11661/stat : 11661 (java) S 11649 11649 7690 0 -1 1077944384 6464 0 0 0 92 1 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843707914496 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11662] ppid=11649 vsize=15151156 memory=692 CPUtime=0.95 cores=0,2,4,6
/proc/11651/task/11662/stat : 11662 (java) S 11649 11649 7690 0 -1 1077944384 6817 0 0 0 95 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843706862240 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11663] ppid=11649 vsize=15151156 memory=1056 CPUtime=0.38 cores=0,2,4,6
/proc/11651/task/11663/stat : 11663 (java) S 11649 11649 7690 0 -1 1077944384 3942 0 0 0 38 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843705809696 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11664] ppid=11649 vsize=15151156 memory=1556 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11664/stat : 11664 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843704757344 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11665] ppid=11649 vsize=15151156 memory=1448 CPUtime=0.04 cores=0,2,4,6
/proc/11651/task/11665/stat : 11665 (java) S 11649 11649 7690 0 -1 1077944384 675 0 0 0 3 1 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843703703856 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
Current children cumulated CPU time: 322.03 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12801508 KiB

[startup+127.201 s]
/proc/loadavg: 7.06 7.68 7.90 6/233 11756
/proc/meminfo: memFree=3190476/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/statm: 28282 362 304 221 0 87 0
[pid=11651] ppid=11649 vsize=15151156 memory=12800060 CPUtime=324.28 cores=0,2,4,6
/proc/11651/stat : 11651 (java) S 11649 11649 7690 0 -1 1077944320 2972430 0 0 0 31464 964 0 0 20 0 15 0 475424398 15514783744 3200015 33554432000 4194304 4196468 140732771837472 140732771820016 139844243570423 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
/proc/11651/statm: 3787789 3200015 3504 1 0 3748889 0
[pid=11651/tid=11652] ppid=11649 vsize=15151156 memory=6791534058613427641 CPUtime=42.29 cores=0,2,4,6
/proc/11651/task/11652/stat : 11652 (java) S 11649 11649 7690 0 -1 1077944384 119747 0 0 0 4163 66 0 0 20 0 15 0 475424398 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139844247808880 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11653] ppid=11649 vsize=15151156 memory=3616 CPUtime=65.08 cores=0,2,4,6
/proc/11651/task/11653/stat : 11653 (java) S 11649 11649 7690 0 -1 1077944384 477276 0 0 0 6287 221 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843836390160 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11654] ppid=11649 vsize=15151156 memory=1112 CPUtime=65.04 cores=0,2,4,6
/proc/11651/task/11654/stat : 11654 (java) S 11649 11649 7690 0 -1 1077944384 920068 0 0 0 6268 236 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843835337616 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11655] ppid=11649 vsize=15151156 memory=6048 CPUtime=65.52 cores=0,2,4,6
/proc/11651/task/11655/stat : 11655 (java) S 11649 11649 7690 0 -1 1077944384 721675 0 0 0 6338 214 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843834285072 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11656] ppid=11649 vsize=15151156 memory=7552 CPUtime=65.03 cores=0,2,4,6
/proc/11651/task/11656/stat : 11656 (java) S 11649 11649 7690 0 -1 1077944384 656904 0 0 0 6295 208 0 0 20 0 15 0 475424399 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843833232528 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11657] ppid=11649 vsize=15151156 memory=0 CPUtime=18.91 cores=0,2,4,6
/proc/11651/task/11657/stat : 11657 (java) R 11649 11649 7690 0 -1 4202560 57346 0 0 0 1880 11 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843712123472 139844228566916 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11658] ppid=11649 vsize=15151156 memory=0 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11658/stat : 11658 (java) S 11649 11649 7690 0 -1 1077944384 97 0 0 0 0 0 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843711071200 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11659] ppid=11649 vsize=15151156 memory=1556 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11659/stat : 11659 (java) S 11649 11649 7690 0 -1 1077944384 178 0 0 0 0 0 0 0 20 0 15 0 475424401 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843710018560 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11660] ppid=11649 vsize=15151156 memory=780 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11660/stat : 11660 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843708967120 139844243589019 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11661] ppid=11649 vsize=15151156 memory=3616 CPUtime=0.93 cores=0,2,4,6
/proc/11651/task/11661/stat : 11661 (java) S 11649 11649 7690 0 -1 1077944384 6464 0 0 0 92 1 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843707914496 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11662] ppid=11649 vsize=15151156 memory=1112 CPUtime=0.95 cores=0,2,4,6
/proc/11651/task/11662/stat : 11662 (java) S 11649 11649 7690 0 -1 1077944384 6817 0 0 0 95 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843706862240 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11663] ppid=11649 vsize=15151156 memory=6048 CPUtime=0.38 cores=0,2,4,6
/proc/11651/task/11663/stat : 11663 (java) S 11649 11649 7690 0 -1 1077944384 3942 0 0 0 38 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843705809696 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11664] ppid=11649 vsize=15151156 memory=7552 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11664/stat : 11664 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843704757344 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11665] ppid=11649 vsize=15151156 memory=2832 CPUtime=0.04 cores=0,2,4,6
/proc/11651/task/11665/stat : 11665 (java) S 11649 11649 7690 0 -1 1077944384 675 0 0 0 3 1 0 0 20 0 15 0 475424404 15514783744 3200015 33554432000 4194304 4196468 140732771837472 139843703703856 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
Current children cumulated CPU time: 324.28 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12801508 KiB

[startup+128.001 s]*
/proc/loadavg: 7.06 7.68 7.90 6/233 11756
/proc/meminfo: memFree=3190352/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/statm: 28282 362 304 221 0 87 0
[pid=11651] ppid=11649 vsize=15151156 memory=12800080 CPUtime=325.08 cores=0,2,4,6
/proc/11651/stat : 11651 (java) S 11649 11649 7690 0 -1 1077944320 2972519 0 0 0 31544 964 0 0 20 0 15 0 475424398 15514783744 3200020 33554432000 4194304 4196468 140732771837472 140732771820016 139844243570423 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
/proc/11651/statm: 3787789 3200020 3504 1 0 3748889 0
[pid=11651/tid=11652] ppid=11649 vsize=15151156 memory=8317482817917895235 CPUtime=42.29 cores=0,2,4,6
/proc/11651/task/11652/stat : 11652 (java) S 11649 11649 7690 0 -1 1077944384 119747 0 0 0 4163 66 0 0 20 0 15 0 475424398 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139844247808880 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11653] ppid=11649 vsize=15151156 memory=4126316290023845779 CPUtime=65.08 cores=0,2,4,6
/proc/11651/task/11653/stat : 11653 (java) S 11649 11649 7690 0 -1 1077944384 477276 0 0 0 6287 221 0 0 20 0 15 0 475424399 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843836390160 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11654] ppid=11649 vsize=15151156 memory=692 CPUtime=65.04 cores=0,2,4,6
/proc/11651/task/11654/stat : 11654 (java) S 11649 11649 7690 0 -1 1077944384 920068 0 0 0 6268 236 0 0 20 0 15 0 475424399 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843835337616 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11655] ppid=11649 vsize=15151156 memory=3616 CPUtime=65.52 cores=0,2,4,6
/proc/11651/task/11655/stat : 11655 (java) S 11649 11649 7690 0 -1 1077944384 721675 0 0 0 6338 214 0 0 20 0 15 0 475424399 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843834285072 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11656] ppid=11649 vsize=15151156 memory=55336 CPUtime=65.03 cores=0,2,4,6
/proc/11651/task/11656/stat : 11656 (java) S 11649 11649 7690 0 -1 1077944384 656904 0 0 0 6295 208 0 0 20 0 15 0 475424399 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843833232528 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11657] ppid=11649 vsize=15151156 memory=988 CPUtime=19.72 cores=0,2,4,6
/proc/11651/task/11657/stat : 11657 (java) R 11649 11649 7690 0 -1 4202560 57435 0 0 0 1961 11 0 0 20 0 15 0 475424401 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843712123360 139844221940603 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11658] ppid=11649 vsize=15151156 memory=12800060 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11658/stat : 11658 (java) S 11649 11649 7690 0 -1 1077944384 97 0 0 0 0 0 0 0 20 0 15 0 475424401 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843711071200 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11659] ppid=11649 vsize=15151156 memory=3616 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11659/stat : 11659 (java) S 11649 11649 7690 0 -1 1077944384 178 0 0 0 0 0 0 0 20 0 15 0 475424401 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843710018560 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11660] ppid=11649 vsize=15151156 memory=1112 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11660/stat : 11660 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843708967120 139844243589019 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11661] ppid=11649 vsize=15151156 memory=6048 CPUtime=0.93 cores=0,2,4,6
/proc/11651/task/11661/stat : 11661 (java) S 11649 11649 7690 0 -1 1077944384 6464 0 0 0 92 1 0 0 20 0 15 0 475424404 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843707914496 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11662] ppid=11649 vsize=15151156 memory=0 CPUtime=0.95 cores=0,2,4,6
/proc/11651/task/11662/stat : 11662 (java) S 11649 11649 7690 0 -1 1077944384 6817 0 0 0 95 0 0 0 20 0 15 0 475424404 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843706862240 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11663] ppid=11649 vsize=15151156 memory=281381696025376 CPUtime=0.38 cores=0,2,4,6
/proc/11651/task/11663/stat : 11663 (java) S 11649 11649 7690 0 -1 1077944384 3942 0 0 0 38 0 0 0 20 0 15 0 475424404 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843705809696 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11664] ppid=11649 vsize=15151156 memory=140690848390552 CPUtime=0 cores=0,2,4,6
/proc/11651/task/11664/stat : 11664 (java) S 11649 11649 7690 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475424404 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843704757344 139844243580629 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
[pid=11651/tid=11665] ppid=11649 vsize=15151156 memory=4104 CPUtime=0.04 cores=0,2,4,6
/proc/11651/task/11665/stat : 11665 (java) S 11649 11649 7690 0 -1 1077944384 675 0 0 0 3 1 0 0 20 0 15 0 475424404 15514783744 3200020 33554432000 4194304 4196468 140732771837472 139843703703856 139844243581570 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 22048768 140732771841007 140732771841178 140732771841178 140732771844047 0
Current children cumulated CPU time: 325.08 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12801528 KiB

[startup+128.2 s]
/proc/loadavg: 7.06 7.68 7.90 6/233 11756
/proc/meminfo: memFree=3190352/32770624 swapFree=66986244/67108860
[pid=11649] ppid=11646 vsize=113128 memory=1448 CPUtime=0 cores=0,2,4,6
/proc/11649/stat : 11649 (xcsp3-exec) S 11646 11649 7690 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 475424398 115843072 362 33554432000 4194304 5098028 140734578343488 140734578341592 139752523088508 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 14540800 140734578348923 140734578349165 140734578349165 140734578352074 0
/proc/11649/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): 128.26
CPU time (s): 325.35
CPU user time (s): 315.512
CPU system time (s): 9.83747
CPU usage (%): 253.665
Max. virtual memory (cumulated for all children) (KiB): 15264284
Max. memory (cumulated for all children) (KiB): 12801528

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 315.512
system time used= 9.83747
maximum resident set size= 12800260
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 2973368
page faults= 0
swaps= 0
block input operations= 0
block output operations= 272
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 16616
involuntary context switches= 8517


# summary of solver processes directly reported to runsolver:
#   pid: 11649
#   total CPU time (s): 325.35
#   total CPU user time (s): 315.512
#   total CPU system time (s): 9.83747

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.91651 second user time and 1.25295 second system time

The end

Launcher Data

Begin job on node104 at 2019-09-20 15:50:54
IDJOB=4403447
IDBENCH=134289
IDSOLVER=2863
FILE ID=node104/4403447-1568991675
RUNJOBID= node104-1568983762-7721
PBS_JOBID= 21704640
Free space on /tmp= 9468 MiB

SOLVER NAME= choco-solver 2019-09-20
BENCH NAME= XCSP17/PigeonsPlus/PigeonsPlus-m1-s1/pigeonsPlus-08-08.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-4403447-1568991675/watcher-4403447-1568991675 -o /tmp/evaluation-result-4403447-1568991675/solver-4403447-1568991675 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node104-1568983762-7721 --watchdog 2580  xcsp3-exec -dir HOME -tl 2520 -p 4 -ml 12000 -tdir HOME -seed 785499973 HOME/instance-4403447-1568991675.xml

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

MD5SUM BENCH= a4344d82eae68729eeb0bbc0b13d3fa1
RANDOM SEED=785499973

node104.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	: 5334.09
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	: 5334.09
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	: 5334.09
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	: 5334.09
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:        15985780 kB
MemAvailable:   31222352 kB
Buffers:           94680 kB
Cached:         15042916 kB
SwapCached:        22652 kB
Active:          8194904 kB
Inactive:        7576384 kB
Active(anon):     608536 kB
Inactive(anon):    74632 kB
Active(file):    7586368 kB
Inactive(file):  7501752 kB
Unevictable:      109712 kB
Mlocked:          109712 kB
SwapTotal:      67108860 kB
SwapFree:       66986244 kB
Dirty:            121580 kB
Writeback:             0 kB
AnonPages:        721916 kB
Mapped:            65404 kB
Shmem:             40708 kB
Slab:             607412 kB
SReclaimable:     576912 kB
SUnreclaim:        30500 kB
KernelStack:        3776 kB
PageTables:         7104 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1485912 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    575488 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      124288 kB
DirectMap2M:    33421312 kB

Free space on /tmp at the end= 9440 MiB
End job on node104 at 2019-09-20 15:53:03