Trace number 4245360

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
R1: choco-solver 5a (2017-07-05)? 429.702 219.223

General information on the benchmark

NameQueensKnights/QueensKnights-m1-s1/
QueensKnights-080-05-mul.xml
MD5SUMcc508950e1103ff719d16ca71225257a
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 benchmark243.529
Satisfiable
(Un)Satisfiability was proved
Number of variables85
Number of constraints3570
Number of domains2
Minimum domain size80
Maximum domain size6400
Distribution of domain sizes[{"size":80,"count":80},{"size":6400,"count":5}]
Minimum variable degree84
Maximum variable degree84
Distribution of variable degrees[{"degree":84,"count":85}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":3570}]
Number of extensional constraints0
Number of intensional constraints3570
Distribution of constraint types[{"type":"intension","count":3570}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.00	c java -server -Xmx10000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4245360-1500685929.xml"  -tl '2400s' -p 8 -x 3
0.00/0.20	c [HOME/instance-4245360-1500685929.xml, -tl, 2400s, -p, 8, -x, 3]
0.00/0.25	c 8 solvers in parallel
0.00/0.31	c parse instance...
400.41/215.38	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
400.41/215.38		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
400.41/215.38		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
400.41/215.38		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1853)
400.41/215.38		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1809)
400.41/215.38		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
400.41/215.38		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
400.41/215.38		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
400.41/215.38		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
400.41/215.38		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
400.41/215.38		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
400.41/215.38		at org.xcsp.parser.XCallbacks$$Lambda$52/446073433.accept(Unknown Source)
400.41/215.38		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
400.41/215.38		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
400.41/215.38		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
400.41/215.38		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
400.41/215.38		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
429.59/219.17		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
429.59/219.17		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
429.59/219.17		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
429.59/219.17		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:114)
429.59/219.17		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:101)
429.59/219.17		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
429.59/219.17	s UNKNOWN
429.59/219.17	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver Copyright (C) 2010-2013 Olivier ROUSSEL

This is runsolver version 3.3.7 (svn: 2553)

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.

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4245360-1500685929/watcher-4245360-1500685929 -o /tmp/evaluation-result-4245360-1500685929/solver-4245360-1500685929 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node145-1500682809-15228 --watchdog 2560 ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 198853246 HOME/instance-4245360-1500685929.xml 

pid=23188
running on 8 cores: 1,3,5,7,9,11,13,15

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


[startup+0 s]
/proc/loadavg: 14.37 15.72 15.22 12/273 23191
/proc/meminfo: memFree=31784500/32770624 swapFree=5808/92708
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0

