Trace number 4269022

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
choco-solver 4.0.5 seq (2017-08-09)? 147.26801 100.099

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-31.xml
MD5SUM67c04303171609b86978ceecc7dcafe8
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark0
Best CPU time to get the best result obtained on this benchmark2400.04
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 -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4269022-1502845699.xml"  -tl '2520s' -p 1 -x 0
0.12/0.14	c [HOME/instance-4269022-1502845699.xml, -tl, 2520s, -p, 1, -x, 0]
0.12/0.19	c simple solver
0.34/0.26	c parse instance...
147.17/100.01	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
147.17/100.01		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
147.17/100.01		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
147.17/100.01		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1857)
147.17/100.01		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
147.17/100.01		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
147.17/100.01		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
147.17/100.01		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
147.17/100.01		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
147.17/100.01		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
147.17/100.01		at org.xcsp.parser.XCallbacks$$Lambda$70/1900164709.accept(Unknown Source)
147.17/100.01		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
147.17/100.01		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
147.17/100.01		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
147.17/100.01		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
147.17/100.01		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
147.17/100.01		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
147.17/100.01		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
147.17/100.01		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
147.17/100.01		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
147.17/100.01		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
147.17/100.01		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
147.17/100.01	s UNKNOWN
147.17/100.01	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (13072 MiB free)
  memory of node 1: 16384 MiB (15554 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4269022-1502845699/watcher-4269022-1502845699 -o /tmp/evaluation-result-4269022-1502845699/solver-4269022-1502845699 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node112-1502839811-17222 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 1911555435 HOME/instance-4269022-1502845699.xml 

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

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
solver pid=17752, runsolver pid=17749
Current StackSize limit: 8192 KiB


[startup+0.100143 s]*
/proc/loadavg: 2.10 2.12 2.09 3/217 17768
/proc/meminfo: memFree=29280084/32770624 swapFree=67108860/67108860
[pid=17752] ppid=17749 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0
[pid=17754] ppid=17752 vsize=13978596 memory=28140 CPUtime=0.12 cores=1,3,5,7
/proc/17754/stat : 17754 (java) S 17752 17752 17190 0 -1 1077944320 5393 0 0 0 11 1 0 0 20 0 15 0 117657712 14314082304 7035 33554432000 4194304 4196468 140724718215488 140724718198032 139832371822327 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
/proc/17754/statm: 3494649 7035 2870 1 0 3482966 0
[pid=17754/tid=17755] ppid=17752 vsize=13978596 memory=8514701219881125282 CPUtime=0.09 cores=1,3,5,7
/proc/17754/task/17755/stat : 17755 (java) R 17752 17752 17190 0 -1 4202560 3410 0 0 0 8 1 0 0 20 0 15 0 117657712 14314082304 7100 33554432000 4194304 4196468 140724718215488 139832376055600 139832339431255 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17756] ppid=17752 vsize=13978596 memory=3472468342910829776 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17756/stat : 17756 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657713 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831967673232 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17757] ppid=17752 vsize=13978596 memory=140214015678080 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17757/stat : 17757 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657713 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831966620432 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17758] ppid=17752 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17758/stat : 17758 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657713 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831965568144 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17759] ppid=17752 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17759/stat : 17759 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657713 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831964515344 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17760] ppid=17752 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17760/stat : 17760 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657714 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831845808240 139832371833474 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17761] ppid=17752 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17761/stat : 17761 (java) S 17752 17752 17190 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117657715 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831844754208 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17762] ppid=17752 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17762/stat : 17762 (java) S 17752 17752 17190 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117657715 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831843701872 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17763] ppid=17752 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17763/stat : 17763 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831842650192 139832371840923 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17764] ppid=17752 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17764/stat : 17764 (java) S 17752 17752 17190 0 -1 1077944384 418 0 0 0 0 0 0 0 20 0 15 0 117657717 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831841598064 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17765] ppid=17752 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17765/stat : 17765 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831840545264 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17766] ppid=17752 vsize=13978596 memory=140214015678080 CPUtime=0.01 cores=1,3,5,7
/proc/17754/task/17766/stat : 17766 (java) R 17752 17752 17190 0 -1 4202560 322 0 0 0 1 0 0 0 20 0 15 0 117657717 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831839492976 139832350778665 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17767] ppid=17752 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17767/stat : 17767 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657718 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831838440416 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17768] ppid=17752 vsize=13978596 memory=140214015678080 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17768/stat : 17768 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657718 14314082304 7100 33554432000 4194304 4196468 140724718215488 139831837387184 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 29524 KiB

