Trace number 4403960

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
choco-solver 2019-09-20? 324.997 131.182

General information on the benchmark

NameChessboardColoration/ChessboardColoration-int-s2/
ChessboardColoration-int-05-07.xml
MD5SUM91a6e92a2ae9197e0e5abb82e178125f
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark2
Best CPU time to get the best result obtained on this benchmark0.310586
Satisfiable
(Un)Satisfiability was proved
Number of variables35
Number of constraints211
Number of domains1
Minimum domain size35
Maximum domain size35
Distribution of domain sizes[{"size":35,"count":35}]
Minimum variable degree26
Maximum variable degree26
Distribution of variable degrees[{"degree":26,"count":35}]
Minimum constraint arity4
Maximum constraint arity35
Distribution of constraint arities[{"arity":4,"count":210},{"arity":35,"count":1}]
Number of extensional constraints0
Number of intensional constraints210
Distribution of constraint types[{"type":"intension","count":210},{"type":"lex","count":1}]
Optimization problemYES
Type of objectivemin MAXIMUM

Solver Data

0.00/0.00	c java -server -Xmx12000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4403960-1568992392.xml"  -tl '2400s' -p 4
0.13/0.18	c Choco 3fb4b153
0.13/0.18	c [HOME/instance-4403960-1568992392.xml, -tl, 2400s, -p, 4]
0.34/0.22	c 4 solvers in parallel
0.34/0.28	c parse instance...
324.51/130.74	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
324.51/130.74		at java.util.Arrays.copyOf(Arrays.java:3181)
324.51/130.74		at java.util.ArrayList.grow(ArrayList.java:261)
324.51/130.74		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
324.51/130.74		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
324.51/130.74		at java.util.ArrayList.add(ArrayList.java:458)
324.51/130.74		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:159)
324.51/130.74		at org.chocosolver.solver.constraints.extension.TuplesFactory.generateTuples(TuplesFactory.java:88)
324.51/130.74		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
324.51/130.74		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
324.51/130.74		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:283)
324.51/130.74		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:164)
324.51/130.74		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
324.51/130.74		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
324.51/130.74		at org.xcsp.parser.XCallbacks$$Lambda$108/25548982.accept(Unknown Source)
324.51/130.74		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
324.51/130.74		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
324.51/130.74		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
324.51/130.74		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
324.51/130.74		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
324.51/130.74		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
324.51/130.74		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
324.51/130.74		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
324.51/130.74		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
324.51/130.74		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
324.51/130.74		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
324.51/130.74		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
324.51/130.74	s UNKNOWN
324.51/130.74	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 (3678 MiB free)
  memory of node 1: 16384 MiB (4826 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4403960-1568992392/watcher-4403960-1568992392 -o /tmp/evaluation-result-4403960-1568992392/solver-4403960-1568992392 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node148-1568990731-2770 --watchdog 2560 xcsp3-exec -dir HOME -tl 2400 -p 4 -ml 12000 -tdir HOME -seed 146805369 HOME/instance-4403960-1568992392.xml 

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

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=6353, runsolver pid=6350
Current StackSize limit: 8192 KiB


[startup+0.100058 s]*
/proc/loadavg: 8.77 8.53 7.30 7/234 6369
/proc/meminfo: memFree=8692848/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
[pid=6355] ppid=6353 vsize=15144776 memory=30084 CPUtime=0.13 cores=0,2,4,6
/proc/6355/stat : 6355 (java) S 6353 6353 2739 0 -1 1077944320 5483 0 0 0 12 1 0 0 20 0 15 0 475400785 15508250624 7521 33554432000 4194304 4196468 140730520354720 140730520337264 140637200490231 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
/proc/6355/statm: 3786194 7521 3122 1 0 3748377 0
[pid=6355/tid=6356] ppid=6353 vsize=15144776 memory=576460756329955459 CPUtime=0.09 cores=0,2,4,6
/proc/6355/task/6356/stat : 6356 (java) R 6353 6353 2739 0 -1 4202560 3398 0 0 0 9 0 0 0 20 0 15 0 475400786 15508250624 7587 33554432000 4194304 4196468 140730520354720 140637204716064 140637184570718 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6357] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6357/stat : 6357 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400786 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636792527632 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6358] ppid=6353 vsize=15144776 memory=140347375518671 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6358/stat : 6358 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400786 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636791475088 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6359] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6359/stat : 6359 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400786 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636790422544 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6360] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6360/stat : 6360 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400786 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636789370000 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6361] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6361/stat : 6361 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400788 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636668762096 140637200501378 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6362] ppid=6353 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6362/stat : 6362 (java) S 6353 6353 2739 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 475400788 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636667708320 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6363] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6363/stat : 6363 (java) S 6353 6353 2739 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 475400788 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636666655728 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6364] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6364/stat : 6364 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636665604304 140637200508827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6365] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6365/stat : 6365 (java) R 6353 6353 2739 0 -1 1077944384 300 0 0 0 0 0 0 0 20 0 15 0 475400791 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636664552016 140637200500437 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6366] ppid=6353 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6366/stat : 6366 (java) R 6353 6353 2739 0 -1 4202560 146 0 0 0 0 0 0 0 20 0 15 0 475400791 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636663490880 140637186156384 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6367] ppid=6353 vsize=15144776 memory=140347372242560 CPUtime=0.02 cores=0,2,4,6
/proc/6355/task/6367/stat : 6367 (java) R 6353 6353 2739 0 -1 4202560 359 0 0 0 2 0 0 0 20 0 15 0 475400791 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636662446832 140637179428327 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6368] ppid=6353 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6368/stat : 6368 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636661394528 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6369] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6369/stat : 6369 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400791 15508250624 7587 33554432000 4194304 4196468 140730520354720 140636660341040 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 31536 KiB