[startup+0.100063 s]
/proc/loadavg: 14.37 15.72 15.22 12/273 23191
/proc/meminfo: memFree=31784500/32770624 swapFree=5808/92708
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.20026 s]
/proc/loadavg: 14.37 15.72 15.22 12/273 23191
/proc/meminfo: memFree=31784500/32770624 swapFree=5808/92708
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.300243 s]
/proc/loadavg: 14.37 15.72 15.22 12/273 23191
/proc/meminfo: memFree=31784500/32770624 swapFree=5808/92708
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.70024 s]
/proc/loadavg: 14.37 15.72 15.22 12/273 23191
/proc/meminfo: memFree=31784500/32770624 swapFree=5808/92708
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.5008 s]
/proc/loadavg: 14.37 15.72 15.22 14/294 23212
/proc/meminfo: memFree=31656668/32770624 swapFree=5808/92748
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
[pid=23192] ppid=23191 vsize=13269256 CPUtime=3.26 cores=1,3,5,7,9,11,13,15
/proc/23192/stat : 23192 (java) S 23191 23191 15196 0 -1 1077944320 16308 0 0 0 318 8 0 0 20 0 20 0 3857983 13587718144 44688 33554432000 4194304 4196468 140731824552000 140731824534544 139973966749431 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
/proc/23192/statm: 3317314 44688 3208 1 0 3304547 0
[pid=23192/tid=23193] ppid=23191 vsize=13269256 CPUtime=1.47 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23193/stat : 23193 (java) R 23191 23191 15196 0 -1 4202560 7181 0 0 0 142 5 0 0 20 0 20 0 3857984 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973970987032 139973966761366 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23195] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23195/stat : 23195 (java) S 23191 23191 15196 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 3857985 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973925510288 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23196] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23196/stat : 23196 (java) S 23191 23191 15196 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3857985 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973564648464 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23197] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23197/stat : 23197 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857985 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973563595664 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23198] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23198/stat : 23198 (java) S 23191 23191 15196 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 3857985 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973562542864 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23199] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23199/stat : 23199 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857985 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973561490064 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23200] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23200/stat : 23200 (java) S 23191 23191 15196 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 3857985 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973560437264 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23201] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23201/stat : 23201 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857985 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973559384464 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23202] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23202/stat : 23202 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857985 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973558331664 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23203] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23203/stat : 23203 (java) S 23191 23191 15196 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 3857987 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973026392944 139973966760578 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23204] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23204/stat : 23204 (java) S 23191 23191 15196 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973025338912 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23205] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23205/stat : 23205 (java) S 23191 23191 15196 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973024286064 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23206] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23206/stat : 23206 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973023234384 139973966768027 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23207] ppid=23191 vsize=13269256 CPUtime=0.49 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23207/stat : 23207 (java) S 23191 23191 15196 0 -1 1077944384 2249 0 0 0 49 0 0 0 20 0 20 0 3857992 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973022181744 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23208] ppid=23191 vsize=13269256 CPUtime=0.41 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23208/stat : 23208 (java) S 23191 23191 15196 0 -1 1077944384 1513 0 0 0 41 0 0 0 20 0 20 0 3857992 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973021128944 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23209] ppid=23191 vsize=13269256 CPUtime=0.43 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23209/stat : 23209 (java) S 23191 23191 15196 0 -1 1077944384 1544 0 0 0 43 0 0 0 20 0 20 0 3857992 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973020076144 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23210] ppid=23191 vsize=13269256 CPUtime=0.4 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23210/stat : 23210 (java) S 23191 23191 15196 0 -1 1077944384 2508 0 0 0 40 0 0 0 20 0 20 0 3857992 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973019019216 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23211] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23211/stat : 23211 (java) S 23191 23191 15196 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973017971808 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23212] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23212/stat : 23212 (java) S 23191 23191 15196 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3857993 13587718144 44688 33554432000 4194304 4196468 140731824552000 139973016919088 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
Current children cumulated CPU time (s) 3.26
Current children cumulated vsize (KiB) 13278768