[startup+0.212461 s]*
/proc/loadavg: 2.10 2.12 2.09 3/217 17768
/proc/meminfo: memFree=29192384/32770624 swapFree=67108860/67108860
[pid=17752] ppid=17749 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0
[pid=17754] ppid=17752 vsize=13982852 memory=40708 CPUtime=0.34 cores=1,3,5,7
/proc/17754/stat : 17754 (java) S 17752 17752 17190 0 -1 1077944320 8289 0 0 0 32 2 0 0 20 0 15 0 117657712 14318440448 10177 33554432000 4194304 4196468 140724718215488 140724718198032 139832371822327 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
/proc/17754/statm: 3495713 10177 3061 1 0 3482966 0
[pid=17754/tid=17755] ppid=17752 vsize=13982852 memory=5853961137533323680 CPUtime=0.19 cores=1,3,5,7
/proc/17754/task/17755/stat : 17755 (java) R 17752 17752 17190 0 -1 4202560 5406 0 0 0 18 1 0 0 20 0 15 0 117657712 14318440448 10177 33554432000 4194304 4196468 140724718215488 139832376032064 139832355902814 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17756] ppid=17752 vsize=13982852 memory=3472468342910829776 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17756/stat : 17756 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657713 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831967673232 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17757] ppid=17752 vsize=13982852 memory=140214015678080 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17757/stat : 17757 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657713 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831966620432 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17758] ppid=17752 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17758/stat : 17758 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657713 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831965568144 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17759] ppid=17752 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17759/stat : 17759 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657713 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831964515344 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17760] ppid=17752 vsize=13982852 memory=140214015678080 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17760/stat : 17760 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657714 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831845808240 139832371833474 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17761] ppid=17752 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17761/stat : 17761 (java) S 17752 17752 17190 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117657715 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831844754208 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17762] ppid=17752 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17762/stat : 17762 (java) S 17752 17752 17190 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117657715 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831843701872 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17763] ppid=17752 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17763/stat : 17763 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831842650192 139832371840923 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17764] ppid=17752 vsize=13982852 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/17754/task/17764/stat : 17764 (java) S 17752 17752 17190 0 -1 1077944384 701 0 0 0 3 0 0 0 20 0 15 0 117657717 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831841598064 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17765] ppid=17752 vsize=13982852 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/17754/task/17765/stat : 17765 (java) S 17752 17752 17190 0 -1 1077944384 141 0 0 0 1 0 0 0 20 0 15 0 117657717 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831840545264 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17766] ppid=17752 vsize=13982852 memory=140214015678080 CPUtime=0.08 cores=1,3,5,7
/proc/17754/task/17766/stat : 17766 (java) S 17752 17752 17190 0 -1 1077944384 737 0 0 0 8 0 0 0 20 0 15 0 117657717 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831839492976 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17767] ppid=17752 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17767/stat : 17767 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657718 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831838440416 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17768] ppid=17752 vsize=13982852 memory=140214015678080 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17768/stat : 17768 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657718 14318440448 10177 33554432000 4194304 4196468 140724718215488 139831837387184 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 42092 KiB

[startup+0.312495 s]*
/proc/loadavg: 2.10 2.12 2.09 4/217 17768
/proc/meminfo: memFree=29095580/32770624 swapFree=67108860/67108860
[pid=17752] ppid=17749 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0
[pid=17754] ppid=17752 vsize=13982852 memory=47272 CPUtime=0.52 cores=1,3,5,7
/proc/17754/stat : 17754 (java) S 17752 17752 17190 0 -1 1077944320 9006 0 0 0 49 3 0 0 20 0 15 0 117657712 14318440448 11818 33554432000 4194304 4196468 140724718215488 140724718198032 139832371822327 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
/proc/17754/statm: 3495713 11818 3089 1 0 3482966 0
[pid=17754/tid=17755] ppid=17752 vsize=13982852 memory=8514701219880862117 CPUtime=0.3 cores=1,3,5,7
/proc/17754/task/17755/stat : 17755 (java) R 17752 17752 17190 0 -1 4202560 5921 0 0 0 28 2 0 0 20 0 15 0 117657712 14318440448 11818 33554432000 4194304 4196468 140724718215488 139832376059200 139832371844253 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17756] ppid=17752 vsize=13982852 memory=3472468342910829776 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17756/stat : 17756 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657713 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831967673232 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17757] ppid=17752 vsize=13982852 memory=140214015678080 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17757/stat : 17757 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657713 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831966620432 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17758] ppid=17752 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17758/stat : 17758 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657713 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831965568144 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17759] ppid=17752 vsize=13982852 memory=140213905139743 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17759/stat : 17759 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657713 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831964515344 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17760] ppid=17752 vsize=13982852 memory=280427810258720 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17760/stat : 17760 (java) S 17752 17752 17190 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117657714 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831845808240 139832371833474 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17761] ppid=17752 vsize=13982852 memory=140213905116687 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17761/stat : 17761 (java) S 17752 17752 17190 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117657715 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831844754208 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17762] ppid=17752 vsize=13982852 memory=280427920803936 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17762/stat : 17762 (java) S 17752 17752 17190 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117657715 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831843701872 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17763] ppid=17752 vsize=13982852 memory=140213905121295 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17763/stat : 17763 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831842650192 139832371840923 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17764] ppid=17752 vsize=13982852 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/17754/task/17764/stat : 17764 (java) R 17752 17752 17190 0 -1 4202560 711 0 0 0 4 0 0 0 20 0 15 0 117657717 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831841598064 139832371843674 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17765] ppid=17752 vsize=13982852 memory=-1 CPUtime=0.04 cores=1,3,5,7
/proc/17754/task/17765/stat : 17765 (java) R 17752 17752 17190 0 -1 4202560 283 0 0 0 4 0 0 0 20 0 15 0 117657717 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831840545264 139832355233222 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17766] ppid=17752 vsize=13982852 memory=0 CPUtime=0.11 cores=1,3,5,7
/proc/17754/task/17766/stat : 17766 (java) S 17752 17752 17190 0 -1 1077944384 786 0 0 0 11 0 0 0 20 0 15 0 117657717 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831839492976 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17767] ppid=17752 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17767/stat : 17767 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657718 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831838440416 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17768] ppid=17752 vsize=13982852 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17768/stat : 17768 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657718 14318440448 11818 33554432000 4194304 4196468 140724718215488 139831837387184 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 48656 KiB

