Trace number 4249714

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

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-10.xml
MD5SUM67f07639019614dd1d008c87f8253383
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark1
Best CPU time to get the best result obtained on this benchmark679.95697
Satisfiable
(Un)Satisfiability was proved
Number of variables133
Number of constraints25
Number of domains2
Minimum domain size23
Maximum domain size46
Distribution of domain sizes[{"size":23,"count":1},{"size":46,"count":132}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":110},{"degree":4,"count":22}]
Minimum constraint arity6
Maximum constraint arity132
Distribution of constraint arities[{"arity":6,"count":22},{"arity":23,"count":1},{"arity":132,"count":2}]
Number of extensional constraints22
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":22},{"type":"lex","count":1},{"type":"count","count":1},{"type":"cardinality","count":1}]
Optimization problemYES
Type of objectivemax VAR

Solver Data

0.00/0.00	c java -server -Xmx10000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4249714-1500695852.xml"  -tl '2400s' -p 8 -x 3
0.00/0.18	c [HOME/instance-4249714-1500695852.xml, -tl, 2400s, -p, 8, -x, 3]
0.00/0.24	c 8 solvers in parallel
0.00/0.31	c parse instance...
258.31/127.00	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
258.31/127.00		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
258.31/127.00		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
258.31/127.00		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1853)
258.31/127.00		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1809)
258.31/127.00		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
258.31/127.00		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
258.31/127.00		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
258.31/127.00		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
258.31/127.00		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
258.31/127.00		at org.xcsp.parser.XCallbacks$$Lambda$70/1900164709.accept(Unknown Source)
258.31/127.00		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
258.31/127.00		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
258.31/127.00		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
258.31/127.00		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
258.31/127.00		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
258.31/127.00		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
258.31/127.00		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
258.31/127.00		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
258.31/127.00		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:114)
258.31/127.00		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:101)
258.31/127.00		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
258.31/127.00	s UNKNOWN
258.31/127.00	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-4249714-1500695852/watcher-4249714-1500695852 -o /tmp/evaluation-result-4249714-1500695852/solver-4249714-1500695852 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node105-1500682495-14658 --watchdog 2560 ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 1757375598 HOME/instance-4249714-1500695852.xml 

pid=17440
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: 16.05 14.81 13.93 10/270 17443
/proc/meminfo: memFree=28971112/32770624 swapFree=5972/274280
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0