[startup+3.10082 s]
/proc/loadavg: 14.37 15.72 15.22 7/286 23298
/proc/meminfo: memFree=31646552/32770624 swapFree=5808/92700
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
[pid=23192] ppid=23191 vsize=13269256 CPUtime=6.73 cores=1,3,5,7,9,11,13,15
/proc/23192/stat : 23192 (java) S 23191 23191 15196 0 -1 1077944320 20441 0 0 0 543 130 0 0 20 0 20 0 3857983 13587718144 98264 33554432000 4194304 4196468 140731824552000 140731824534544 139973966749431 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
/proc/23192/statm: 3317314 98264 3243 1 0 3304547 0
[pid=23192/tid=23193] ppid=23191 vsize=13269256 CPUtime=2.84 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23193/stat : 23193 (java) R 23191 23191 15196 0 -1 4202560 7754 0 0 0 279 5 0 0 20 0 20 0 3857984 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973970984584 139973607672611 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23195] ppid=23191 vsize=13269256 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23195/stat : 23195 (java) S 23191 23191 15196 0 -1 1077944384 155 0 0 0 7 15 0 0 20 0 20 0 3857985 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973925510288 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23196] ppid=23191 vsize=13269256 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23196/stat : 23196 (java) S 23191 23191 15196 0 -1 1077944384 418 0 0 0 7 15 0 0 20 0 20 0 3857985 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973564648464 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23197] ppid=23191 vsize=13269256 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23197/stat : 23197 (java) S 23191 23191 15196 0 -1 1077944384 177 0 0 0 8 14 0 0 20 0 20 0 3857985 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973563595664 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23198] ppid=23191 vsize=13269256 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23198/stat : 23198 (java) S 23191 23191 15196 0 -1 1077944384 146 0 0 0 7 15 0 0 20 0 20 0 3857985 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973562542864 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23199] ppid=23191 vsize=13269256 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23199/stat : 23199 (java) S 23191 23191 15196 0 -1 1077944384 264 0 0 0 7 15 0 0 20 0 20 0 3857985 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973561490064 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23200] ppid=23191 vsize=13269256 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23200/stat : 23200 (java) S 23191 23191 15196 0 -1 1077944384 176 0 0 0 7 15 0 0 20 0 20 0 3857985 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973560437264 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23201] ppid=23191 vsize=13269256 CPUtime=0.23 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23201/stat : 23201 (java) S 23191 23191 15196 0 -1 1077944384 187 0 0 0 8 15 0 0 20 0 20 0 3857985 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973559384464 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23202] ppid=23191 vsize=13269256 CPUtime=0.23 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23202/stat : 23202 (java) S 23191 23191 15196 0 -1 1077944384 137 0 0 0 8 15 0 0 20 0 20 0 3857985 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973558331664 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23203] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23203/stat : 23203 (java) S 23191 23191 15196 0 -1 1077944384 277 0 0 0 0 0 0 0 20 0 20 0 3857987 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973026392944 139973966760578 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23204] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23204/stat : 23204 (java) S 23191 23191 15196 0 -1 1077944384 60 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973025338912 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23205] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23205/stat : 23205 (java) S 23191 23191 15196 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973024286064 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23206] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23206/stat : 23206 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973023234384 139973966768027 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23207] ppid=23191 vsize=13269256 CPUtime=0.55 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23207/stat : 23207 (java) S 23191 23191 15196 0 -1 1077944384 2326 0 0 0 55 0 0 0 20 0 20 0 3857992 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973022181744 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23208] ppid=23191 vsize=13269256 CPUtime=0.46 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23208/stat : 23208 (java) S 23191 23191 15196 0 -1 1077944384 1888 0 0 0 46 0 0 0 20 0 20 0 3857992 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973021128944 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23209] ppid=23191 vsize=13269256 CPUtime=0.51 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23209/stat : 23209 (java) S 23191 23191 15196 0 -1 1077944384 1725 0 0 0 51 0 0 0 20 0 20 0 3857992 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973020076144 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23210] ppid=23191 vsize=13269256 CPUtime=0.48 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23210/stat : 23210 (java) S 23191 23191 15196 0 -1 1077944384 3452 0 0 0 48 0 0 0 20 0 20 0 3857992 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973019023344 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23211] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23211/stat : 23211 (java) S 23191 23191 15196 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973017971808 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23212] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23212/stat : 23212 (java) S 23191 23191 15196 0 -1 1077944384 11 0 0 0 0 0 0 0 20 0 20 0 3857993 13587718144 98264 33554432000 4194304 4196468 140731824552000 139973016919088 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
Current children cumulated CPU time (s) 6.73
Current children cumulated vsize (KiB) 13278768