[startup+0.700857 s]
/proc/loadavg: 2.10 2.12 2.09 6/217 17768
/proc/meminfo: memFree=28716392/32770624 swapFree=67108860/67108860
[pid=17752] ppid=17749 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0
[pid=17754] ppid=17752 vsize=13982928 memory=467512 CPUtime=1.18 cores=1,3,5,7
/proc/17754/stat : 17754 (java) S 17752 17752 17190 0 -1 1077944320 10047 0 0 0 93 25 0 0 20 0 15 0 117657712 14318518272 116878 33554432000 4194304 4196468 140724718215488 140724718198032 139832371822327 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
/proc/17754/statm: 3495732 116878 3169 1 0 3482966 0
[pid=17754/tid=17755] ppid=17752 vsize=13982928 memory=5865469479800824941 CPUtime=0.61 cores=1,3,5,7
/proc/17754/task/17755/stat : 17755 (java) R 17752 17752 17190 0 -1 4202560 6335 0 0 0 52 9 0 0 20 0 15 0 117657712 14318518272 116878 33554432000 4194304 4196468 140724718215488 139832376057168 139832005567250 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17756] ppid=17752 vsize=13982928 memory=7019257425709197167 CPUtime=0.05 cores=1,3,5,7
/proc/17754/task/17756/stat : 17756 (java) S 17752 17752 17190 0 -1 1077944384 56 0 0 0 2 3 0 0 20 0 15 0 117657713 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831967673232 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17757] ppid=17752 vsize=13982928 memory=6291616985311630419 CPUtime=0.05 cores=1,3,5,7
/proc/17754/task/17757/stat : 17757 (java) S 17752 17752 17190 0 -1 1077944384 60 0 0 0 2 3 0 0 20 0 15 0 117657713 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831966620432 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17758] ppid=17752 vsize=13982928 memory=7747766295893256779 CPUtime=0.05 cores=1,3,5,7
/proc/17754/task/17758/stat : 17758 (java) S 17752 17752 17190 0 -1 1077944384 64 0 0 0 2 3 0 0 20 0 15 0 117657713 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831965568144 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17759] ppid=17752 vsize=13982928 memory=8370611207638964880 CPUtime=0.05 cores=1,3,5,7
/proc/17754/task/17759/stat : 17759 (java) S 17752 17752 17190 0 -1 1077944384 64 0 0 0 2 3 0 0 20 0 15 0 117657713 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831964515344 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17760] ppid=17752 vsize=13982928 memory=6944656592455360569 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17760/stat : 17760 (java) S 17752 17752 17190 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 117657714 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831845808240 139832371833474 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17761] ppid=17752 vsize=13982928 memory=4612 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17761/stat : 17761 (java) S 17752 17752 17190 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 117657715 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831844754208 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17762] ppid=17752 vsize=13982928 memory=6884 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17762/stat : 17762 (java) S 17752 17752 17190 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 117657715 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831843701872 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17763] ppid=17752 vsize=13982928 memory=2244 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17763/stat : 17763 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831842650192 139832371840923 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17764] ppid=17752 vsize=13982928 memory=33052 CPUtime=0.07 cores=1,3,5,7
/proc/17754/task/17764/stat : 17764 (java) S 17752 17752 17190 0 -1 1077944384 767 0 0 0 7 0 0 0 20 0 15 0 117657717 14318518272 116878 33554432000 4194304 4196468 140724718215488 139831841598064 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17765] ppid=17752 vsize=13982928 memory=2332 CPUtime=0.06 cores=1,3,5,7
/proc/17754/task/17765/stat : 17765 (java) S 17752 17752 17190 0 -1 1077944384 291 0 0 0 6 0 0 0 20 0 15 0 117657717 14318518272 117390 33554432000 4194304 4196468 140724718215488 139831840545264 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17766] ppid=17752 vsize=13982928 memory=1292 CPUtime=0.17 cores=1,3,5,7
/proc/17754/task/17766/stat : 17766 (java) S 17752 17752 17190 0 -1 1077944384 1028 0 0 0 17 0 0 0 20 0 15 0 117657717 14318518272 117390 33554432000 4194304 4196468 140724718215488 139831839492976 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17767] ppid=17752 vsize=13982928 memory=7091832833820811856 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17767/stat : 17767 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657718 14318518272 117390 33554432000 4194304 4196468 140724718215488 139831838440416 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17768] ppid=17752 vsize=13982928 memory=6083073826404724833 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17768/stat : 17768 (java) S 17752 17752 17190 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117657718 14318518272 117390 33554432000 4194304 4196468 140724718215488 139831837387184 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
Current children cumulated CPU time: 1.18 s
Current children cumulated vsize: 13992440 KiB
Current children cumulated memory: 468896 KiB