[startup+0.100097 s]
/proc/loadavg: 16.05 14.81 13.93 10/270 17443
/proc/meminfo: memFree=28971112/32770624 swapFree=5972/274280
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.200325 s]
/proc/loadavg: 16.05 14.81 13.93 10/270 17443
/proc/meminfo: memFree=28971112/32770624 swapFree=5972/274280
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.300307 s]
/proc/loadavg: 16.05 14.81 13.93 10/270 17443
/proc/meminfo: memFree=28971112/32770624 swapFree=5972/274280
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.700551 s]
/proc/loadavg: 16.05 14.81 13.93 10/270 17443
/proc/meminfo: memFree=28971112/32770624 swapFree=5972/274280
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.50077 s]
/proc/loadavg: 16.05 14.81 13.93 10/291 17464
/proc/meminfo: memFree=27992432/32770624 swapFree=5972/274172
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
[pid=17444] ppid=17443 vsize=13267208 CPUtime=3.96 cores=1,3,5,7,9,11,13,15
/proc/17444/stat : 17444 (java) S 17443 17443 14626 0 -1 1077944320 14186 0 0 0 255 141 0 0 20 0 20 0 4854833 13585620992 288494 33554432000 4194304 4196468 140732743396208 140732743378752 140605408378615 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
/proc/17444/statm: 3316802 288494 3221 1 0 3304035 0
[pid=17444/tid=17445] ppid=17443 vsize=13267208 CPUtime=1.24 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17445/stat : 17445 (java) S 17443 17443 14626 0 -1 1077944384 7374 0 0 0 106 18 0 0 20 0 20 0 4854833 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605412616608 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17447] ppid=17443 vsize=13267208 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17447/stat : 17447 (java) R 17443 17443 14626 0 -1 4202560 107 0 0 0 7 14 0 0 20 0 20 0 4854834 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605360999056 140605390004702 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17448] ppid=17443 vsize=13267208 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17448/stat : 17448 (java) R 17443 17443 14626 0 -1 4202560 132 0 0 0 7 14 0 0 20 0 20 0 4854834 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605359946144 140605387575286 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17449] ppid=17443 vsize=13267208 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17449/stat : 17449 (java) R 17443 17443 14626 0 -1 4202560 162 0 0 0 7 15 0 0 20 0 20 0 4854834 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605358893656 140605390004563 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17450] ppid=17443 vsize=13267208 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17450/stat : 17450 (java) R 17443 17443 14626 0 -1 4202560 104 0 0 0 7 15 0 0 20 0 20 0 4854834 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605357840656 140605387574406 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17451] ppid=17443 vsize=13267208 CPUtime=0.2 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17451/stat : 17451 (java) R 17443 17443 14626 0 -1 4202560 138 0 0 0 6 14 0 0 20 0 20 0 4854834 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605356789080 140605393406498 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17452] ppid=17443 vsize=13267208 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17452/stat : 17452 (java) R 17443 17443 14626 0 -1 4202560 111 0 0 0 7 15 0 0 20 0 20 0 4854834 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605355736080 140605401485171 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17453] ppid=17443 vsize=13267208 CPUtime=0.23 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17453/stat : 17453 (java) R 17443 17443 14626 0 -1 4202560 166 0 0 0 8 15 0 0 20 0 20 0 4854834 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605354683280 140605393406498 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17454] ppid=17443 vsize=13267208 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17454/stat : 17454 (java) R 17443 17443 14626 0 -1 4202560 104 0 0 0 7 14 0 0 20 0 20 0 4854834 13585620992 288494 33554432000 4194304 4196468 140732743396208 140605353630680 140605401475451 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17455] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17455/stat : 17455 (java) S 17443 17443 14626 0 -1 1077944384 209 0 0 0 0 0 0 0 20 0 20 0 4854836 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604870570912 140605408388821 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17456] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17456/stat : 17456 (java) S 17443 17443 14626 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 4854837 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604869518432 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17457] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17457/stat : 17457 (java) S 17443 17443 14626 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 20 0 4854837 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604868465536 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17458] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17458/stat : 17458 (java) S 17443 17443 14626 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4854841 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604867413840 140605408397211 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17459] ppid=17443 vsize=13267208 CPUtime=0.25 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17459/stat : 17459 (java) S 17443 17443 14626 0 -1 1077944384 1066 0 0 0 25 0 0 0 20 0 20 0 4854841 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604866362224 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17460] ppid=17443 vsize=13267208 CPUtime=0.2 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17460/stat : 17460 (java) S 17443 17443 14626 0 -1 1077944384 551 0 0 0 20 0 0 0 20 0 20 0 4854841 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604865309424 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17461] ppid=17443 vsize=13267208 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17461/stat : 17461 (java) S 17443 17443 14626 0 -1 1077944384 1293 0 0 0 21 0 0 0 20 0 20 0 4854841 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604864256624 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17462] ppid=17443 vsize=13267208 CPUtime=0.23 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17462/stat : 17462 (java) S 17443 17443 14626 0 -1 1077944384 1373 0 0 0 23 0 0 0 20 0 20 0 4854841 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604863203824 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17463] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17463/stat : 17463 (java) S 17443 17443 14626 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4854841 13585620992 288494 33554432000 4194304 4196468 140732743396208 140604862151264 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17464] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17464/stat : 17464 (java) S 17443 17443 14626 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4854842 13585620992 289006 33554432000 4194304 4196468 140732743396208 140604861098544 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
Current children cumulated CPU time (s) 3.96
Current children cumulated vsize (KiB) 13276720