[startup+0.210795 s]*
/proc/loadavg: 8.77 8.53 7.30 7/234 6369
/proc/meminfo: memFree=8679936/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
[pid=6355] ppid=6353 vsize=15144776 memory=40628 CPUtime=0.34 cores=0,2,4,6
/proc/6355/stat : 6355 (java) S 6353 6353 2739 0 -1 1077944320 8884 0 0 0 32 2 0 0 20 0 15 0 475400785 15508250624 10157 33554432000 4194304 4196468 140730520354720 140730520337264 140637200490231 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
/proc/6355/statm: 3786194 10157 3304 1 0 3748377 0
[pid=6355/tid=6356] ppid=6353 vsize=15144776 memory=7883960649037381690 CPUtime=0.19 cores=0,2,4,6
/proc/6355/task/6356/stat : 6356 (java) R 6353 6353 2739 0 -1 4202560 6198 0 0 0 18 1 0 0 20 0 15 0 475400786 15508250624 10157 33554432000 4194304 4196468 140730520354720 140637204724352 140637200502166 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6357] ppid=6353 vsize=15144776 memory=14645 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6357/stat : 6357 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400786 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636792527632 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6358] ppid=6353 vsize=15144776 memory=3834453173130004128 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6358/stat : 6358 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400786 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636791475088 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6359] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6359/stat : 6359 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400786 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636790422544 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6360] ppid=6353 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6360/stat : 6360 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400786 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636789370000 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6361] ppid=6353 vsize=15144776 memory=140347372242560 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6361/stat : 6361 (java) S 6353 6353 2739 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 15 0 475400788 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636668762096 140637200501378 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6362] ppid=6353 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6362/stat : 6362 (java) S 6353 6353 2739 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 475400788 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636667708320 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6363] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6363/stat : 6363 (java) S 6353 6353 2739 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 475400788 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636666655728 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6364] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6364/stat : 6364 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636665604304 140637200508827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6365] ppid=6353 vsize=15144776 memory=0 CPUtime=0.01 cores=0,2,4,6
/proc/6355/task/6365/stat : 6365 (java) S 6353 6353 2739 0 -1 1077944384 321 0 0 0 1 0 0 0 20 0 15 0 475400791 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636664551920 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6366] ppid=6353 vsize=15144776 memory=-1 CPUtime=0.03 cores=0,2,4,6
/proc/6355/task/6366/stat : 6366 (java) S 6353 6353 2739 0 -1 1077944384 286 0 0 0 3 0 0 0 20 0 15 0 475400791 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636663499376 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6367] ppid=6353 vsize=15144776 memory=140347372242560 CPUtime=0.08 cores=0,2,4,6
/proc/6355/task/6367/stat : 6367 (java) R 6353 6353 2739 0 -1 4202560 772 0 0 0 8 0 0 0 20 0 15 0 475400791 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636662446832 140637192727358 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6368] ppid=6353 vsize=15144776 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6368/stat : 6368 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636661394528 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6369] ppid=6353 vsize=15144776 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6369/stat : 6369 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400791 15508250624 10157 33554432000 4194304 4196468 140730520354720 140636660341040 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 42080 KiB