[startup+1.50089 s]
/proc/loadavg: 2.10 2.12 2.09 7/217 17768
/proc/meminfo: memFree=27478576/32770624 swapFree=67108860/67108860
[pid=17752] ppid=17749 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0

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

/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0
[pid=17754] ppid=17752 vsize=13984976 memory=11272052 CPUtime=139.16 cores=1,3,5,7
/proc/17754/stat : 17754 (java) S 17752 17752 17190 0 -1 1077944320 458167 0 0 0 12724 1192 0 0 20 0 15 0 117657712 14320615424 2818013 33554432000 4194304 4196468 140724718215488 140724718198032 139832371822327 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
/proc/17754/statm: 3496244 2818013 3247 1 0 3483478 0
[pid=17754/tid=17755] ppid=17752 vsize=13984976 memory=1384 CPUtime=81.62 cores=1,3,5,7
/proc/17754/task/17755/stat : 17755 (java) S 17752 17752 17190 0 -1 1077944384 74617 0 0 0 8138 24 0 0 20 0 15 0 117657712 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139832376060544 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17756] ppid=17752 vsize=13984976 memory=10837796 CPUtime=13.4 cores=1,3,5,7
/proc/17754/task/17756/stat : 17756 (java) R 17752 17752 17190 0 -1 4202560 68749 0 0 0 1022 318 0 0 20 0 15 0 117657713 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831967673120 139832356773426 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17757] ppid=17752 vsize=13984976 memory=2544 CPUtime=13.45 cores=1,3,5,7
/proc/17754/task/17757/stat : 17757 (java) R 17752 17752 17190 0 -1 4202560 66957 0 0 0 1094 251 0 0 20 0 15 0 117657713 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831966620632 139832356773426 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17758] ppid=17752 vsize=13984976 memory=1160 CPUtime=13.45 cores=1,3,5,7
/proc/17754/task/17758/stat : 17758 (java) R 17752 17752 17190 0 -1 4202560 150570 0 0 0 1022 323 0 0 20 0 15 0 117657713 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831965568344 139832357580702 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17759] ppid=17752 vsize=13984976 memory=3004 CPUtime=13.47 cores=1,3,5,7
/proc/17754/task/17759/stat : 17759 (java) R 17752 17752 17190 0 -1 4202560 68228 0 0 0 1083 264 0 0 20 0 15 0 117657713 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831964515544 139832356520079 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17760] ppid=17752 vsize=13984976 memory=1384 CPUtime=2.37 cores=1,3,5,7
/proc/17754/task/17760/stat : 17760 (java) S 17752 17752 17190 0 -1 1077944384 17653 0 0 0 234 3 0 0 20 0 15 0 117657714 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831845806576 139832371832533 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17761] ppid=17752 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17761/stat : 17761 (java) S 17752 17752 17190 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 117657715 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831844754272 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17762] ppid=17752 vsize=13984976 memory=10837796 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17762/stat : 17762 (java) S 17752 17752 17190 0 -1 1077944384 68 0 0 0 0 0 0 0 20 0 15 0 117657715 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831843701888 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17763] ppid=17752 vsize=13984976 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17763/stat : 17763 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831842650192 139832371840923 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17764] ppid=17752 vsize=13984976 memory=1004 CPUtime=0.48 cores=1,3,5,7
/proc/17754/task/17764/stat : 17764 (java) S 17752 17752 17190 0 -1 1077944384 3117 0 0 0 48 0 0 0 20 0 15 0 117657717 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831841598064 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17765] ppid=17752 vsize=13984976 memory=1436 CPUtime=0.45 cores=1,3,5,7
/proc/17754/task/17765/stat : 17765 (java) S 17752 17752 17190 0 -1 1077944384 2915 0 0 0 45 0 0 0 20 0 15 0 117657717 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831840545264 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17766] ppid=17752 vsize=13984976 memory=1200 CPUtime=0.31 cores=1,3,5,7
/proc/17754/task/17766/stat : 17766 (java) S 17752 17752 17190 0 -1 1077944384 3381 0 0 0 31 0 0 0 20 0 15 0 117657717 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831839492976 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17767] ppid=17752 vsize=13984976 memory=15872 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17767/stat : 17767 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657718 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831838440416 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17768] ppid=17752 vsize=13984976 memory=4040 CPUtime=0.06 cores=1,3,5,7
/proc/17754/task/17768/stat : 17768 (java) S 17752 17752 17190 0 -1 1077944384 627 0 0 0 3 3 0 0 20 0 15 0 117657718 14320615424 2818013 33554432000 4194304 4196468 140724718215488 139831837387184 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
Current children cumulated CPU time: 139.16 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11273436 KiB