[startup+3.10086 s]
/proc/loadavg: 15.49 14.72 13.91 10/291 17464
/proc/meminfo: memFree=27559952/32770624 swapFree=5972/274172
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
[pid=17444] ppid=17443 vsize=13267208 CPUtime=6.16 cores=1,3,5,7,9,11,13,15
/proc/17444/stat : 17444 (java) S 17443 17443 14626 0 -1 1077944320 16235 0 0 0 441 175 0 0 20 0 20 0 4854833 13585620992 383387 33554432000 4194304 4196468 140732743396208 140732743378752 140605408378615 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
/proc/17444/statm: 3316802 383387 3221 1 0 3304035 0
[pid=17444/tid=17445] ppid=17443 vsize=13267208 CPUtime=2.75 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17445/stat : 17445 (java) R 17443 17443 14626 0 -1 4202560 8030 0 0 0 252 23 0 0 20 0 20 0 4854833 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605412616416 140605035033111 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17447] ppid=17443 vsize=13267208 CPUtime=0.3 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17447/stat : 17447 (java) S 17443 17443 14626 0 -1 1077944384 238 0 0 0 12 18 0 0 20 0 20 0 4854834 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605360999056 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17448] ppid=17443 vsize=13267208 CPUtime=0.3 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17448/stat : 17448 (java) S 17443 17443 14626 0 -1 1077944384 257 0 0 0 12 18 0 0 20 0 20 0 4854834 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605359946256 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17449] ppid=17443 vsize=13267208 CPUtime=0.29 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17449/stat : 17449 (java) S 17443 17443 14626 0 -1 1077944384 278 0 0 0 11 18 0 0 20 0 20 0 4854834 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605358893456 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17450] ppid=17443 vsize=13267208 CPUtime=0.31 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17450/stat : 17450 (java) S 17443 17443 14626 0 -1 1077944384 233 0 0 0 12 19 0 0 20 0 20 0 4854834 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605357840656 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17451] ppid=17443 vsize=13267208 CPUtime=0.28 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17451/stat : 17451 (java) S 17443 17443 14626 0 -1 1077944384 261 0 0 0 11 17 0 0 20 0 20 0 4854834 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605356788880 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17452] ppid=17443 vsize=13267208 CPUtime=0.3 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17452/stat : 17452 (java) S 17443 17443 14626 0 -1 1077944384 229 0 0 0 12 18 0 0 20 0 20 0 4854834 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605355736080 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17453] ppid=17443 vsize=13267208 CPUtime=0.31 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17453/stat : 17453 (java) S 17443 17443 14626 0 -1 1077944384 292 0 0 0 12 19 0 0 20 0 20 0 4854834 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605354683280 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17454] ppid=17443 vsize=13267208 CPUtime=0.3 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17454/stat : 17454 (java) S 17443 17443 14626 0 -1 1077944384 229 0 0 0 12 18 0 0 20 0 20 0 4854834 13585620992 383387 33554432000 4194304 4196468 140732743396208 140605353630480 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17455] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17455/stat : 17455 (java) S 17443 17443 14626 0 -1 1077944384 588 0 0 0 0 0 0 0 20 0 20 0 4854836 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604870572400 140605408389762 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17456] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17456/stat : 17456 (java) S 17443 17443 14626 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 4854837 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604869518432 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17457] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17457/stat : 17457 (java) S 17443 17443 14626 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 20 0 4854837 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604868465536 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17458] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17458/stat : 17458 (java) S 17443 17443 14626 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4854841 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604867413840 140605408397211 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17459] ppid=17443 vsize=13267208 CPUtime=0.25 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17459/stat : 17459 (java) S 17443 17443 14626 0 -1 1077944384 1066 0 0 0 25 0 0 0 20 0 20 0 4854841 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604866362224 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17460] ppid=17443 vsize=13267208 CPUtime=0.2 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17460/stat : 17460 (java) S 17443 17443 14626 0 -1 1077944384 551 0 0 0 20 0 0 0 20 0 20 0 4854841 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604865309424 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17461] ppid=17443 vsize=13267208 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17461/stat : 17461 (java) S 17443 17443 14626 0 -1 1077944384 1293 0 0 0 21 0 0 0 20 0 20 0 4854841 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604864256624 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17462] ppid=17443 vsize=13267208 CPUtime=0.23 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17462/stat : 17462 (java) S 17443 17443 14626 0 -1 1077944384 1373 0 0 0 23 0 0 0 20 0 20 0 4854841 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604863203824 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17463] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17463/stat : 17463 (java) S 17443 17443 14626 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4854841 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604862151264 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17464] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17464/stat : 17464 (java) S 17443 17443 14626 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 20 0 4854842 13585620992 383387 33554432000 4194304 4196468 140732743396208 140604861098544 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
Current children cumulated CPU time (s) 6.16
Current children cumulated vsize (KiB) 13276720