[startup+6.30101 s]
/proc/loadavg: 13.38 15.49 15.15 14/294 23306
/proc/meminfo: memFree=30933248/32770624 swapFree=5808/92804
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
[pid=23192] ppid=23191 vsize=13269256 CPUtime=16.14 cores=1,3,5,7,9,11,13,15
/proc/23192/stat : 23192 (java) S 23191 23191 15196 0 -1 1077944320 30862 0 0 0 1346 268 0 0 20 0 20 0 3857983 13587718144 192112 33554432000 4194304 4196468 140731824552000 140731824534544 139973966749431 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
/proc/23192/statm: 3317314 192112 3262 1 0 3304547 0
[pid=23192/tid=23193] ppid=23191 vsize=13269256 CPUtime=5.12 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23193/stat : 23193 (java) R 23191 23191 15196 0 -1 4202560 7922 0 0 0 506 6 0 0 20 0 20 0 3857984 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973970984008 139973607672560 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23195] ppid=23191 vsize=13269256 CPUtime=1.08 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23195/stat : 23195 (java) S 23191 23191 15196 0 -1 1077944384 1094 0 0 0 76 32 0 0 20 0 20 0 3857985 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973925510288 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23196] ppid=23191 vsize=13269256 CPUtime=1.08 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23196/stat : 23196 (java) S 23191 23191 15196 0 -1 1077944384 1448 0 0 0 77 31 0 0 20 0 20 0 3857985 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973564648464 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23197] ppid=23191 vsize=13269256 CPUtime=1.08 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23197/stat : 23197 (java) S 23191 23191 15196 0 -1 1077944384 1281 0 0 0 77 31 0 0 20 0 20 0 3857985 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973563595664 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23198] ppid=23191 vsize=13269256 CPUtime=1.08 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23198/stat : 23198 (java) S 23191 23191 15196 0 -1 1077944384 1149 0 0 0 76 32 0 0 20 0 20 0 3857985 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973562542864 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23199] ppid=23191 vsize=13269256 CPUtime=1.08 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23199/stat : 23199 (java) S 23191 23191 15196 0 -1 1077944384 1381 0 0 0 76 32 0 0 20 0 20 0 3857985 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973561490064 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23200] ppid=23191 vsize=13269256 CPUtime=1.08 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23200/stat : 23200 (java) S 23191 23191 15196 0 -1 1077944384 1315 0 0 0 76 32 0 0 20 0 20 0 3857985 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973560437264 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23201] ppid=23191 vsize=13269256 CPUtime=1.07 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23201/stat : 23201 (java) S 23191 23191 15196 0 -1 1077944384 1365 0 0 0 76 31 0 0 20 0 20 0 3857985 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973559384464 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23202] ppid=23191 vsize=13269256 CPUtime=1.08 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23202/stat : 23202 (java) S 23191 23191 15196 0 -1 1077944384 1072 0 0 0 76 32 0 0 20 0 20 0 3857985 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973558331664 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23203] ppid=23191 vsize=13269256 CPUtime=0.04 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23203/stat : 23203 (java) S 23191 23191 15196 0 -1 1077944384 1700 0 0 0 4 0 0 0 20 0 20 0 3857987 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973026392944 139973966760578 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23204] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23204/stat : 23204 (java) S 23191 23191 15196 0 -1 1077944384 60 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973025338912 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23205] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23205/stat : 23205 (java) S 23191 23191 15196 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973024286064 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23206] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23206/stat : 23206 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 192112 33554432000 4194304 4196468 140731824552000 139973023234384 139973966768027 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0

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

/proc/23192/task/23212/stat : 23212 (java) S 23191 23191 15196 0 -1 1077944384 700 0 0 0 5 9 0 0 20 0 20 0 3857993 13587718144 2560347 33554432000 4194304 4196468 140731824552000 139973016919088 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
Current children cumulated CPU time (s) 396.49
Current children cumulated vsize (KiB) 13278768