[startup+99.2012 s]
/proc/loadavg: 2.26 2.13 2.10 6/217 17770
/proc/meminfo: memFree=9353356/32770624 swapFree=67108860/67108860
[pid=17752] ppid=17749 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0
[pid=17754] ppid=17752 vsize=13984976 memory=11272056 CPUtime=145.34 cores=1,3,5,7
/proc/17754/stat : 17754 (java) S 17752 17752 17190 0 -1 1077944320 587253 0 0 0 13334 1200 0 0 20 0 15 0 117657712 14320615424 2818014 33554432000 4194304 4196468 140724718215488 140724718198032 139832371822327 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
/proc/17754/statm: 3496244 2818014 3247 1 0 3483478 0
[pid=17754/tid=17755] ppid=17752 vsize=13984976 memory=10870612 CPUtime=81.62 cores=1,3,5,7
/proc/17754/task/17755/stat : 17755 (java) S 17752 17752 17190 0 -1 1077944384 74617 0 0 0 8138 24 0 0 20 0 15 0 117657712 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139832376060544 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17756] ppid=17752 vsize=13984976 memory=1200 CPUtime=14.97 cores=1,3,5,7
/proc/17754/task/17756/stat : 17756 (java) R 17752 17752 17190 0 -1 4202560 197792 0 0 0 1174 323 0 0 20 0 15 0 117657713 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831967673120 139832364925331 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17757] ppid=17752 vsize=13984976 memory=15872 CPUtime=14.96 cores=1,3,5,7
/proc/17754/task/17757/stat : 17757 (java) R 17752 17752 17190 0 -1 4202560 66957 0 0 0 1244 252 0 0 20 0 15 0 117657713 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831966620552 139832364450535 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17758] ppid=17752 vsize=13984976 memory=1384 CPUtime=14.99 cores=1,3,5,7
/proc/17754/task/17758/stat : 17758 (java) R 17752 17752 17190 0 -1 4202560 150570 0 0 0 1175 324 0 0 20 0 15 0 117657713 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831965567952 139832355205362 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17759] ppid=17752 vsize=13984976 memory=1384 CPUtime=15.01 cores=1,3,5,7
/proc/17754/task/17759/stat : 17759 (java) R 17752 17752 17190 0 -1 4202560 68261 0 0 0 1237 264 0 0 20 0 15 0 117657713 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831964515152 139832364450535 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17760] ppid=17752 vsize=13984976 memory=6791534058613427641 CPUtime=2.38 cores=1,3,5,7
/proc/17754/task/17760/stat : 17760 (java) S 17752 17752 17190 0 -1 1077944384 17663 0 0 0 235 3 0 0 20 0 15 0 117657714 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831845806800 139832371832533 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17761] ppid=17752 vsize=13984976 memory=1728 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17761/stat : 17761 (java) S 17752 17752 17190 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 117657715 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831844754272 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17762] ppid=17752 vsize=13984976 memory=5788 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17762/stat : 17762 (java) S 17752 17752 17190 0 -1 1077944384 68 0 0 0 0 0 0 0 20 0 15 0 117657715 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831843701888 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17763] ppid=17752 vsize=13984976 memory=1228 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17763/stat : 17763 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831842650192 139832371840923 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17764] ppid=17752 vsize=13984976 memory=796 CPUtime=0.48 cores=1,3,5,7
/proc/17754/task/17764/stat : 17764 (java) S 17752 17752 17190 0 -1 1077944384 3117 0 0 0 48 0 0 0 20 0 15 0 117657717 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831841598064 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17765] ppid=17752 vsize=13984976 memory=10020 CPUtime=0.45 cores=1,3,5,7
/proc/17754/task/17765/stat : 17765 (java) S 17752 17752 17190 0 -1 1077944384 2915 0 0 0 45 0 0 0 20 0 15 0 117657717 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831840545264 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17766] ppid=17752 vsize=13984976 memory=1948 CPUtime=0.31 cores=1,3,5,7
/proc/17754/task/17766/stat : 17766 (java) S 17752 17752 17190 0 -1 1077944384 3381 0 0 0 31 0 0 0 20 0 15 0 117657717 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831839492976 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17767] ppid=17752 vsize=13984976 memory=8548 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17767/stat : 17767 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657718 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831838440416 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17768] ppid=17752 vsize=13984976 memory=4616 CPUtime=0.06 cores=1,3,5,7
/proc/17754/task/17768/stat : 17768 (java) S 17752 17752 17190 0 -1 1077944384 627 0 0 0 3 3 0 0 20 0 15 0 117657718 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831837387184 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
Current children cumulated CPU time: 145.34 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11273440 KiB