[startup+0.311593 s]*
/proc/loadavg: 8.77 8.53 7.30 7/234 6369
/proc/meminfo: memFree=8673160/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
[pid=6355] ppid=6353 vsize=15149032 memory=49996 CPUtime=0.53 cores=0,2,4,6
/proc/6355/stat : 6355 (java) S 6353 6353 2739 0 -1 1077944320 10326 0 0 0 50 3 0 0 20 0 15 0 475400785 15512608768 12499 33554432000 4194304 4196468 140730520354720 140730520337264 140637200490231 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
/proc/6355/statm: 3787258 12499 3360 1 0 3748377 0
[pid=6355/tid=6356] ppid=6353 vsize=15149032 memory=1398722017469774279 CPUtime=0.3 cores=0,2,4,6
/proc/6355/task/6356/stat : 6356 (java) R 6353 6353 2739 0 -1 4202560 7343 0 0 0 28 2 0 0 20 0 15 0 475400786 15512608768 12568 33554432000 4194304 4196468 140730520354720 140637204721344 140637184570718 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6357] ppid=6353 vsize=15149032 memory=6944652177228980320 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6357/stat : 6357 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400786 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636792527632 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6358] ppid=6353 vsize=15149032 memory=6655300316396806240 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6358/stat : 6358 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400786 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636791475088 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6359] ppid=6353 vsize=15149032 memory=6944656575208382560 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6359/stat : 6359 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400786 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636790422544 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6360] ppid=6353 vsize=15149032 memory=-5587046532246807594 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6360/stat : 6360 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400786 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636789370000 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6361] ppid=6353 vsize=15149032 memory=7379517702019849078 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6361/stat : 6361 (java) S 6353 6353 2739 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 15 0 475400788 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636668762096 140637200501378 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6362] ppid=6353 vsize=15149032 memory=7016714186490735262 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6362/stat : 6362 (java) S 6353 6353 2739 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 475400788 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636667708320 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6363] ppid=6353 vsize=15149032 memory=-9062862659931694204 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6363/stat : 6363 (java) S 6353 6353 2739 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 475400788 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636666655728 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6364] ppid=6353 vsize=15149032 memory=3047711566422646390 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6364/stat : 6364 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636665604304 140637200508827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6365] ppid=6353 vsize=15149032 memory=-8412656567168561567 CPUtime=0.04 cores=0,2,4,6
/proc/6355/task/6365/stat : 6365 (java) R 6353 6353 2739 0 -1 4202560 487 0 0 0 4 0 0 0 20 0 15 0 475400791 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636664551920 140637185418552 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6366] ppid=6353 vsize=15149032 memory=0 CPUtime=0.04 cores=0,2,4,6
/proc/6355/task/6366/stat : 6366 (java) S 6353 6353 2739 0 -1 1077944384 297 0 0 0 4 0 0 0 20 0 15 0 475400791 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636663499376 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6367] ppid=6353 vsize=15149032 memory=0 CPUtime=0.13 cores=0,2,4,6
/proc/6355/task/6367/stat : 6367 (java) S 6353 6353 2739 0 -1 1077944384 909 0 0 0 13 0 0 0 20 0 15 0 475400791 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636662446832 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6368] ppid=6353 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6368/stat : 6368 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636661394528 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6369] ppid=6353 vsize=15149032 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6369/stat : 6369 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400791 15512608768 12568 33554432000 4194304 4196468 140730520354720 140636660341040 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 15262160 KiB
Current children cumulated memory: 51448 KiB