[startup+216.401 s]
/proc/loadavg: 8.35 11.25 13.48 17/293 24150
/proc/meminfo: memFree=20638972/32770624 swapFree=5808/97560
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
[pid=23192] ppid=23191 vsize=13269256 CPUtime=408.56 cores=1,3,5,7,9,11,13,15
/proc/23192/stat : 23192 (java) S 23191 23191 15196 0 -1 1077944320 149123 0 0 0 36433 4423 0 0 20 0 20 0 3857983 13587718144 2560461 33554432000 4194304 4196468 140731824552000 140731824534544 139973966749431 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
/proc/23192/statm: 3317314 2560461 3275 1 0 3304547 0
[pid=23192/tid=23193] ppid=23191 vsize=13269256 CPUtime=186.98 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23193/stat : 23193 (java) S 23191 23191 15196 0 -1 1077944384 11288 0 0 0 18688 10 0 0 20 0 20 0 3857984 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973970988336 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23195] ppid=23191 vsize=13269256 CPUtime=27.2 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23195/stat : 23195 (java) R 23191 23191 15196 0 -1 4202560 10137 0 0 0 2143 577 0 0 20 0 20 0 3857985 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973925510184 139973959377639 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23196] ppid=23191 vsize=13269256 CPUtime=26.96 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23196/stat : 23196 (java) R 23191 23191 15196 0 -1 4202560 16301 0 0 0 2170 526 0 0 20 0 20 0 3857985 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973564648664 139973951447206 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23197] ppid=23191 vsize=13269256 CPUtime=27.17 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23197/stat : 23197 (java) R 23191 23191 15196 0 -1 4202560 12289 0 0 0 2169 548 0 0 20 0 20 0 3857985 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973563595560 139973959377639 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23198] ppid=23191 vsize=13269256 CPUtime=26.79 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23198/stat : 23198 (java) R 23191 23191 15196 0 -1 4202560 11151 0 0 0 2114 565 0 0 20 0 20 0 3857985 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973562542760 139973959377639 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23199] ppid=23191 vsize=13269256 CPUtime=27.24 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23199/stat : 23199 (java) R 23191 23191 15196 0 -1 4202560 11877 0 0 0 2198 526 0 0 20 0 20 0 3857985 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973561489960 139973959377639 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23200] ppid=23191 vsize=13269256 CPUtime=27.29 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23200/stat : 23200 (java) R 23191 23191 15196 0 -1 4202560 13871 0 0 0 2160 569 0 0 20 0 20 0 3857985 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973560437160 139973959377639 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23201] ppid=23191 vsize=13269256 CPUtime=27.34 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23201/stat : 23201 (java) R 23191 23191 15196 0 -1 4202560 18201 0 0 0 2159 575 0 0 20 0 20 0 3857985 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973559384360 139973950132464 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23202] ppid=23191 vsize=13269256 CPUtime=26.92 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23202/stat : 23202 (java) R 23191 23191 15196 0 -1 4202560 10335 0 0 0 2183 509 0 0 20 0 20 0 3857985 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973558331248 139973959377639 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23203] ppid=23191 vsize=13269256 CPUtime=1.71 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23203/stat : 23203 (java) S 23191 23191 15196 0 -1 1077944384 17137 0 0 0 169 2 0 0 20 0 20 0 3857987 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973026391264 139973966759637 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23204] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23204/stat : 23204 (java) S 23191 23191 15196 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973025338976 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23205] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23205/stat : 23205 (java) S 23191 23191 15196 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973024286080 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23206] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23206/stat : 23206 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973023234384 139973966768027 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23207] ppid=23191 vsize=13269256 CPUtime=0.75 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23207/stat : 23207 (java) S 23191 23191 15196 0 -1 1077944384 3086 0 0 0 75 0 0 0 20 0 20 0 3857992 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973022181744 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23208] ppid=23191 vsize=13269256 CPUtime=0.73 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23208/stat : 23208 (java) S 23191 23191 15196 0 -1 1077944384 4250 0 0 0 72 1 0 0 20 0 20 0 3857992 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973021128944 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23209] ppid=23191 vsize=13269256 CPUtime=0.66 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23209/stat : 23209 (java) S 23191 23191 15196 0 -1 1077944384 2551 0 0 0 65 1 0 0 20 0 20 0 3857992 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973020076144 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23210] ppid=23191 vsize=13269256 CPUtime=0.56 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23210/stat : 23210 (java) S 23191 23191 15196 0 -1 1077944384 4597 0 0 0 55 1 0 0 20 0 20 0 3857992 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973019022912 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23211] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23211/stat : 23211 (java) S 23191 23191 15196 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973017971808 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23212] ppid=23191 vsize=13269256 CPUtime=0.14 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23212/stat : 23212 (java) S 23191 23191 15196 0 -1 1077944384 700 0 0 0 5 9 0 0 20 0 20 0 3857993 13587718144 2560461 33554432000 4194304 4196468 140731824552000 139973016919088 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
Current children cumulated CPU time (s) 408.56
Current children cumulated vsize (KiB) 13278768