[startup+99.6011 s]
/proc/loadavg: 2.26 2.13 2.10 6/217 17770
/proc/meminfo: memFree=9353356/32770624 swapFree=67108860/67108860
[pid=17752] ppid=17749 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0
[pid=17754] ppid=17752 vsize=13984976 memory=11272056 CPUtime=146.76 cores=1,3,5,7
/proc/17754/stat : 17754 (java) S 17752 17752 17190 0 -1 1077944320 588604 0 0 0 13474 1202 0 0 20 0 15 0 117657712 14320615424 2818014 33554432000 4194304 4196468 140724718215488 140724718198032 139832371822327 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
/proc/17754/statm: 3496244 2818014 3247 1 0 3483478 0
[pid=17754/tid=17755] ppid=17752 vsize=13984976 memory=2332 CPUtime=81.62 cores=1,3,5,7
/proc/17754/task/17755/stat : 17755 (java) S 17752 17752 17190 0 -1 1077944384 74617 0 0 0 8138 24 0 0 20 0 15 0 117657712 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139832376060544 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17756] ppid=17752 vsize=13984976 memory=6791534058613427641 CPUtime=15.33 cores=1,3,5,7
/proc/17754/task/17756/stat : 17756 (java) S 17752 17752 17190 0 -1 1077944384 199143 0 0 0 1209 324 0 0 20 0 15 0 117657713 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831967673232 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17757] ppid=17752 vsize=13984976 memory=2888 CPUtime=15.3 cores=1,3,5,7
/proc/17754/task/17757/stat : 17757 (java) S 17752 17752 17190 0 -1 1077944384 66957 0 0 0 1277 253 0 0 20 0 15 0 117657713 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831966620432 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17758] ppid=17752 vsize=13984976 memory=1384 CPUtime=15.32 cores=1,3,5,7
/proc/17754/task/17758/stat : 17758 (java) S 17752 17752 17190 0 -1 1077944384 150570 0 0 0 1208 324 0 0 20 0 15 0 117657713 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831965568144 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17759] ppid=17752 vsize=13984976 memory=10750164 CPUtime=15.36 cores=1,3,5,7
/proc/17754/task/17759/stat : 17759 (java) S 17752 17752 17190 0 -1 1077944384 68261 0 0 0 1271 265 0 0 20 0 15 0 117657713 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831964515344 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17760] ppid=17752 vsize=13984976 memory=1156 CPUtime=2.43 cores=1,3,5,7
/proc/17754/task/17760/stat : 17760 (java) R 17752 17752 17190 0 -1 4202560 17663 0 0 0 240 3 0 0 20 0 15 0 117657714 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831845806800 139832356818737 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17761] ppid=17752 vsize=13984976 memory=2992 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17761/stat : 17761 (java) S 17752 17752 17190 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 117657715 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831844754272 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17762] ppid=17752 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17762/stat : 17762 (java) S 17752 17752 17190 0 -1 1077944384 68 0 0 0 0 0 0 0 20 0 15 0 117657715 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831843701888 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17763] ppid=17752 vsize=13984976 memory=288230574492221466 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17763/stat : 17763 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831842650192 139832371840923 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17764] ppid=17752 vsize=13984976 memory=1004 CPUtime=0.48 cores=1,3,5,7
/proc/17754/task/17764/stat : 17764 (java) S 17752 17752 17190 0 -1 1077944384 3117 0 0 0 48 0 0 0 20 0 15 0 117657717 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831841598064 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17765] ppid=17752 vsize=13984976 memory=1436 CPUtime=0.45 cores=1,3,5,7
/proc/17754/task/17765/stat : 17765 (java) S 17752 17752 17190 0 -1 1077944384 2915 0 0 0 45 0 0 0 20 0 15 0 117657717 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831840545264 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17766] ppid=17752 vsize=13984976 memory=1200 CPUtime=0.31 cores=1,3,5,7
/proc/17754/task/17766/stat : 17766 (java) S 17752 17752 17190 0 -1 1077944384 3381 0 0 0 31 0 0 0 20 0 15 0 117657717 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831839492976 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17767] ppid=17752 vsize=13984976 memory=15872 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17767/stat : 17767 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657718 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831838440416 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17768] ppid=17752 vsize=13984976 memory=4040 CPUtime=0.06 cores=1,3,5,7
/proc/17754/task/17768/stat : 17768 (java) S 17752 17752 17190 0 -1 1077944384 627 0 0 0 3 3 0 0 20 0 15 0 117657718 14320615424 2818014 33554432000 4194304 4196468 140724718215488 139831837387184 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
Current children cumulated CPU time: 146.76 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11273440 KiB