[startup+0.700805 s]
/proc/loadavg: 8.77 8.53 7.30 7/234 6369
/proc/meminfo: memFree=8663108/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
[pid=6355] ppid=6353 vsize=15151156 memory=129764 CPUtime=1.25 cores=0,2,4,6
/proc/6355/stat : 6355 (java) S 6353 6353 2739 0 -1 1077944320 12324 0 0 0 120 5 0 0 20 0 15 0 475400785 15514783744 32441 33554432000 4194304 4196468 140730520354720 140730520337264 140637200490231 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
/proc/6355/statm: 3787789 32441 3433 1 0 3748889 0
[pid=6355/tid=6356] ppid=6353 vsize=15151156 memory=-3704326594973231466 CPUtime=0.67 cores=0,2,4,6
/proc/6355/task/6356/stat : 6356 (java) R 6353 6353 2739 0 -1 4202560 8567 0 0 0 63 4 0 0 20 0 15 0 475400786 15514783744 32441 33554432000 4194304 4196468 140730520354720 140637204725488 140636840852651 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6357] ppid=6353 vsize=15151156 memory=0 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6357/stat : 6357 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400786 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636792527632 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6358] ppid=6353 vsize=15151156 memory=3617 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6358/stat : 6358 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400786 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636791475088 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6359] ppid=6353 vsize=15151156 memory=740 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6359/stat : 6359 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400786 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636790422544 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6360] ppid=6353 vsize=15151156 memory=1052 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6360/stat : 6360 (java) S 6353 6353 2739 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 475400786 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636789370000 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6361] ppid=6353 vsize=15151156 memory=7548 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6361/stat : 6361 (java) S 6353 6353 2739 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636668762096 140637200501378 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6362] ppid=6353 vsize=15151156 memory=3620 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6362/stat : 6362 (java) S 6353 6353 2739 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636667708320 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6363] ppid=6353 vsize=15151156 memory=2832 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6363/stat : 6363 (java) S 6353 6353 2739 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636666655728 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6364] ppid=6353 vsize=15151156 memory=776 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6364/stat : 6364 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636665604304 140637200508827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6365] ppid=6353 vsize=15151156 memory=1160 CPUtime=0.14 cores=0,2,4,6
/proc/6355/task/6365/stat : 6365 (java) S 6353 6353 2739 0 -1 1077944384 625 0 0 0 14 0 0 0 20 0 15 0 475400791 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636664551920 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6366] ppid=6353 vsize=15151156 memory=1716 CPUtime=0.15 cores=0,2,4,6
/proc/6355/task/6366/stat : 6366 (java) S 6353 6353 2739 0 -1 1077944384 531 0 0 0 15 0 0 0 20 0 15 0 475400791 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636663499376 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6367] ppid=6353 vsize=15151156 memory=1096 CPUtime=0.27 cores=0,2,4,6
/proc/6355/task/6367/stat : 6367 (java) S 6353 6353 2739 0 -1 1077944384 1292 0 0 0 27 0 0 0 20 0 15 0 475400791 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636662446832 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6368] ppid=6353 vsize=15151156 memory=6128 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6368/stat : 6368 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636661394528 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6369] ppid=6353 vsize=15151156 memory=14012 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6369/stat : 6369 (java) S 6353 6353 2739 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 32441 33554432000 4194304 4196468 140730520354720 140636660341040 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
Current children cumulated CPU time: 1.25 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 131216 KiB

[startup+1.50081 s]
/proc/loadavg: 8.77 8.53 7.30 8/234 6369
/proc/meminfo: memFree=8494244/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0

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