[startup+218.001 s]
/proc/loadavg: 8.35 11.25 13.48 17/293 24150
/proc/meminfo: memFree=20638972/32770624 swapFree=5808/97560
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
[pid=23192] ppid=23191 vsize=13269256 CPUtime=421.05 cores=1,3,5,7,9,11,13,15
/proc/23192/stat : 23192 (java) S 23191 23191 15196 0 -1 1077944320 149276 0 0 0 37678 4427 0 0 20 0 20 0 3857983 13587718144 2560465 33554432000 4194304 4196468 140731824552000 140731824534544 139973966749431 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
/proc/23192/statm: 3317314 2560465 3275 1 0 3304547 0
[pid=23192/tid=23193] ppid=23191 vsize=13269256 CPUtime=186.98 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23193/stat : 23193 (java) S 23191 23191 15196 0 -1 1077944384 11288 0 0 0 18688 10 0 0 20 0 20 0 3857984 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973970988336 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23195] ppid=23191 vsize=13269256 CPUtime=28.75 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23195/stat : 23195 (java) R 23191 23191 15196 0 -1 4202560 10240 0 0 0 2298 577 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973925510408 139973959377639 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23196] ppid=23191 vsize=13269256 CPUtime=28.55 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23196/stat : 23196 (java) R 23191 23191 15196 0 -1 4202560 16311 0 0 0 2329 526 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973564648584 139973951207008 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23197] ppid=23191 vsize=13269256 CPUtime=28.71 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23197/stat : 23197 (java) R 23191 23191 15196 0 -1 4202560 12289 0 0 0 2323 548 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973563595784 139973959377639 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23198] ppid=23191 vsize=13269256 CPUtime=28.35 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23198/stat : 23198 (java) R 23191 23191 15196 0 -1 4202560 11152 0 0 0 2270 565 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973562542984 139973959377639 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23199] ppid=23191 vsize=13269256 CPUtime=28.8 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23199/stat : 23199 (java) R 23191 23191 15196 0 -1 4202560 11877 0 0 0 2353 527 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973561490184 139973959377639 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23200] ppid=23191 vsize=13269256 CPUtime=28.85 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23200/stat : 23200 (java) R 23191 23191 15196 0 -1 4202560 13900 0 0 0 2315 570 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973560437384 139973951449312 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23201] ppid=23191 vsize=13269256 CPUtime=28.88 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23201/stat : 23201 (java) R 23191 23191 15196 0 -1 4202560 18201 0 0 0 2313 575 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973559384584 139973959377639 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23202] ppid=23191 vsize=13269256 CPUtime=28.48 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23202/stat : 23202 (java) R 23191 23191 15196 0 -1 4202560 10345 0 0 0 2338 510 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973558331784 139973959377639 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23203] ppid=23191 vsize=13269256 CPUtime=1.72 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23203/stat : 23203 (java) S 23191 23191 15196 0 -1 1077944384 17137 0 0 0 170 2 0 0 20 0 20 0 3857987 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973026391488 139973966759637 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23204] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23204/stat : 23204 (java) S 23191 23191 15196 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973025338976 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23205] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23205/stat : 23205 (java) S 23191 23191 15196 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973024286080 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23206] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23206/stat : 23206 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973023234384 139973966768027 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23207] ppid=23191 vsize=13269256 CPUtime=0.75 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23207/stat : 23207 (java) S 23191 23191 15196 0 -1 1077944384 3086 0 0 0 75 0 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973022181744 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23208] ppid=23191 vsize=13269256 CPUtime=0.73 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23208/stat : 23208 (java) S 23191 23191 15196 0 -1 1077944384 4250 0 0 0 72 1 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973021128944 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23209] ppid=23191 vsize=13269256 CPUtime=0.66 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23209/stat : 23209 (java) S 23191 23191 15196 0 -1 1077944384 2551 0 0 0 65 1 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973020076144 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23210] ppid=23191 vsize=13269256 CPUtime=0.56 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23210/stat : 23210 (java) S 23191 23191 15196 0 -1 1077944384 4597 0 0 0 55 1 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973019022912 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23211] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23211/stat : 23211 (java) S 23191 23191 15196 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973017971808 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23212] ppid=23191 vsize=13269256 CPUtime=0.14 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23212/stat : 23212 (java) S 23191 23191 15196 0 -1 1077944384 700 0 0 0 5 9 0 0 20 0 20 0 3857993 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973016919088 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
Current children cumulated CPU time (s) 421.05
Current children cumulated vsize (KiB) 13278768