[startup+100.001 s]*
/proc/loadavg: 2.26 2.13 2.10 3/217 17770
/proc/meminfo: memFree=9353356/32770624 swapFree=67108860/67108860
[pid=17752] ppid=17749 vsize=9512 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17752/stat : 17752 (xcsp3-exec) S 17749 17752 17190 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 117657712 9740288 346 33554432000 4194304 5098028 140735154082064 140735154080168 140535829234300 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 32509952 140735154087022 140735154087227 140735154087227 140735154089963 0
/proc/17752/statm: 2378 346 289 221 0 87 0
[pid=17754] ppid=17752 vsize=13984976 memory=11272080 CPUtime=147.17 cores=1,3,5,7
/proc/17754/stat : 17754 (java) S 17752 17752 17190 0 -1 1077944320 589091 0 0 0 13515 1202 0 0 20 0 15 0 117657712 14320615424 2818020 33554432000 4194304 4196468 140724718215488 140724718198032 139832371822327 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
/proc/17754/statm: 3496244 2818020 3247 1 0 3483478 0
[pid=17754/tid=17755] ppid=17752 vsize=13984976 memory=6791534058613427641 CPUtime=81.62 cores=1,3,5,7
/proc/17754/task/17755/stat : 17755 (java) S 17752 17752 17190 0 -1 1077944384 74617 0 0 0 8138 24 0 0 20 0 15 0 117657712 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139832376060544 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17756] ppid=17752 vsize=13984976 memory=-7003737579269690708 CPUtime=15.33 cores=1,3,5,7
/proc/17754/task/17756/stat : 17756 (java) S 17752 17752 17190 0 -1 1077944384 199143 0 0 0 1209 324 0 0 20 0 15 0 117657713 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831967673232 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17757] ppid=17752 vsize=13984976 memory=11262176 CPUtime=15.3 cores=1,3,5,7
/proc/17754/task/17757/stat : 17757 (java) S 17752 17752 17190 0 -1 1077944384 66957 0 0 0 1277 253 0 0 20 0 15 0 117657713 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831966620432 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17758] ppid=17752 vsize=13984976 memory=6791534058613427641 CPUtime=15.32 cores=1,3,5,7
/proc/17754/task/17758/stat : 17758 (java) S 17752 17752 17190 0 -1 1077944384 150570 0 0 0 1208 324 0 0 20 0 15 0 117657713 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831965568144 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17759] ppid=17752 vsize=13984976 memory=-7003737579269690708 CPUtime=15.36 cores=1,3,5,7
/proc/17754/task/17759/stat : 17759 (java) S 17752 17752 17190 0 -1 1077944384 68261 0 0 0 1271 265 0 0 20 0 15 0 117657713 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831964515344 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17760] ppid=17752 vsize=13984976 memory=-7003737579269690708 CPUtime=2.84 cores=1,3,5,7
/proc/17754/task/17760/stat : 17760 (java) R 17752 17752 17190 0 -1 4202560 18150 0 0 0 281 3 0 0 20 0 15 0 117657714 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831845806800 139832351023379 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17761] ppid=17752 vsize=13984976 memory=10837796 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17761/stat : 17761 (java) S 17752 17752 17190 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 15 0 117657715 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831844754272 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17762] ppid=17752 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17762/stat : 17762 (java) S 17752 17752 17190 0 -1 1077944384 68 0 0 0 0 0 0 0 20 0 15 0 117657715 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831843701888 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17763] ppid=17752 vsize=13984976 memory=10837796 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17763/stat : 17763 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657717 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831842650192 139832371840923 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17764] ppid=17752 vsize=13984976 memory=6791534058613427641 CPUtime=0.48 cores=1,3,5,7
/proc/17754/task/17764/stat : 17764 (java) S 17752 17752 17190 0 -1 1077944384 3117 0 0 0 48 0 0 0 20 0 15 0 117657717 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831841598064 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17765] ppid=17752 vsize=13984976 memory=-7003737579269690708 CPUtime=0.45 cores=1,3,5,7
/proc/17754/task/17765/stat : 17765 (java) S 17752 17752 17190 0 -1 1077944384 2915 0 0 0 45 0 0 0 20 0 15 0 117657717 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831840545264 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17766] ppid=17752 vsize=13984976 memory=-2317720213663324238 CPUtime=0.31 cores=1,3,5,7
/proc/17754/task/17766/stat : 17766 (java) S 17752 17752 17190 0 -1 1077944384 3381 0 0 0 31 0 0 0 20 0 15 0 117657717 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831839492976 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17767] ppid=17752 vsize=13984976 memory=-7826344226032361375 CPUtime=0 cores=1,3,5,7
/proc/17754/task/17767/stat : 17767 (java) S 17752 17752 17190 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117657718 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831838440416 139832371832533 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
[pid=17754/tid=17768] ppid=17752 vsize=13984976 memory=6944665225511868275 CPUtime=0.06 cores=1,3,5,7
/proc/17754/task/17768/stat : 17768 (java) S 17752 17752 17190 0 -1 1077944384 627 0 0 0 3 3 0 0 20 0 15 0 117657718 14320615424 2818020 33554432000 4194304 4196468 140724718215488 139831837387184 139832371833474 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14929920 140724718220439 140724718220615 140724718220615 140724718223311 0
Current children cumulated CPU time: 147.17 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11273464 KiB