/proc/6355/task/6368/stat : 6368 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 3090313 33554432000 4194304 4196468 140730520354720 140636661394528 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6369] ppid=6353 vsize=15151156 memory=14012 CPUtime=0.08 cores=0,2,4,6
/proc/6355/task/6369/stat : 6369 (java) S 6353 6353 2739 0 -1 1077944384 192 0 0 0 5 3 0 0 20 0 15 0 475400791 15514783744 3090313 33554432000 4194304 4196468 140730520354720 140636660341040 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 42 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
Current children cumulated CPU time: 293.01 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12362704 KiB

[startup+128.001 s]*
/proc/loadavg: 6.84 7.81 7.20 9/234 6383
/proc/meminfo: memFree=241632/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
[pid=6355] ppid=6353 vsize=15151156 memory=12361256 CPUtime=317.53 cores=0,2,4,6
/proc/6355/stat : 6355 (java) S 6353 6353 2739 0 -1 1077944320 4768563 0 0 0 29671 2082 0 0 20 0 15 0 475400785 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140730520337264 140637200490231 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
/proc/6355/statm: 3787789 3090314 3502 1 0 3748889 0
[pid=6355/tid=6356] ppid=6353 vsize=15151156 memory=1398722017469774279 CPUtime=36.83 cores=0,2,4,6
/proc/6355/task/6356/stat : 6356 (java) S 6353 6353 2739 0 -1 1077944384 16177 0 0 0 3674 9 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140637204728480 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6357] ppid=6353 vsize=15151156 memory=2596 CPUtime=63.17 cores=0,2,4,6
/proc/6355/task/6357/stat : 6357 (java) R 6353 6353 2739 0 -1 4202560 1665503 0 0 0 5749 568 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636792527440 140637193118439 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6358] ppid=6353 vsize=15151156 memory=2596 CPUtime=62.92 cores=0,2,4,6
/proc/6355/task/6358/stat : 6358 (java) R 6353 6353 2739 0 -1 4202560 705734 0 0 0 5826 466 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636791475208 140637193118439 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6359] ppid=6353 vsize=15151156 memory=1412 CPUtime=62.82 cores=0,2,4,6
/proc/6355/task/6359/stat : 6359 (java) R 6353 6353 2739 0 -1 4202560 1025929 0 0 0 5804 478 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636790422664 140637193118439 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6360] ppid=6353 vsize=15151156 memory=3308 CPUtime=63.26 cores=0,2,4,6
/proc/6355/task/6360/stat : 6360 (java) R 6353 6353 2739 0 -1 4202560 1270132 0 0 0 5778 548 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636789370200 140637193593868 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6361] ppid=6353 vsize=15151156 memory=1448 CPUtime=27.32 cores=0,2,4,6
/proc/6355/task/6361/stat : 6361 (java) S 6353 6353 2739 0 -1 1077944384 75978 0 0 0 2725 7 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636668760656 140637200500437 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6362] ppid=6353 vsize=15151156 memory=2589652 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6362/stat : 6362 (java) S 6353 6353 2739 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636667708384 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6363] ppid=6353 vsize=15151156 memory=12361256 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6363/stat : 6363 (java) S 6353 6353 2739 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636666655744 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6364] ppid=6353 vsize=15151156 memory=8112282956445269571 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6364/stat : 6364 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636665604304 140637200508827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6365] ppid=6353 vsize=15151156 memory=1964 CPUtime=0.35 cores=0,2,4,6
/proc/6355/task/6365/stat : 6365 (java) S 6353 6353 2739 0 -1 1077944384 2790 0 0 0 35 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636664551968 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6366] ppid=6353 vsize=15151156 memory=2456 CPUtime=0.29 cores=0,2,4,6
/proc/6355/task/6366/stat : 6366 (java) S 6353 6353 2739 0 -1 1077944384 1679 0 0 0 29 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636663499424 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6367] ppid=6353 vsize=15151156 memory=1760 CPUtime=0.41 cores=0,2,4,6
/proc/6355/task/6367/stat : 6367 (java) S 6353 6353 2739 0 -1 1077944384 3564 0 0 0 41 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636662446592 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6368] ppid=6353 vsize=15151156 memory=111632 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6368/stat : 6368 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636661394528 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6369] ppid=6353 vsize=15151156 memory=4104 CPUtime=0.08 cores=0,2,4,6
/proc/6355/task/6369/stat : 6369 (java) S 6353 6353 2739 0 -1 1077944384 194 0 0 0 5 3 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636660341040 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 42 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
Current children cumulated CPU time: 317.53 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12362708 KiB