[startup+6.30111 s]
/proc/loadavg: 15.49 14.72 13.91 10/291 17464
/proc/meminfo: memFree=26883912/32770624 swapFree=5972/274192
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
[pid=17444] ppid=17443 vsize=13267208 CPUtime=10.58 cores=1,3,5,7,9,11,13,15
/proc/17444/stat : 17444 (java) S 17443 17443 14626 0 -1 1077944320 21547 0 0 0 799 259 0 0 20 0 20 0 4854833 13585620992 700346 33554432000 4194304 4196468 140732743396208 140732743378752 140605408378615 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
/proc/17444/statm: 3316802 700346 3221 1 0 3304035 0
[pid=17444/tid=17445] ppid=17443 vsize=13267208 CPUtime=5.75 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17445/stat : 17445 (java) R 17443 17443 14626 0 -1 4202560 9108 0 0 0 536 39 0 0 20 0 20 0 4854833 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605412616080 140605035421660 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17447] ppid=17443 vsize=13267208 CPUtime=0.49 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17447/stat : 17447 (java) S 17443 17443 14626 0 -1 1077944384 585 0 0 0 22 27 0 0 20 0 20 0 4854834 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605360999056 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17448] ppid=17443 vsize=13267208 CPUtime=0.46 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17448/stat : 17448 (java) S 17443 17443 14626 0 -1 1077944384 596 0 0 0 20 26 0 0 20 0 20 0 4854834 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605359946256 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17449] ppid=17443 vsize=13267208 CPUtime=0.46 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17449/stat : 17449 (java) S 17443 17443 14626 0 -1 1077944384 609 0 0 0 20 26 0 0 20 0 20 0 4854834 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605358893456 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17450] ppid=17443 vsize=13267208 CPUtime=0.49 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17450/stat : 17450 (java) S 17443 17443 14626 0 -1 1077944384 1003 0 0 0 21 28 0 0 20 0 20 0 4854834 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605357840656 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17451] ppid=17443 vsize=13267208 CPUtime=0.46 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17451/stat : 17451 (java) S 17443 17443 14626 0 -1 1077944384 587 0 0 0 20 26 0 0 20 0 20 0 4854834 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605356788880 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17452] ppid=17443 vsize=13267208 CPUtime=0.48 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17452/stat : 17452 (java) S 17443 17443 14626 0 -1 1077944384 653 0 0 0 22 26 0 0 20 0 20 0 4854834 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605355736080 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17453] ppid=17443 vsize=13267208 CPUtime=0.48 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17453/stat : 17453 (java) S 17443 17443 14626 0 -1 1077944384 600 0 0 0 21 27 0 0 20 0 20 0 4854834 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605354683280 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17454] ppid=17443 vsize=13267208 CPUtime=0.49 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17454/stat : 17454 (java) S 17443 17443 14626 0 -1 1077944384 538 0 0 0 22 27 0 0 20 0 20 0 4854834 13585620992 700346 33554432000 4194304 4196468 140732743396208 140605353630480 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17455] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17455/stat : 17455 (java) S 17443 17443 14626 0 -1 1077944384 1348 0 0 0 0 0 0 0 20 0 20 0 4854836 13585620992 700346 33554432000 4194304 4196468 140732743396208 140604870572400 140605408389762 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17456] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17456/stat : 17456 (java) S 17443 17443 14626 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 4854837 13585620992 700346 33554432000 4194304 4196468 140732743396208 140604869518432 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17457] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17457/stat : 17457 (java) S 17443 17443 14626 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 20 0 4854837 13585620992 700346 33554432000 4194304 4196468 140732743396208 140604868465536 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17458] ppid=17443 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17458/stat : 17458 (java) S 17443 17443 14626 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4854841 13585620992 700346 33554432000 4194304 4196468 140732743396208 140604867413840 140605408397211 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0

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

/proc/17444/task/17464/stat : 17464 (java) S 17443 17443 14626 0 -1 1077944384 565 0 0 0 4 4 0 0 20 0 20 0 4854842 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604861098544 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
Current children cumulated CPU time (s) 246.19
Current children cumulated vsize (KiB) 13278768