[startup+218.801 s]
/proc/loadavg: 9.04 11.35 13.50 17/293 24150
/proc/meminfo: memFree=20624512/32770624 swapFree=5808/97564
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
[pid=23192] ppid=23191 vsize=13269256 CPUtime=427.41 cores=1,3,5,7,9,11,13,15
/proc/23192/stat : 23192 (java) S 23191 23191 15196 0 -1 1077944320 149281 0 0 0 38311 4430 0 0 20 0 20 0 3857983 13587718144 2560465 33554432000 4194304 4196468 140731824552000 140731824534544 139973966749431 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
/proc/23192/statm: 3317314 2560465 3275 1 0 3304547 0
[pid=23192/tid=23193] ppid=23191 vsize=13269256 CPUtime=186.98 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23193/stat : 23193 (java) S 23191 23191 15196 0 -1 1077944384 11288 0 0 0 18688 10 0 0 20 0 20 0 3857984 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973970988336 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23195] ppid=23191 vsize=13269256 CPUtime=29.55 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23195/stat : 23195 (java) R 23191 23191 15196 0 -1 4202560 10240 0 0 0 2377 578 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973925510408 139973959852424 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23196] ppid=23191 vsize=13269256 CPUtime=29.35 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23196/stat : 23196 (java) R 23191 23191 15196 0 -1 4202560 16313 0 0 0 2409 526 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973564648584 139973959377639 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23197] ppid=23191 vsize=13269256 CPUtime=29.5 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23197/stat : 23197 (java) R 23191 23191 15196 0 -1 4202560 12290 0 0 0 2401 549 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973563595784 139973950132466 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23198] ppid=23191 vsize=13269256 CPUtime=29.15 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23198/stat : 23198 (java) R 23191 23191 15196 0 -1 4202560 11152 0 0 0 2349 566 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973562542984 139973959853028 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23199] ppid=23191 vsize=13269256 CPUtime=29.6 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23199/stat : 23199 (java) R 23191 23191 15196 0 -1 4202560 11877 0 0 0 2433 527 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973561490184 139973959377639 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23200] ppid=23191 vsize=13269256 CPUtime=29.65 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23200/stat : 23200 (java) R 23191 23191 15196 0 -1 4202560 13902 0 0 0 2395 570 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973560437384 139973959377639 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23201] ppid=23191 vsize=13269256 CPUtime=29.68 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23201/stat : 23201 (java) R 23191 23191 15196 0 -1 4202560 18201 0 0 0 2392 576 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973559384584 139973959377639 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23202] ppid=23191 vsize=13269256 CPUtime=29.28 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23202/stat : 23202 (java) R 23191 23191 15196 0 -1 4202560 10345 0 0 0 2417 511 0 0 20 0 20 0 3857985 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973558331784 139973959377639 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23203] ppid=23191 vsize=13269256 CPUtime=1.72 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23203/stat : 23203 (java) S 23191 23191 15196 0 -1 1077944384 17137 0 0 0 170 2 0 0 20 0 20 0 3857987 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973026391488 139973966759637 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23204] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23204/stat : 23204 (java) S 23191 23191 15196 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973025338976 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23205] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23205/stat : 23205 (java) S 23191 23191 15196 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 3857988 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973024286080 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23206] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23206/stat : 23206 (java) S 23191 23191 15196 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973023234384 139973966768027 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23207] ppid=23191 vsize=13269256 CPUtime=0.75 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23207/stat : 23207 (java) S 23191 23191 15196 0 -1 1077944384 3086 0 0 0 75 0 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973022181744 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23208] ppid=23191 vsize=13269256 CPUtime=0.73 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23208/stat : 23208 (java) S 23191 23191 15196 0 -1 1077944384 4250 0 0 0 72 1 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973021128944 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23209] ppid=23191 vsize=13269256 CPUtime=0.66 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23209/stat : 23209 (java) S 23191 23191 15196 0 -1 1077944384 2551 0 0 0 65 1 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973020076144 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23210] ppid=23191 vsize=13269256 CPUtime=0.56 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23210/stat : 23210 (java) S 23191 23191 15196 0 -1 1077944384 4597 0 0 0 55 1 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973019022912 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23211] ppid=23191 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23211/stat : 23211 (java) S 23191 23191 15196 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3857992 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973017971808 139973966759637 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
[pid=23192/tid=23212] ppid=23191 vsize=13269256 CPUtime=0.14 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23212/stat : 23212 (java) S 23191 23191 15196 0 -1 1077944384 700 0 0 0 5 9 0 0 20 0 20 0 3857993 13587718144 2560465 33554432000 4194304 4196468 140731824552000 139973016919088 139973966760578 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23330816 140731824555196 140731824555372 140731824555372 140731824558031 0
Current children cumulated CPU time (s) 427.41
Current children cumulated vsize (KiB) 13278768