[startup+129.601 s]
/proc/loadavg: 6.84 7.81 7.20 9/234 6383
/proc/meminfo: memFree=228488/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
[pid=6355] ppid=6353 vsize=15151156 memory=12361256 CPUtime=323.41 cores=0,2,4,6
/proc/6355/stat : 6355 (java) S 6353 6353 2739 0 -1 1077944320 5160477 0 0 0 30233 2108 0 0 20 0 15 0 475400785 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140730520337264 140637200490231 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
/proc/6355/statm: 3787789 3090314 3502 1 0 3748889 0
[pid=6355/tid=6356] ppid=6353 vsize=15151156 memory=12361256 CPUtime=36.83 cores=0,2,4,6
/proc/6355/task/6356/stat : 6356 (java) S 6353 6353 2739 0 -1 1077944384 16177 0 0 0 3674 9 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140637204728480 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6357] ppid=6353 vsize=15151156 memory=8112282956445269571 CPUtime=64.6 cores=0,2,4,6
/proc/6355/task/6357/stat : 6357 (java) S 6353 6353 2739 0 -1 1077944384 1665503 0 0 0 5892 568 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636792527632 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6358] ppid=6353 vsize=15151156 memory=2832 CPUtime=64.33 cores=0,2,4,6
/proc/6355/task/6358/stat : 6358 (java) S 6353 6353 2739 0 -1 1077944384 705734 0 0 0 5966 467 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636791475088 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6359] ppid=6353 vsize=15151156 memory=776 CPUtime=64.25 cores=0,2,4,6
/proc/6355/task/6359/stat : 6359 (java) S 6353 6353 2739 0 -1 1077944384 1025929 0 0 0 5947 478 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636790422544 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6360] ppid=6353 vsize=15151156 memory=1160 CPUtime=64.74 cores=0,2,4,6
/proc/6355/task/6360/stat : 6360 (java) S 6353 6353 2739 0 -1 1077944384 1661630 0 0 0 5903 571 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636789370000 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6361] ppid=6353 vsize=15151156 memory=1716 CPUtime=27.42 cores=0,2,4,6
/proc/6355/task/6361/stat : 6361 (java) R 6353 6353 2739 0 -1 4202560 75978 0 0 0 2735 7 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636668760656 140637184947801 0 0 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6362] ppid=6353 vsize=15151156 memory=8112282956445269571 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6362/stat : 6362 (java) S 6353 6353 2739 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636667708384 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6363] ppid=6353 vsize=15151156 memory=1556 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6363/stat : 6363 (java) S 6353 6353 2739 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636666655744 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6364] ppid=6353 vsize=15151156 memory=740 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6364/stat : 6364 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636665604304 140637200508827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6365] ppid=6353 vsize=15151156 memory=1052 CPUtime=0.35 cores=0,2,4,6
/proc/6355/task/6365/stat : 6365 (java) S 6353 6353 2739 0 -1 1077944384 2790 0 0 0 35 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636664551968 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6366] ppid=6353 vsize=15151156 memory=7548 CPUtime=0.29 cores=0,2,4,6
/proc/6355/task/6366/stat : 6366 (java) S 6353 6353 2739 0 -1 1077944384 1679 0 0 0 29 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636663499424 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6367] ppid=6353 vsize=15151156 memory=7548 CPUtime=0.41 cores=0,2,4,6
/proc/6355/task/6367/stat : 6367 (java) S 6353 6353 2739 0 -1 1077944384 3564 0 0 0 41 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636662446592 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6368] ppid=6353 vsize=15151156 memory=3620 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6368/stat : 6368 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636661394528 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6369] ppid=6353 vsize=15151156 memory=2832 CPUtime=0.08 cores=0,2,4,6
/proc/6355/task/6369/stat : 6369 (java) S 6353 6353 2739 0 -1 1077944384 194 0 0 0 5 3 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636660341040 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 42 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
Current children cumulated CPU time: 323.41 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12362708 KiB