[startup+125.801 s]
/proc/loadavg: 11.09 13.22 13.45 17/292 17468
/proc/meminfo: memFree=17911896/32770624 swapFree=5972/274324
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
[pid=17444] ppid=17443 vsize=13269256 CPUtime=252.39 cores=1,3,5,7,9,11,13,15
/proc/17444/stat : 17444 (java) S 17443 17443 14626 0 -1 1077944320 590795 0 0 0 22856 2383 0 0 20 0 20 0 4854833 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140732743378752 140605408378615 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
/proc/17444/statm: 3317314 2620815 3249 1 0 3304547 0
[pid=17444/tid=17445] ppid=17443 vsize=13269256 CPUtime=104.74 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17445/stat : 17445 (java) S 17443 17443 14626 0 -1 1077944384 71198 0 0 0 10424 50 0 0 20 0 20 0 4854833 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605412616832 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17447] ppid=17443 vsize=13269256 CPUtime=18.06 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17447/stat : 17447 (java) R 17443 17443 14626 0 -1 4202560 54036 0 0 0 1507 299 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605360999176 140605401006823 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17448] ppid=17443 vsize=13269256 CPUtime=18.01 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17448/stat : 17448 (java) R 17443 17443 14626 0 -1 4202560 46355 0 0 0 1495 306 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605359946376 140605401006823 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17449] ppid=17443 vsize=13269256 CPUtime=17.92 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17449/stat : 17449 (java) R 17443 17443 14626 0 -1 4202560 66975 0 0 0 1482 310 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605358893576 140605394137432 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17450] ppid=17443 vsize=13269256 CPUtime=17.61 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17450/stat : 17450 (java) S 17443 17443 14626 0 -1 1077944384 35849 0 0 0 1481 280 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605357840464 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17451] ppid=17443 vsize=13269256 CPUtime=18.04 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17451/stat : 17451 (java) R 17443 17443 14626 0 -1 4202560 154486 0 0 0 1519 285 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605356789080 140605401481587 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17452] ppid=17443 vsize=13269256 CPUtime=17.74 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17452/stat : 17452 (java) R 17443 17443 14626 0 -1 4202560 28817 0 0 0 1492 282 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605355736200 140605401006823 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17453] ppid=17443 vsize=13269256 CPUtime=17.94 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17453/stat : 17453 (java) R 17443 17443 14626 0 -1 4202560 45598 0 0 0 1516 278 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605354683400 140605401006823 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17454] ppid=17443 vsize=13269256 CPUtime=18.01 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17454/stat : 17454 (java) R 17443 17443 14626 0 -1 4202560 50713 0 0 0 1523 278 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605353630600 140605401006823 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17455] ppid=17443 vsize=13269256 CPUtime=2.72 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17455/stat : 17455 (java) S 17443 17443 14626 0 -1 1077944384 24343 0 0 0 268 4 0 0 20 0 20 0 4854836 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604870570960 140605408388821 0 0 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17456] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17456/stat : 17456 (java) S 17443 17443 14626 0 -1 1077944384 38 0 0 0 0 0 0 0 20 0 20 0 4854837 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604869518432 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17457] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17457/stat : 17457 (java) S 17443 17443 14626 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 20 0 4854837 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604868465536 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17458] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17458/stat : 17458 (java) S 17443 17443 14626 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604867413840 140605408397211 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17459] ppid=17443 vsize=13269256 CPUtime=0.38 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17459/stat : 17459 (java) S 17443 17443 14626 0 -1 1077944384 2665 0 0 0 38 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604866362224 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17460] ppid=17443 vsize=13269256 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17460/stat : 17460 (java) S 17443 17443 14626 0 -1 1077944384 2547 0 0 0 33 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604865309424 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17461] ppid=17443 vsize=13269256 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17461/stat : 17461 (java) S 17443 17443 14626 0 -1 1077944384 2178 0 0 0 33 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604864256624 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17462] ppid=17443 vsize=13269256 CPUtime=0.32 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17462/stat : 17462 (java) S 17443 17443 14626 0 -1 1077944384 3128 0 0 0 32 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604863203824 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17463] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17463/stat : 17463 (java) S 17443 17443 14626 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604862151264 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17464] ppid=17443 vsize=13269256 CPUtime=0.08 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17464/stat : 17464 (java) S 17443 17443 14626 0 -1 1077944384 566 0 0 0 4 4 0 0 20 0 20 0 4854842 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604861098544 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
Current children cumulated CPU time (s) 252.39
Current children cumulated vsize (KiB) 13278768