Child status: 1
Real time (s): 100.099
CPU time (s): 147.268
CPU user time (s): 135.166
CPU system time (s): 12.1021
CPU usage (%): 147.123
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11273464

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 135.166
system time used= 12.1021
maximum resident set size= 11272372
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 589762
page faults= 0
swaps= 0
block input operations= 0
block output operations= 232
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 11751
involuntary context switches= 861


# summary of solver processes directly reported to runsolver:
#   pid: 17752
#   total CPU time (s): 147.268
#   total CPU user time (s): 135.166
#   total CPU system time (s): 12.1021

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.782724 second user time and 1.02897 second system time

The end

Launcher Data

Begin job on node112 at 2017-08-16 02:54:01
IDJOB=4269022
IDBENCH=138074
IDSOLVER=2660
FILE ID=node112/4269022-1502845699
RUNJOBID= node112-1502839811-17222
PBS_JOBID= 20629854
Free space on /tmp= 61656 MiB

SOLVER NAME= choco-solver 4.0.5 seq
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-31.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -ml 11000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4269022-1502845699/watcher-4269022-1502845699 -o /tmp/evaluation-result-4269022-1502845699/solver-4269022-1502845699 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node112-1502839811-17222 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 1911555435 HOME/instance-4269022-1502845699.xml

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

MD5SUM BENCH= 67c04303171609b86978ceecc7dcafe8
RANDOM SEED=1911555435

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

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.24
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.24
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.24
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.24
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        29315904 kB
MemAvailable:   29907220 kB
Buffers:          210204 kB
Cached:           662404 kB
SwapCached:            0 kB
Active:          2716364 kB
Inactive:         283952 kB
Active(anon):    2079052 kB
Inactive(anon):    76444 kB
Active(file):     637312 kB
Inactive(file):   207508 kB
Unevictable:        6276 kB
Mlocked:            6276 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             83036 kB
Writeback:           136 kB
AnonPages:       2133884 kB
Mapped:            58400 kB
Shmem:             25224 kB
Slab:             151656 kB
SReclaimable:     124660 kB
SUnreclaim:        26996 kB
KernelStack:        3552 kB
PageTables:         9448 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    4074308 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2039808 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      116096 kB
DirectMap2M:    33429504 kB

Free space on /tmp at the end= 61648 MiB
End job on node112 at 2017-08-16 02:55:41