[startup+130.401 s]
/proc/loadavg: 6.84 7.81 7.20 6/234 6383
/proc/meminfo: memFree=204980/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
[pid=6355] ppid=6353 vsize=15151156 memory=12361256 CPUtime=324.2 cores=0,2,4,6
/proc/6355/stat : 6355 (java) S 6353 6353 2739 0 -1 1077944320 5161189 0 0 0 30312 2108 0 0 20 0 15 0 475400785 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140730520337264 140637200490231 0 0 0 16800975 18446744073709551615 0 0 17 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
/proc/6355/statm: 3787789 3090314 3502 1 0 3748889 0
[pid=6355/tid=6356] ppid=6353 vsize=15151156 memory=1452 CPUtime=36.83 cores=0,2,4,6
/proc/6355/task/6356/stat : 6356 (java) S 6353 6353 2739 0 -1 1077944384 16177 0 0 0 3674 9 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140637204728480 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6357] ppid=6353 vsize=15151156 memory=12361256 CPUtime=64.6 cores=0,2,4,6
/proc/6355/task/6357/stat : 6357 (java) S 6353 6353 2739 0 -1 1077944384 1665503 0 0 0 5892 568 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636792527632 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6358] ppid=6353 vsize=15151156 memory=14012 CPUtime=64.33 cores=0,2,4,6
/proc/6355/task/6358/stat : 6358 (java) S 6353 6353 2739 0 -1 1077944384 705734 0 0 0 5966 467 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636791475088 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6359] ppid=6353 vsize=15151156 memory=1452 CPUtime=64.25 cores=0,2,4,6
/proc/6355/task/6359/stat : 6359 (java) S 6353 6353 2739 0 -1 1077944384 1025929 0 0 0 5947 478 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636790422544 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6360] ppid=6353 vsize=15151156 memory=12361236 CPUtime=64.74 cores=0,2,4,6
/proc/6355/task/6360/stat : 6360 (java) S 6353 6353 2739 0 -1 1077944384 1661630 0 0 0 5903 571 0 0 20 0 15 0 475400786 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636789370000 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6361] ppid=6353 vsize=15151156 memory=12348216 CPUtime=28.22 cores=0,2,4,6
/proc/6355/task/6361/stat : 6361 (java) R 6353 6353 2739 0 -1 4202560 76714 0 0 0 2815 7 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636668760544 140637184947862 0 0 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6362] ppid=6353 vsize=15151156 memory=8112282956445269571 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6362/stat : 6362 (java) S 6353 6353 2739 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636667708384 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6363] ppid=6353 vsize=15151156 memory=12361256 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6363/stat : 6363 (java) S 6353 6353 2739 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 475400788 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636666655744 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6364] ppid=6353 vsize=15151156 memory=1716 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6364/stat : 6364 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636665604304 140637200508827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6365] ppid=6353 vsize=15151156 memory=1096 CPUtime=0.35 cores=0,2,4,6
/proc/6355/task/6365/stat : 6365 (java) S 6353 6353 2739 0 -1 1077944384 2790 0 0 0 35 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636664551968 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6366] ppid=6353 vsize=15151156 memory=6128 CPUtime=0.29 cores=0,2,4,6
/proc/6355/task/6366/stat : 6366 (java) S 6353 6353 2739 0 -1 1077944384 1679 0 0 0 29 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636663499424 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6367] ppid=6353 vsize=15151156 memory=8112282956445269571 CPUtime=0.41 cores=0,2,4,6
/proc/6355/task/6367/stat : 6367 (java) S 6353 6353 2739 0 -1 1077944384 3564 0 0 0 41 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636662446592 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6368] ppid=6353 vsize=15151156 memory=1412 CPUtime=0 cores=0,2,4,6
/proc/6355/task/6368/stat : 6368 (java) S 6353 6353 2739 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636661394528 140637200500437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
[pid=6355/tid=6369] ppid=6353 vsize=15151156 memory=3200 CPUtime=0.08 cores=0,2,4,6
/proc/6355/task/6369/stat : 6369 (java) S 6353 6353 2739 0 -1 1077944384 194 0 0 0 5 3 0 0 20 0 15 0 475400791 15514783744 3090314 33554432000 4194304 4196468 140730520354720 140636660341040 140637200501378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 42 0 0 6293624 6294260 37392384 140730520355823 140730520355994 140730520355994 140730520358863 0
Current children cumulated CPU time: 324.2 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12362708 KiB