[startup+126.601 s]
/proc/loadavg: 11.09 13.22 13.45 17/292 17468
/proc/meminfo: memFree=17911896/32770624 swapFree=5972/274324
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
[pid=17444] ppid=17443 vsize=13269256 CPUtime=257.91 cores=1,3,5,7,9,11,13,15
/proc/17444/stat : 17444 (java) S 17443 17443 14626 0 -1 1077944320 632636 0 0 0 23402 2389 0 0 20 0 20 0 4854833 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140732743378752 140605408378615 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
/proc/17444/statm: 3317314 2620815 3249 1 0 3304547 0
[pid=17444/tid=17445] ppid=17443 vsize=13269256 CPUtime=104.74 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17445/stat : 17445 (java) S 17443 17443 14626 0 -1 1077944384 71198 0 0 0 10424 50 0 0 20 0 20 0 4854833 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605412616832 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17447] ppid=17443 vsize=13269256 CPUtime=18.74 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17447/stat : 17447 (java) S 17443 17443 14626 0 -1 1077944384 54036 0 0 0 1574 300 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605360999056 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17448] ppid=17443 vsize=13269256 CPUtime=18.69 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17448/stat : 17448 (java) S 17443 17443 14626 0 -1 1077944384 46355 0 0 0 1562 307 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605359946256 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17449] ppid=17443 vsize=13269256 CPUtime=18.59 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17449/stat : 17449 (java) S 17443 17443 14626 0 -1 1077944384 66975 0 0 0 1549 310 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605358893456 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17450] ppid=17443 vsize=13269256 CPUtime=18.28 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17450/stat : 17450 (java) S 17443 17443 14626 0 -1 1077944384 35849 0 0 0 1548 280 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605357840656 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17451] ppid=17443 vsize=13269256 CPUtime=18.74 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17451/stat : 17451 (java) S 17443 17443 14626 0 -1 1077944384 196114 0 0 0 1586 288 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605356788880 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17452] ppid=17443 vsize=13269256 CPUtime=18.41 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17452/stat : 17452 (java) S 17443 17443 14626 0 -1 1077944384 28817 0 0 0 1558 283 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605355736080 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17453] ppid=17443 vsize=13269256 CPUtime=18.63 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17453/stat : 17453 (java) S 17443 17443 14626 0 -1 1077944384 45598 0 0 0 1585 278 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605354683280 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17454] ppid=17443 vsize=13269256 CPUtime=18.68 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17454/stat : 17454 (java) S 17443 17443 14626 0 -1 1077944384 50713 0 0 0 1590 278 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605353630480 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17455] ppid=17443 vsize=13269256 CPUtime=2.83 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17455/stat : 17455 (java) R 17443 17443 14626 0 -1 4202560 24556 0 0 0 279 4 0 0 20 0 20 0 4854836 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604870570848 140605392836235 0 0 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17456] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17456/stat : 17456 (java) S 17443 17443 14626 0 -1 1077944384 38 0 0 0 0 0 0 0 20 0 20 0 4854837 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604869518432 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17457] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17457/stat : 17457 (java) S 17443 17443 14626 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 20 0 4854837 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604868465536 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17458] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17458/stat : 17458 (java) S 17443 17443 14626 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604867413840 140605408397211 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17459] ppid=17443 vsize=13269256 CPUtime=0.38 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17459/stat : 17459 (java) S 17443 17443 14626 0 -1 1077944384 2665 0 0 0 38 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604866362224 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17460] ppid=17443 vsize=13269256 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17460/stat : 17460 (java) S 17443 17443 14626 0 -1 1077944384 2547 0 0 0 33 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604865309424 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17461] ppid=17443 vsize=13269256 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17461/stat : 17461 (java) S 17443 17443 14626 0 -1 1077944384 2178 0 0 0 33 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604864256624 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17462] ppid=17443 vsize=13269256 CPUtime=0.32 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17462/stat : 17462 (java) S 17443 17443 14626 0 -1 1077944384 3128 0 0 0 32 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604863203824 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17463] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17463/stat : 17463 (java) S 17443 17443 14626 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604862151264 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17464] ppid=17443 vsize=13269256 CPUtime=0.08 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17464/stat : 17464 (java) S 17443 17443 14626 0 -1 1077944384 566 0 0 0 4 4 0 0 20 0 20 0 4854842 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604861098544 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
Current children cumulated CPU time (s) 257.91
Current children cumulated vsize (KiB) 13278768