[startup+219.21 s]
/proc/loadavg: 9.04 11.35 13.50 17/293 24150
/proc/meminfo: memFree=20624512/32770624 swapFree=5808/97564
[pid=23191] ppid=23188 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/23191/stat : 23191 (xcsp3-exec) S 23188 23191 15196 0 -1 4202496 516 0 0 0 0 0 0 0 20 0 1 0 3857983 9740288 345 33554432000 4194304 5098028 140732247645328 140732247643432 140499901780604 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 20766720 140732247647375 140732247647584 140732247647584 140732247650283 0
/proc/23191/statm: 2378 345 289 221 0 87 0
[pid=23192] ppid=23191 vsize=0 CPUtime=429.68 cores=1,3,5,7,9,11,13,15
/proc/23192/stat : 23192 (java) Z 23191 23191 15196 0 -1 4227084 149640 0 0 0 38532 4436 0 0 20 0 2 0 3857983 0 0 33554432000 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 0 0 0 0 0 0 0 0
/proc/23192/statm: 0 0 0 0 0 0 0
[pid=23192/tid=23196] ppid=23191 vsize=0 CPUtime=29.64 cores=1,3,5,7,9,11,13,15
/proc/23192/task/23196/stat : 23196 (java) R 23191 23191 15196 0 -1 4203588 16313 0 0 0 2435 529 0 0 20 0 2 0 3857985 0 0 33554432000 0 0 0 0 0 0 4 0 16800975 18446744073709551615 0 0 -1 7 0 0 0 0 0 0 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 429.68
Current children cumulated vsize (KiB) 9512

Child status: 1
Real time (s): 219.223
CPU time (s): 429.702
CPU user time (s): 385.327
CPU system time (s): 44.3749
CPU usage (%): 196.011
Max. virtual memory (cumulated for all children) (KiB): 13278768

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 385.327
system time used= 44.3749
maximum resident set size= 10242392
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 150167
page faults= 0
swaps= 0
block input operations= 0
block output operations= 360
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 10928
involuntary context switches= 29362

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.77822 second user time and 2.69427 second system time

The end

Launcher Data

Begin job on node145 at 2017-07-22 03:12:09
IDJOB=4245360
IDBENCH=120895
IDSOLVER=2626
FILE ID=node145/4245360-1500685929
RUNJOBID= node145-1500682809-15228
PBS_JOBID= 20623333
Free space on /tmp= 61856 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/QueensKnights/QueensKnights-m1-s1/QueensKnights-080-05-mul.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 10000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4245360-1500685929/watcher-4245360-1500685929 -o /tmp/evaluation-result-4245360-1500685929/solver-4245360-1500685929 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node145-1500682809-15228 --watchdog 2560  ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 198853246 HOME/instance-4245360-1500685929.xml

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

MD5SUM BENCH= cc508950e1103ff719d16ca71225257a
RANDOM SEED=198853246

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

/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	: 8
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.43
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		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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		: 1600.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
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.43
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		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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		: 2133.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
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.43
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		: 2133.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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		: 1733.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
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.43
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		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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:

processor	: 8
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
core id		: 0
cpu cores	: 4
apicid		: 1
initial apicid	: 1
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.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 9
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1733.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 0
cpu cores	: 4
apicid		: 17
initial apicid	: 17
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	: 10
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2667.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
core id		: 1
cpu cores	: 4
apicid		: 3
initial apicid	: 3
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.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 11
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1733.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 1
cpu cores	: 4
apicid		: 19
initial apicid	: 19
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	: 12
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2267.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
core id		: 2
cpu cores	: 4
apicid		: 5
initial apicid	: 5
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.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 13
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2133.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 2
cpu cores	: 4
apicid		: 21
initial apicid	: 21
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	: 14
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
core id		: 3
cpu cores	: 4
apicid		: 7
initial apicid	: 7
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.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 15
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 3
cpu cores	: 4
apicid		: 23
initial apicid	: 23
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:        31784580 kB
MemAvailable:   31824392 kB
Buffers:          125552 kB
Cached:           186812 kB
SwapCached:            0 kB
Active:           377504 kB
Inactive:         160776 kB
Active(anon):     169392 kB
Inactive(anon):    68068 kB
Active(file):     208112 kB
Inactive(file):    92708 kB
Unevictable:        5808 kB
Mlocked:            5808 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              8284 kB
Writeback:             0 kB
AnonPages:        216656 kB
Mapped:            42860 kB
Shmem:              8852 kB
Slab:             143956 kB
SReclaimable:     109652 kB
SUnreclaim:        34304 kB
KernelStack:        4608 kB
PageTables:         5612 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1261560 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    118784 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      136576 kB
DirectMap2M:    33409024 kB

Free space on /tmp at the end= 61848 MiB
End job on node145 at 2017-07-22 03:15:48