[startup+130.802 s]
/proc/loadavg: 6.84 7.81 7.20 6/234 6383
/proc/meminfo: memFree=204980/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1452 KiB

[startup+131.002 s]*
/proc/loadavg: 6.84 7.81 7.20 6/221 6384
/proc/meminfo: memFree=6905368/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1452 KiB

[startup+131.11 s]
/proc/loadavg: 6.84 7.81 7.20 6/221 6384
/proc/meminfo: memFree=6905368/32770624 swapFree=67002128/67108860
[pid=6353] ppid=6350 vsize=113128 memory=1452 CPUtime=0 cores=0,2,4,6
/proc/6353/stat : 6353 (xcsp3-exec) S 6350 6353 2739 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 475400785 115843072 363 33554432000 4194304 5098028 140725944997712 140725944995816 139887737049724 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 39055360 140725945004923 140725945005165 140725945005165 140725945008074 0
/proc/6353/statm: 28282 363 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1452 KiB

Child status: 1
Real time (s): 131.182
CPU time (s): 324.997
CPU user time (s): 303.467
CPU system time (s): 21.5303
CPU usage (%): 247.744
Max. virtual memory (cumulated for all children) (KiB): 15264284
Max. memory (cumulated for all children) (KiB): 12362708

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 303.467
system time used= 21.5303
maximum resident set size= 12361556
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 5168213
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= 11104
involuntary context switches= 9400


# summary of solver processes directly reported to runsolver:
#   pid: 6353
#   total CPU time (s): 324.997
#   total CPU user time (s): 303.467
#   total CPU system time (s): 21.5303

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.860084 second user time and 1.3701 second system time

The end

Launcher Data

Begin job on node148 at 2019-09-20 17:12:35
IDJOB=4403960
IDBENCH=139742
IDSOLVER=2864
FILE ID=node148/4403960-1568992392
RUNJOBID= node148-1568990731-2770
PBS_JOBID= 21704650
Free space on /tmp= 21636 MiB

SOLVER NAME= choco-solver 2019-09-20
BENCH NAME= XCSP17/ChessboardColoration/ChessboardColoration-int-s2/ChessboardColoration-int-05-07.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-4403960-1568992392/watcher-4403960-1568992392 -o /tmp/evaluation-result-4403960-1568992392/solver-4403960-1568992392 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node148-1568990731-2770 --watchdog 2560  xcsp3-exec -dir HOME -tl 2400 -p 4 -ml 12000 -tdir HOME -seed 146805369 HOME/instance-4403960-1568992392.xml

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

MD5SUM BENCH= 91a6e92a2ae9197e0e5abb82e178125f
RANDOM SEED=146805369

node148.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.13
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.13
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.13
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.13
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:         8710200 kB
MemAvailable:   30589972 kB
Buffers:          116444 kB
Cached:         21948724 kB
SwapCached:         2796 kB
Active:         12265344 kB
Inactive:       11066680 kB
Active(anon):    1266760 kB
Inactive(anon):    47292 kB
Active(file):   10998584 kB
Inactive(file): 11019388 kB
Unevictable:      110964 kB
Mlocked:          110964 kB
SwapTotal:      67108860 kB
SwapFree:       67002128 kB
Dirty:             25896 kB
Writeback:             0 kB
AnonPages:       1376540 kB
Mapped:            64664 kB
Shmem:             38452 kB
Slab:             319332 kB
SReclaimable:     290260 kB
SUnreclaim:        29072 kB
KernelStack:        3936 kB
PageTables:         8072 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    3544848 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   1261568 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= 21608 MiB
End job on node148 at 2019-09-20 17:14:46