[startup+127.001 s]
/proc/loadavg: 11.48 13.26 13.46 10/292 17468
/proc/meminfo: memFree=17911896/32770624 swapFree=5972/274324
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
[pid=17444] ppid=17443 vsize=13269256 CPUtime=258.31 cores=1,3,5,7,9,11,13,15
/proc/17444/stat : 17444 (java) S 17443 17443 14626 0 -1 1077944320 632661 0 0 0 23442 2389 0 0 20 0 20 0 4854833 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140732743378752 140605408378615 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
/proc/17444/statm: 3317314 2620815 3249 1 0 3304547 0
[pid=17444/tid=17445] ppid=17443 vsize=13269256 CPUtime=104.74 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17445/stat : 17445 (java) S 17443 17443 14626 0 -1 1077944384 71198 0 0 0 10424 50 0 0 20 0 20 0 4854833 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605412616832 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17447] ppid=17443 vsize=13269256 CPUtime=18.74 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17447/stat : 17447 (java) S 17443 17443 14626 0 -1 1077944384 54036 0 0 0 1574 300 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605360999056 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17448] ppid=17443 vsize=13269256 CPUtime=18.69 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17448/stat : 17448 (java) S 17443 17443 14626 0 -1 1077944384 46355 0 0 0 1562 307 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605359946256 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17449] ppid=17443 vsize=13269256 CPUtime=18.59 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17449/stat : 17449 (java) S 17443 17443 14626 0 -1 1077944384 66975 0 0 0 1549 310 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605358893456 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17450] ppid=17443 vsize=13269256 CPUtime=18.28 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17450/stat : 17450 (java) S 17443 17443 14626 0 -1 1077944384 35849 0 0 0 1548 280 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605357840656 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17451] ppid=17443 vsize=13269256 CPUtime=18.74 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17451/stat : 17451 (java) S 17443 17443 14626 0 -1 1077944384 196114 0 0 0 1586 288 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605356788880 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17452] ppid=17443 vsize=13269256 CPUtime=18.41 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17452/stat : 17452 (java) S 17443 17443 14626 0 -1 1077944384 28817 0 0 0 1558 283 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605355736080 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17453] ppid=17443 vsize=13269256 CPUtime=18.63 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17453/stat : 17453 (java) S 17443 17443 14626 0 -1 1077944384 45598 0 0 0 1585 278 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605354683280 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17454] ppid=17443 vsize=13269256 CPUtime=18.68 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17454/stat : 17454 (java) S 17443 17443 14626 0 -1 1077944384 50713 0 0 0 1590 278 0 0 20 0 20 0 4854834 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140605353630480 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17455] ppid=17443 vsize=13269256 CPUtime=3.23 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17455/stat : 17455 (java) R 17443 17443 14626 0 -1 4202560 24581 0 0 0 319 4 0 0 20 0 20 0 4854836 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604870570848 140605386748795 0 0 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17456] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17456/stat : 17456 (java) S 17443 17443 14626 0 -1 1077944384 38 0 0 0 0 0 0 0 20 0 20 0 4854837 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604869518432 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17457] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17457/stat : 17457 (java) S 17443 17443 14626 0 -1 1077944384 64 0 0 0 0 0 0 0 20 0 20 0 4854837 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604868465536 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17458] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17458/stat : 17458 (java) S 17443 17443 14626 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604867413840 140605408397211 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17459] ppid=17443 vsize=13269256 CPUtime=0.38 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17459/stat : 17459 (java) S 17443 17443 14626 0 -1 1077944384 2665 0 0 0 38 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604866362224 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17460] ppid=17443 vsize=13269256 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17460/stat : 17460 (java) S 17443 17443 14626 0 -1 1077944384 2547 0 0 0 33 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604865309424 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17461] ppid=17443 vsize=13269256 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17461/stat : 17461 (java) S 17443 17443 14626 0 -1 1077944384 2178 0 0 0 33 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604864256624 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17462] ppid=17443 vsize=13269256 CPUtime=0.32 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17462/stat : 17462 (java) S 17443 17443 14626 0 -1 1077944384 3128 0 0 0 32 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604863203824 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17463] ppid=17443 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17463/stat : 17463 (java) S 17443 17443 14626 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4854841 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604862151264 140605408388821 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
[pid=17444/tid=17464] ppid=17443 vsize=13269256 CPUtime=0.08 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17464/stat : 17464 (java) S 17443 17443 14626 0 -1 1077944384 566 0 0 0 4 4 0 0 20 0 20 0 4854842 13587718144 2620815 33554432000 4194304 4196468 140732743396208 140604861098544 140605408389762 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 38645760 140732743402684 140732743402860 140732743402860 140732743405519 0
Current children cumulated CPU time (s) 258.31
Current children cumulated vsize (KiB) 13278768

[startup+127.101 s]
/proc/loadavg: 11.48 13.26 13.46 10/292 17468
/proc/meminfo: memFree=17911896/32770624 swapFree=5972/274324
[pid=17443] ppid=17440 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/17443/stat : 17443 (xcsp3-exec) S 17440 17443 14626 0 -1 4202496 517 0 0 0 0 0 0 0 20 0 1 0 4854833 9740288 345 33554432000 4194304 5098028 140731007630176 140731007628280 139701314544252 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 34795520 140731007636622 140731007636832 140731007636832 140731007639531 0
/proc/17443/statm: 2378 345 289 221 0 87 0
[pid=17444] ppid=17443 vsize=0 CPUtime=258.41 cores=1,3,5,7,9,11,13,15
/proc/17444/stat : 17444 (java) Z 17443 17443 14626 0 -1 4227084 635724 0 0 0 23442 2399 0 0 20 0 2 0 4854833 0 0 33554432000 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 0 0 0 0 0 0 0 0
/proc/17444/statm: 0 0 0 0 0 0 0
[pid=17444/tid=17447] ppid=17443 vsize=0 CPUtime=18.82 cores=1,3,5,7,9,11,13,15
/proc/17444/task/17447/stat : 17447 (java) R 17443 17443 14626 0 -1 4203588 54036 0 0 0 1574 308 0 0 20 0 2 0 4854834 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) 258.41
Current children cumulated vsize (KiB) 9512

Child status: 1
Real time (s): 127.12
CPU time (s): 258.441
CPU user time (s): 234.431
CPU system time (s): 24.0106
CPU usage (%): 203.304
Max. virtual memory (cumulated for all children) (KiB): 13278768

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 234.431
system time used= 24.0106
maximum resident set size= 10483628
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 636252
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= 25148
involuntary context switches= 18310

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.22653 second user time and 1.72145 second system time

The end

Launcher Data

Begin job on node105 at 2017-07-22 05:57:33
IDJOB=4249714
IDBENCH=138054
IDSOLVER=2626
FILE ID=node105/4249714-1500695852
RUNJOBID= node105-1500682495-14658
PBS_JOBID= 20623326
Free space on /tmp= 61912 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-10.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-4249714-1500695852/watcher-4249714-1500695852 -o /tmp/evaluation-result-4249714-1500695852/solver-4249714-1500695852 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node105-1500682495-14658 --watchdog 2560  ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 1757375598 HOME/instance-4249714-1500695852.xml

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

MD5SUM BENCH= 67f07639019614dd1d008c87f8253383
RANDOM SEED=1757375598

node105.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.33
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		: 2668.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.33
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		: 2668.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.33
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		: 1600.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		: 2668.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.33
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	: 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		: 2668.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.33
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		: 2267.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		: 2668.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.33
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		: 1600.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		: 2668.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.33
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		: 2533.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		: 2668.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.33
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		: 2667.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:        28971224 kB
MemAvailable:   29241704 kB
Buffers:          121508 kB
Cached:           427920 kB
SwapCached:            0 kB
Active:          3077372 kB
Inactive:         282908 kB
Active(anon):    2813700 kB
Inactive(anon):     8628 kB
Active(file):     263672 kB
Inactive(file):   274280 kB
Unevictable:        5972 kB
Mlocked:            6004 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             97676 kB
Writeback:             0 kB
AnonPages:       2816920 kB
Mapped:            43192 kB
Shmem:              8852 kB
Slab:             130752 kB
SReclaimable:      96728 kB
SUnreclaim:        34024 kB
KernelStack:        4640 kB
PageTables:        10744 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    4553120 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2691072 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      138624 kB
DirectMap2M:    33406976 kB

Free space on /tmp at the end= 61904 MiB
End job on node105 at 2017-07-22 05:59:41