Trace number 4281191

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 par (2017-08-18)? 864.77802 374.37799

General information on the benchmark

NameRamsey/Ramsey-int-s1/
Ramsey-int-15.xml
MD5SUM4870bb42219503db6b08817d9224dcd4
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark2
Best CPU time to get the best result obtained on this benchmark5.2386699
Satisfiable
(Un)Satisfiability was proved
Number of variables225
Number of constraints455
Number of domains1
Minimum domain size105
Maximum domain size105
Distribution of domain sizes[{"size":105,"count":105}]
Minimum variable degree0
Maximum variable degree14
Distribution of variable degrees[{"degree":0,"count":120},{"degree":14,"count":105}]
Minimum constraint arity3
Maximum constraint arity3
Distribution of constraint arities[{"arity":3,"count":455}]
Number of extensional constraints0
Number of intensional constraints455
Distribution of constraint types[{"type":"intension","count":455}]
Optimization problemYES
Type of objectivemin MAXIMUM

Solver Data

0.00/0.00	c java -server -Xmx22000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4281191-1503181717.xml"  -tl '20160s' -p 8 -x 0
0.12/0.14	c [HOME/instance-4281191-1503181717.xml, -tl, 20160s, -p, 8, -x, 0]
0.12/0.20	c 8 solvers in parallel
0.33/0.26	c parse instance...
864.68/374.30	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
864.68/374.30		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
864.68/374.30		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
864.68/374.30		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1867)
864.68/374.30		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1823)
864.68/374.30		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
864.68/374.30		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
864.68/374.30		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
864.68/374.30		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
864.68/374.30		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
864.68/374.30		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
864.68/374.30		at org.xcsp.parser.XCallbacks$$Lambda$52/1007603019.accept(Unknown Source)
864.68/374.30		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
864.68/374.30		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
864.68/374.30		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
864.68/374.30		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
864.68/374.30		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
864.68/374.30		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
864.68/374.30		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
864.68/374.30		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
864.68/374.30		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
864.68/374.30		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
864.68/374.30		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
864.68/374.30	s UNKNOWN
864.68/374.30	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 (12771 MiB free)
  memory of node 1: 16384 MiB (12133 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4281191-1503181717/watcher-4281191-1503181717 -o /tmp/evaluation-result-4281191-1503181717/solver-4281191-1503181717 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node148-1503175375-6738 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 22000 -tdir HOME -seed 961878190 HOME/instance-4281191-1503181717.xml 

running on 8 cores: 0,2,4,6,1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 20160 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 20190 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 31744000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 31795200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
Current StackSize limit: 8192 KiB

solver pid=8283, runsolver pid=8280

[startup+0.100161 s]*
/proc/loadavg: 2.72 4.78 6.67 2/200 8304
/proc/meminfo: memFree=25487572/32770624 swapFree=67108860/67108860
[pid=8283] ppid=8280 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/8283/stat : 8283 (xcsp3-exec) S 8280 8283 6711 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 151252594 9740288 346 33554432000 4194304 5098028 140720951970160 140720951968264 140009579192956 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 9097216 140720951972965 140720951973175 140720951973175 140720951975915 0
/proc/8283/statm: 2378 346 289 221 0 87 0
[pid=8285] ppid=8283 vsize=25999808 memory=26216 CPUtime=0.12 cores=0-7
/proc/8285/stat : 8285 (java) S 8283 8283 6711 0 -1 1077944320 5478 0 0 0 10 2 0 0 20 0 20 0 151252594 26623803392 6554 33554432000 4194304 4196468 140728880831008 140728880813552 139691333283575 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
/proc/8285/statm: 6499952 6554 2846 1 0 6488269 0
[pid=8285/tid=8286] ppid=8283 vsize=25999808 memory=4134692831991783777 CPUtime=0.08 cores=0-7
/proc/8285/task/8286/stat : 8286 (java) R 8283 8283 6711 0 -1 4202560 3487 0 0 0 7 1 0 0 20 0 20 0 151252595 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691337515824 139691333305501 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8287] ppid=8283 vsize=25999808 memory=4126316290023845779 CPUtime=0 cores=0-7
/proc/8285/task/8287/stat : 8287 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691285903888 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8288] ppid=8283 vsize=25999808 memory=139854851896960 CPUtime=0 cores=0-7
/proc/8285/task/8288/stat : 8288 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252595 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691284851344 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8289] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8289/stat : 8289 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691283798288 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8290] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8290/stat : 8290 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691282745744 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8291] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8291/stat : 8291 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252595 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691281693712 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8292] ppid=8283 vsize=25999808 memory=-1 CPUtime=0 cores=0-7
/proc/8285/task/8292/stat : 8292 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691280641168 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8293] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8293/stat : 8293 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691279588112 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8294] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8294/stat : 8294 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252596 26623803392 6554 33554432000 4194304 4196468 140728880831008 139691278535568 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8295] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8295/stat : 8295 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252597 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690075400432 139691333294722 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8296] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8296/stat : 8296 (java) S 8283 8283 6711 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 151252597 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690074346656 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8297] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8297/stat : 8297 (java) S 8283 8283 6711 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 151252598 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690073293552 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8298] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8298/stat : 8298 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690072242128 139691333302171 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8299] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8299/stat : 8299 (java) S 8283 8283 6711 0 -1 1077944384 303 0 0 0 0 0 0 0 20 0 20 0 151252600 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690071190256 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8300] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8300/stat : 8300 (java) S 8283 8283 6711 0 -1 1077944384 121 0 0 0 0 0 0 0 20 0 20 0 151252600 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690070137712 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8301] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8301/stat : 8301 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690069084656 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8302] ppid=8283 vsize=25999808 memory=0 CPUtime=0.01 cores=0-7
/proc/8285/task/8302/stat : 8302 (java) R 8283 8283 6711 0 -1 4202560 263 0 0 0 1 0 0 0 20 0 20 0 151252600 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690068032112 139691317364062 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8303] ppid=8283 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8303/stat : 8303 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252600 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690066979296 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8304] ppid=8283 vsize=25999808 memory=-1 CPUtime=0 cores=0-7
/proc/8285/task/8304/stat : 8304 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26623803392 6554 33554432000 4194304 4196468 140728880831008 139690065926832 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 26009320 KiB
Current children cumulated memory: 27600 KiB

[startup+0.210063 s]*
/proc/loadavg: 2.72 4.78 6.67 3/200 8304
/proc/meminfo: memFree=25476128/32770624 swapFree=67108860/67108860
[pid=8283] ppid=8280 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/8283/stat : 8283 (xcsp3-exec) S 8280 8283 6711 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 151252594 9740288 346 33554432000 4194304 5098028 140720951970160 140720951968264 140009579192956 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 9097216 140720951972965 140720951973175 140720951973175 140720951975915 0
/proc/8283/statm: 2378 346 289 221 0 87 0
[pid=8285] ppid=8283 vsize=26004064 memory=39084 CPUtime=0.33 cores=0-7
/proc/8285/stat : 8285 (java) S 8283 8283 6711 0 -1 1077944320 8342 0 0 0 30 3 0 0 20 0 20 0 151252594 26628161536 9771 33554432000 4194304 4196468 140728880831008 140728880813552 139691333283575 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
/proc/8285/statm: 6501016 9771 3035 1 0 6488269 0
[pid=8285/tid=8286] ppid=8283 vsize=26004064 memory=8318255677412212789 CPUtime=0.19 cores=0-7
/proc/8285/task/8286/stat : 8286 (java) R 8283 8283 6711 0 -1 4202560 5393 0 0 0 17 2 0 0 20 0 20 0 151252595 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691337504560 139691317364062 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8287] ppid=8283 vsize=26004064 memory=330 CPUtime=0 cores=0-7
/proc/8285/task/8287/stat : 8287 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691285903888 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8288] ppid=8283 vsize=26004064 memory=139854851916534 CPUtime=0 cores=0-7
/proc/8285/task/8288/stat : 8288 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691284851344 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8289] ppid=8283 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/8285/task/8289/stat : 8289 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691283798288 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8290] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8290/stat : 8290 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691282745744 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8291] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8291/stat : 8291 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691281693712 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8292] ppid=8283 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/8285/task/8292/stat : 8292 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691280641168 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8293] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8293/stat : 8293 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691279588112 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8294] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8294/stat : 8294 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252596 26628161536 9771 33554432000 4194304 4196468 140728880831008 139691278535568 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8295] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8295/stat : 8295 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252597 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690075400432 139691333294722 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8296] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8296/stat : 8296 (java) S 8283 8283 6711 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 151252597 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690074346656 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8297] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8297/stat : 8297 (java) S 8283 8283 6711 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 151252598 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690073293552 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8298] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8298/stat : 8298 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690072242128 139691333302171 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8299] ppid=8283 vsize=26004064 memory=0 CPUtime=0.01 cores=0-7
/proc/8285/task/8299/stat : 8299 (java) S 8283 8283 6711 0 -1 1077944384 392 0 0 0 1 0 0 0 20 0 20 0 151252600 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690071190256 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8300] ppid=8283 vsize=26004064 memory=0 CPUtime=0.01 cores=0-7
/proc/8285/task/8300/stat : 8300 (java) S 8283 8283 6711 0 -1 1077944384 200 0 0 0 1 0 0 0 20 0 20 0 151252600 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690070137712 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8301] ppid=8283 vsize=26004064 memory=-1 CPUtime=0.02 cores=0-7
/proc/8285/task/8301/stat : 8301 (java) S 8283 8283 6711 0 -1 1077944384 297 0 0 0 2 0 0 0 20 0 20 0 151252600 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690069084656 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8302] ppid=8283 vsize=26004064 memory=-1 CPUtime=0.07 cores=0-7
/proc/8285/task/8302/stat : 8302 (java) R 8283 8283 6711 0 -1 4202560 753 0 0 0 7 0 0 0 20 0 20 0 151252600 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690068032112 139691317364062 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8303] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8303/stat : 8303 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252600 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690066979296 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8304] ppid=8283 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/8285/task/8304/stat : 8304 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26628161536 9771 33554432000 4194304 4196468 140728880831008 139690065926832 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 26013576 KiB
Current children cumulated memory: 40468 KiB

[startup+0.30945 s]*
/proc/loadavg: 2.72 4.78 6.67 3/200 8304
/proc/meminfo: memFree=25471724/32770624 swapFree=67108860/67108860
[pid=8283] ppid=8280 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/8283/stat : 8283 (xcsp3-exec) S 8280 8283 6711 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 151252594 9740288 346 33554432000 4194304 5098028 140720951970160 140720951968264 140009579192956 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 9097216 140720951972965 140720951973175 140720951973175 140720951975915 0
/proc/8283/statm: 2378 346 289 221 0 87 0
[pid=8285] ppid=8283 vsize=26004064 memory=44240 CPUtime=0.5 cores=0-7
/proc/8285/stat : 8285 (java) S 8283 8283 6711 0 -1 1077944320 9169 0 0 0 46 4 0 0 20 0 20 0 151252594 26628161536 11060 33554432000 4194304 4196468 140728880831008 140728880813552 139691333283575 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
/proc/8285/statm: 6501016 11060 3118 1 0 6488269 0
[pid=8285/tid=8286] ppid=8283 vsize=26004064 memory=8112282956445269571 CPUtime=0.29 cores=0-7
/proc/8285/task/8286/stat : 8286 (java) R 8283 8283 6711 0 -1 4202560 6062 0 0 0 27 2 0 0 20 0 20 0 151252595 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691337521840 139691333295510 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8287] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8287/stat : 8287 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691285903888 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8288] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8288/stat : 8288 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691284851344 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8289] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8289/stat : 8289 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691283798288 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8290] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8290/stat : 8290 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691282745744 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8291] ppid=8283 vsize=26004064 memory=2244 CPUtime=0 cores=0-7
/proc/8285/task/8291/stat : 8291 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691281693712 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8292] ppid=8283 vsize=26004064 memory=139854738453423 CPUtime=0 cores=0-7
/proc/8285/task/8292/stat : 8292 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691280641168 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8293] ppid=8283 vsize=26004064 memory=139854738455728 CPUtime=0 cores=0-7
/proc/8285/task/8293/stat : 8293 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691279588112 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8294] ppid=8283 vsize=26004064 memory=139854738458032 CPUtime=0 cores=0-7
/proc/8285/task/8294/stat : 8294 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252596 26628161536 11572 33554432000 4194304 4196468 140728880831008 139691278535568 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8295] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8295/stat : 8295 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252597 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690075400432 139691333294722 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8296] ppid=8283 vsize=26004064 memory=279709476923024 CPUtime=0 cores=0-7
/proc/8285/task/8296/stat : 8296 (java) S 8283 8283 6711 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 151252597 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690074346656 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8297] ppid=8283 vsize=26004064 memory=279709476929936 CPUtime=0 cores=0-7
/proc/8285/task/8297/stat : 8297 (java) S 8283 8283 6711 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 151252598 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690073293552 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8298] ppid=8283 vsize=26004064 memory=279709476871216 CPUtime=0 cores=0-7
/proc/8285/task/8298/stat : 8298 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690072242128 139691333302171 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8299] ppid=8283 vsize=26004064 memory=279709476943760 CPUtime=0.01 cores=0-7
/proc/8285/task/8299/stat : 8299 (java) R 8283 8283 6711 0 -1 4202560 400 0 0 0 1 0 0 0 20 0 20 0 151252600 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690071190256 139691317705058 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8300] ppid=8283 vsize=26004064 memory=279709476950672 CPUtime=0.02 cores=0-7
/proc/8285/task/8300/stat : 8300 (java) S 8283 8283 6711 0 -1 1077944384 200 0 0 0 2 0 0 0 20 0 20 0 151252600 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690070137712 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8301] ppid=8283 vsize=26004064 memory=279709476948368 CPUtime=0.03 cores=0-7
/proc/8285/task/8301/stat : 8301 (java) R 8283 8283 6711 0 -1 4202560 333 0 0 0 3 0 0 0 20 0 20 0 151252600 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690069076112 139691312524064 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8302] ppid=8283 vsize=26004064 memory=279709476964528 CPUtime=0.12 cores=0-7
/proc/8285/task/8302/stat : 8302 (java) R 8283 8283 6711 0 -1 4202560 863 0 0 0 12 0 0 0 20 0 20 0 151252600 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690068028480 139691311803742 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8303] ppid=8283 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8303/stat : 8303 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252600 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690066979296 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8304] ppid=8283 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/8285/task/8304/stat : 8304 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26628161536 11572 33554432000 4194304 4196468 140728880831008 139690065926832 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
Current children cumulated CPU time: 0.5 s
Current children cumulated vsize: 26013576 KiB
Current children cumulated memory: 45624 KiB

[startup+0.700919 s]
/proc/loadavg: 2.72 4.78 6.67 3/200 8304
/proc/meminfo: memFree=25456788/32770624 swapFree=67108860/67108860
[pid=8283] ppid=8280 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/8283/stat : 8283 (xcsp3-exec) S 8280 8283 6711 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 151252594 9740288 346 33554432000 4194304 5098028 140720951970160 140720951968264 140009579192956 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 9097216 140720951972965 140720951973175 140720951973175 140720951975915 0
/proc/8283/statm: 2378 346 289 221 0 87 0
[pid=8285] ppid=8283 vsize=26006188 memory=154048 CPUtime=1.24 cores=0-7
/proc/8285/stat : 8285 (java) S 8283 8283 6711 0 -1 1077944320 10624 0 0 0 118 6 0 0 20 0 20 0 151252594 26630336512 38512 33554432000 4194304 4196468 140728880831008 140728880813552 139691333283575 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
/proc/8285/statm: 6501547 38512 3183 1 0 6488781 0
[pid=8285/tid=8286] ppid=8283 vsize=26006188 memory=279709477322416 CPUtime=0.67 cores=0-7
/proc/8285/task/8286/stat : 8286 (java) R 8283 8283 6711 0 -1 4202560 6567 0 0 0 63 4 0 0 20 0 20 0 151252595 26630336512 38512 33554432000 4194304 4196468 140728880831008 139691337518976 139690945693985 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8287] ppid=8283 vsize=26006188 memory=139854738662256 CPUtime=0 cores=0-7
/proc/8285/task/8287/stat : 8287 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26630336512 38512 33554432000 4194304 4196468 140728880831008 139691285903888 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8288] ppid=8283 vsize=26006188 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8288/stat : 8288 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252595 26630336512 38512 33554432000 4194304 4196468 140728880831008 139691284851344 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8289] ppid=8283 vsize=26006188 memory=1204 CPUtime=0 cores=0-7
/proc/8285/task/8289/stat : 8289 (java) S 8283 8283 6711 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 151252595 26630336512 38512 33554432000 4194304 4196468 140728880831008 139691283798288 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0

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

/proc/8285/task/8303/stat : 8303 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690066979296 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8304] ppid=8283 vsize=26006188 memory=3424 CPUtime=0.15 cores=0-7
/proc/8285/task/8304/stat : 8304 (java) S 8283 8283 6711 0 -1 1077944384 526 0 0 0 7 8 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690065926832 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 11 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
Current children cumulated CPU time: 863.99 s
Current children cumulated vsize: 26015700 KiB
Current children cumulated memory: 16192892 KiB

[startup+374.001 s]*
/proc/loadavg: 2.94 2.88 5.10 2/199 8311
/proc/meminfo: memFree=9294612/32770624 swapFree=67108860/67108860
[pid=8283] ppid=8280 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/8283/stat : 8283 (xcsp3-exec) S 8280 8283 6711 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 151252594 9740288 346 33554432000 4194304 5098028 140720951970160 140720951968264 140009579192956 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 9097216 140720951972965 140720951973175 140720951973175 140720951975915 0
/proc/8283/statm: 2378 346 289 221 0 87 0
[pid=8285] ppid=8283 vsize=26006188 memory=16191508 CPUtime=864.39 cores=0-7
/proc/8285/stat : 8285 (java) S 8283 8283 6711 0 -1 1077944320 516402 0 0 0 81759 4680 0 0 20 0 20 0 151252594 26630336512 4047877 33554432000 4194304 4196468 140728880831008 140728880813552 139691333283575 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
/proc/8285/statm: 6501547 4047877 3240 1 0 6488781 0
[pid=8285/tid=8286] ppid=8283 vsize=26006188 memory=8112282956445269571 CPUtime=274.52 cores=0-7
/proc/8285/task/8286/stat : 8286 (java) S 8283 8283 6711 0 -1 1077944384 17423 0 0 0 27436 16 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691337521696 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8287] ppid=8283 vsize=26006188 memory=4126316290023845779 CPUtime=70.23 cores=0-7
/proc/8285/task/8287/stat : 8287 (java) S 8283 8283 6711 0 -1 1077944384 44472 0 0 0 6475 548 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691285903888 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 26 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8288] ppid=8283 vsize=26006188 memory=4126316290023845779 CPUtime=70.07 cores=0-7
/proc/8285/task/8288/stat : 8288 (java) S 8283 8283 6711 0 -1 1077944384 55543 0 0 0 6424 583 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691284851344 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 22 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8289] ppid=8283 vsize=26006188 memory=24184 CPUtime=70.21 cores=0-7
/proc/8285/task/8289/stat : 8289 (java) S 8283 8283 6711 0 -1 1077944384 58661 0 0 0 6431 590 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691283798288 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 22 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8290] ppid=8283 vsize=26006188 memory=4044 CPUtime=70.04 cores=0-7
/proc/8285/task/8290/stat : 8290 (java) S 8283 8283 6711 0 -1 1077944384 40638 0 0 0 6393 611 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691282745744 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 19 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8291] ppid=8283 vsize=26006188 memory=8112282956445269571 CPUtime=69.85 cores=0-7
/proc/8285/task/8291/stat : 8291 (java) S 8283 8283 6711 0 -1 1077944384 38994 0 0 0 6437 548 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691281693712 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 24 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8292] ppid=8283 vsize=26006188 memory=636 CPUtime=69.94 cores=0-7
/proc/8285/task/8292/stat : 8292 (java) S 8283 8283 6711 0 -1 1077944384 66247 0 0 0 6435 559 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691280641168 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 24 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8293] ppid=8283 vsize=26006188 memory=1236 CPUtime=70.26 cores=0-7
/proc/8285/task/8293/stat : 8293 (java) S 8283 8283 6711 0 -1 1077944384 46534 0 0 0 6428 598 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691279588112 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 19 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8294] ppid=8283 vsize=26006188 memory=960 CPUtime=69.87 cores=0-7
/proc/8285/task/8294/stat : 8294 (java) S 8283 8283 6711 0 -1 1077944384 42889 0 0 0 6440 547 0 0 20 0 20 0 151252596 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691278535568 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 23 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8295] ppid=8283 vsize=26006188 memory=2240 CPUtime=28.27 cores=0-7
/proc/8285/task/8295/stat : 8295 (java) R 8283 8283 6711 0 -1 4202560 90719 0 0 0 2762 65 0 0 20 0 20 0 151252597 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690075398880 139691318279982 0 0 0 16800975 0 0 0 -1 0 0 0 1 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8296] ppid=8283 vsize=26006188 memory=2424 CPUtime=0 cores=0-7
/proc/8285/task/8296/stat : 8296 (java) S 8283 8283 6711 0 -1 1077944384 57 0 0 0 0 0 0 0 20 0 20 0 151252597 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690074346656 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8297] ppid=8283 vsize=26006188 memory=1440 CPUtime=0 cores=0-7
/proc/8285/task/8297/stat : 8297 (java) S 8283 8283 6711 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 20 0 151252598 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690073293552 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8298] ppid=8283 vsize=26006188 memory=636 CPUtime=0 cores=0-7
/proc/8285/task/8298/stat : 8298 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690072242128 139691333302171 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8299] ppid=8283 vsize=26006188 memory=1236 CPUtime=0.11 cores=0-7
/proc/8285/task/8299/stat : 8299 (java) S 8283 8283 6711 0 -1 1077944384 1520 0 0 0 11 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690071190304 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8300] ppid=8283 vsize=26006188 memory=960 CPUtime=0.16 cores=0-7
/proc/8285/task/8300/stat : 8300 (java) S 8283 8283 6711 0 -1 1077944384 1013 0 0 0 16 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690070137472 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8301] ppid=8283 vsize=26006188 memory=4629546024076873078 CPUtime=0.19 cores=0-7
/proc/8285/task/8301/stat : 8301 (java) S 8283 8283 6711 0 -1 1077944384 2860 0 0 0 19 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690069084704 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8302] ppid=8283 vsize=26006188 memory=-7521736447810188379 CPUtime=0.36 cores=0-7
/proc/8285/task/8302/stat : 8302 (java) S 8283 8283 6711 0 -1 1077944384 7022 0 0 0 35 1 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690068032160 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8303] ppid=8283 vsize=26006188 memory=7897517683652307531 CPUtime=0 cores=0-7
/proc/8285/task/8303/stat : 8303 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690066979296 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8304] ppid=8283 vsize=26006188 memory=-8412652160765825907 CPUtime=0.15 cores=0-7
/proc/8285/task/8304/stat : 8304 (java) S 8283 8283 6711 0 -1 1077944384 526 0 0 0 7 8 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690065926832 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 11 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
Current children cumulated CPU time: 864.39 s
Current children cumulated vsize: 26015700 KiB
Current children cumulated memory: 16192892 KiB

[startup+374.201 s]
/proc/loadavg: 2.94 2.88 5.10 2/199 8311
/proc/meminfo: memFree=9294612/32770624 swapFree=67108860/67108860
[pid=8283] ppid=8280 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/8283/stat : 8283 (xcsp3-exec) S 8280 8283 6711 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 151252594 9740288 346 33554432000 4194304 5098028 140720951970160 140720951968264 140009579192956 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 9097216 140720951972965 140720951973175 140720951973175 140720951975915 0
/proc/8283/statm: 2378 346 289 221 0 87 0
[pid=8285] ppid=8283 vsize=26006188 memory=16191508 CPUtime=864.58 cores=0-7
/proc/8285/stat : 8285 (java) S 8283 8283 6711 0 -1 1077944320 516402 0 0 0 81778 4680 0 0 20 0 20 0 151252594 26630336512 4047877 33554432000 4194304 4196468 140728880831008 140728880813552 139691333283575 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
/proc/8285/statm: 6501547 4047877 3240 1 0 6488781 0
[pid=8285/tid=8286] ppid=8283 vsize=26006188 memory=16101468159609422 CPUtime=274.52 cores=0-7
/proc/8285/task/8286/stat : 8286 (java) S 8283 8283 6711 0 -1 1077944384 17423 0 0 0 27436 16 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691337521696 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8287] ppid=8283 vsize=26006188 memory=840 CPUtime=70.23 cores=0-7
/proc/8285/task/8287/stat : 8287 (java) S 8283 8283 6711 0 -1 1077944384 44472 0 0 0 6475 548 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691285903888 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 26 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8288] ppid=8283 vsize=26006188 memory=1696 CPUtime=70.07 cores=0-7
/proc/8285/task/8288/stat : 8288 (java) S 8283 8283 6711 0 -1 1077944384 55543 0 0 0 6424 583 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691284851344 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 22 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8289] ppid=8283 vsize=26006188 memory=920 CPUtime=70.21 cores=0-7
/proc/8285/task/8289/stat : 8289 (java) S 8283 8283 6711 0 -1 1077944384 58661 0 0 0 6431 590 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691283798288 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 22 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8290] ppid=8283 vsize=26006188 memory=4436 CPUtime=70.04 cores=0-7
/proc/8285/task/8290/stat : 8290 (java) S 8283 8283 6711 0 -1 1077944384 40638 0 0 0 6393 611 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691282745744 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 19 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8291] ppid=8283 vsize=26006188 memory=4108 CPUtime=69.85 cores=0-7
/proc/8285/task/8291/stat : 8291 (java) S 8283 8283 6711 0 -1 1077944384 38994 0 0 0 6437 548 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691281693712 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 24 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8292] ppid=8283 vsize=26006188 memory=1152 CPUtime=69.94 cores=0-7
/proc/8285/task/8292/stat : 8292 (java) S 8283 8283 6711 0 -1 1077944384 66247 0 0 0 6435 559 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691280641168 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 24 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8293] ppid=8283 vsize=26006188 memory=3424 CPUtime=70.26 cores=0-7
/proc/8285/task/8293/stat : 8293 (java) S 8283 8283 6711 0 -1 1077944384 46534 0 0 0 6428 598 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691279588112 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 19 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8294] ppid=8283 vsize=26006188 memory=1384 CPUtime=69.87 cores=0-7
/proc/8285/task/8294/stat : 8294 (java) S 8283 8283 6711 0 -1 1077944384 42889 0 0 0 6440 547 0 0 20 0 20 0 151252596 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691278535568 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 23 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8295] ppid=8283 vsize=26006188 memory=3047711553219693942 CPUtime=28.46 cores=0-7
/proc/8285/task/8295/stat : 8295 (java) R 8283 8283 6711 0 -1 4202560 90719 0 0 0 2781 65 0 0 20 0 20 0 151252597 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690075398880 139691317741166 0 0 0 16800975 0 0 0 -1 0 0 0 1 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8296] ppid=8283 vsize=26006188 memory=4426639978525455914 CPUtime=0 cores=0-7
/proc/8285/task/8296/stat : 8296 (java) S 8283 8283 6711 0 -1 1077944384 57 0 0 0 0 0 0 0 20 0 20 0 151252597 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690074346656 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8297] ppid=8283 vsize=26006188 memory=4629546024076873078 CPUtime=0 cores=0-7
/proc/8285/task/8297/stat : 8297 (java) S 8283 8283 6711 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 20 0 151252598 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690073293552 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8298] ppid=8283 vsize=26006188 memory=8514726395715349656 CPUtime=0 cores=0-7
/proc/8285/task/8298/stat : 8298 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690072242128 139691333302171 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8299] ppid=8283 vsize=26006188 memory=-8634980985311628903 CPUtime=0.11 cores=0-7
/proc/8285/task/8299/stat : 8299 (java) S 8283 8283 6711 0 -1 1077944384 1520 0 0 0 11 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690071190304 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8300] ppid=8283 vsize=26006188 memory=7100839878645619564 CPUtime=0.16 cores=0-7
/proc/8285/task/8300/stat : 8300 (java) S 8283 8283 6711 0 -1 1077944384 1013 0 0 0 16 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690070137472 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8301] ppid=8283 vsize=26006188 memory=3047711553320166262 CPUtime=0.19 cores=0-7
/proc/8285/task/8301/stat : 8301 (java) S 8283 8283 6711 0 -1 1077944384 2860 0 0 0 19 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690069084704 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8302] ppid=8283 vsize=26006188 memory=8514701219730523551 CPUtime=0.36 cores=0-7
/proc/8285/task/8302/stat : 8302 (java) S 8283 8283 6711 0 -1 1077944384 7022 0 0 0 35 1 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690068032160 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8303] ppid=8283 vsize=26006188 memory=6081660941146025059 CPUtime=0 cores=0-7
/proc/8285/task/8303/stat : 8303 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690066979296 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8304] ppid=8283 vsize=26006188 memory=7953752088933459559 CPUtime=0.15 cores=0-7
/proc/8285/task/8304/stat : 8304 (java) S 8283 8283 6711 0 -1 1077944384 526 0 0 0 7 8 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690065926832 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 11 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
Current children cumulated CPU time: 864.58 s
Current children cumulated vsize: 26015700 KiB
Current children cumulated memory: 16192892 KiB

[startup+374.301 s]
/proc/loadavg: 2.94 2.88 5.10 2/199 8311
/proc/meminfo: memFree=9294612/32770624 swapFree=67108860/67108860
[pid=8283] ppid=8280 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/8283/stat : 8283 (xcsp3-exec) S 8280 8283 6711 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 151252594 9740288 346 33554432000 4194304 5098028 140720951970160 140720951968264 140009579192956 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 9097216 140720951972965 140720951973175 140720951973175 140720951975915 0
/proc/8283/statm: 2378 346 289 221 0 87 0
[pid=8285] ppid=8283 vsize=26006188 memory=16191508 CPUtime=864.68 cores=0-7
/proc/8285/stat : 8285 (java) S 8283 8283 6711 0 -1 1077944320 518917 0 0 0 81788 4680 0 0 20 0 20 0 151252594 26630336512 4047877 33554432000 4194304 4196468 140728880831008 140728880813552 139691333283575 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
/proc/8285/statm: 6501547 4047877 3240 1 0 6488781 0
[pid=8285/tid=8286] ppid=8283 vsize=26006188 memory=16191508 CPUtime=274.52 cores=0-7
/proc/8285/task/8286/stat : 8286 (java) S 8283 8283 6711 0 -1 1077944384 17423 0 0 0 27436 16 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691337521696 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8287] ppid=8283 vsize=26006188 memory=1384 CPUtime=70.23 cores=0-7
/proc/8285/task/8287/stat : 8287 (java) S 8283 8283 6711 0 -1 1077944384 44472 0 0 0 6475 548 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691285903888 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 26 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8288] ppid=8283 vsize=26006188 memory=16191508 CPUtime=70.07 cores=0-7
/proc/8285/task/8288/stat : 8288 (java) S 8283 8283 6711 0 -1 1077944384 55543 0 0 0 6424 583 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691284851344 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 22 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8289] ppid=8283 vsize=26006188 memory=1384 CPUtime=70.21 cores=0-7
/proc/8285/task/8289/stat : 8289 (java) S 8283 8283 6711 0 -1 1077944384 58661 0 0 0 6431 590 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691283798288 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 22 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8290] ppid=8283 vsize=26006188 memory=1384 CPUtime=70.04 cores=0-7
/proc/8285/task/8290/stat : 8290 (java) S 8283 8283 6711 0 -1 1077944384 40638 0 0 0 6393 611 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691282745744 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 19 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8291] ppid=8283 vsize=26006188 memory=1384 CPUtime=69.85 cores=0-7
/proc/8285/task/8291/stat : 8291 (java) S 8283 8283 6711 0 -1 1077944384 38994 0 0 0 6437 548 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691281693712 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 24 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8292] ppid=8283 vsize=26006188 memory=16191508 CPUtime=69.94 cores=0-7
/proc/8285/task/8292/stat : 8292 (java) S 8283 8283 6711 0 -1 1077944384 66247 0 0 0 6435 559 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691280641168 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 24 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8293] ppid=8283 vsize=26006188 memory=1384 CPUtime=70.26 cores=0-7
/proc/8285/task/8293/stat : 8293 (java) S 8283 8283 6711 0 -1 1077944384 46534 0 0 0 6428 598 0 0 20 0 20 0 151252595 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691279588112 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 19 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8294] ppid=8283 vsize=26006188 memory=16191508 CPUtime=69.87 cores=0-7
/proc/8285/task/8294/stat : 8294 (java) S 8283 8283 6711 0 -1 1077944384 42889 0 0 0 6440 547 0 0 20 0 20 0 151252596 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139691278535568 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 23 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8295] ppid=8283 vsize=26006188 memory=2257 CPUtime=28.56 cores=0-7
/proc/8285/task/8295/stat : 8295 (java) R 8283 8283 6711 0 -1 4202560 93538 0 0 0 2791 65 0 0 20 0 20 0 151252597 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690075398880 139691312484622 0 0 0 16800975 0 0 0 -1 0 0 0 1 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8296] ppid=8283 vsize=26006188 memory=0 CPUtime=0 cores=0-7
/proc/8285/task/8296/stat : 8296 (java) S 8283 8283 6711 0 -1 1077944384 57 0 0 0 0 0 0 0 20 0 20 0 151252597 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690074346656 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8297] ppid=8283 vsize=26006188 memory=2196 CPUtime=0 cores=0-7
/proc/8285/task/8297/stat : 8297 (java) S 8283 8283 6711 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 20 0 151252598 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690073293552 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8298] ppid=8283 vsize=26006188 memory=8052 CPUtime=0 cores=0-7
/proc/8285/task/8298/stat : 8298 (java) S 8283 8283 6711 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690072242128 139691333302171 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8299] ppid=8283 vsize=26006188 memory=1384 CPUtime=0.11 cores=0-7
/proc/8285/task/8299/stat : 8299 (java) S 8283 8283 6711 0 -1 1077944384 1520 0 0 0 11 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690071190304 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8300] ppid=8283 vsize=26006188 memory=1384 CPUtime=0.16 cores=0-7
/proc/8285/task/8300/stat : 8300 (java) S 8283 8283 6711 0 -1 1077944384 1013 0 0 0 16 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690070137472 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8301] ppid=8283 vsize=26006188 memory=1384 CPUtime=0.19 cores=0-7
/proc/8285/task/8301/stat : 8301 (java) S 8283 8283 6711 0 -1 1077944384 2860 0 0 0 19 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690069084704 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8302] ppid=8283 vsize=26006188 memory=16191508 CPUtime=0.36 cores=0-7
/proc/8285/task/8302/stat : 8302 (java) S 8283 8283 6711 0 -1 1077944384 7022 0 0 0 35 1 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690068032160 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8303] ppid=8283 vsize=26006188 memory=4096 CPUtime=0 cores=0-7
/proc/8285/task/8303/stat : 8303 (java) S 8283 8283 6711 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690066979296 139691333293781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
[pid=8285/tid=8304] ppid=8283 vsize=26006188 memory=42480 CPUtime=0.15 cores=0-7
/proc/8285/task/8304/stat : 8304 (java) S 8283 8283 6711 0 -1 1077944384 526 0 0 0 7 8 0 0 20 0 20 0 151252600 26630336512 4047877 33554432000 4194304 4196468 140728880831008 139690065926832 139691333294722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 11 0 0 6293624 6294260 30310400 140728880837778 140728880837955 140728880837955 140728880840655 0
Current children cumulated CPU time: 864.68 s
Current children cumulated vsize: 26015700 KiB
Current children cumulated memory: 16192892 KiB

Child status: 1
Real time (s): 374.378
CPU time (s): 864.778
CPU user time (s): 817.897
CPU system time (s): 46.8812
CPU usage (%): 230.991
Max. virtual memory (cumulated for all children) (KiB): 26015700
Max. memory (cumulated for all children) (KiB): 16192892

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 817.897
system time used= 46.8812
maximum resident set size= 16192108
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 522970
page faults= 0
swaps= 0
block input operations= 0
block output operations= 656
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 34548
involuntary context switches= 9552


# summary of solver processes directly reported to runsolver:
#   pid: 8283
#   total CPU time (s): 864.778
#   total CPU user time (s): 817.897
#   total CPU system time (s): 46.8812

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.70618 second user time and 3.55333 second system time

The end

Launcher Data

Begin job on node148 at 2017-08-20 00:14:17
IDJOB=4281191
IDBENCH=140560
IDSOLVER=2675
FILE ID=node148/4281191-1503181717
RUNJOBID= node148-1503175375-6738
PBS_JOBID= 20630845
Free space on /tmp= 61948 MiB

SOLVER NAME= choco-solver 4.0.5 par
BENCH NAME= XCSP17/Ramsey/Ramsey-int-s1/Ramsey-int-15.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 22000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4281191-1503181717/watcher-4281191-1503181717 -o /tmp/evaluation-result-4281191-1503181717/solver-4281191-1503181717 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node148-1503175375-6738 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 22000 -tdir HOME -seed 961878190 HOME/instance-4281191-1503181717.xml

TIME LIMIT= 20160 seconds
MEMORY LIMIT= 31000 MiB
NBCORE= 8

MD5SUM BENCH= 4870bb42219503db6b08817d9224dcd4
RANDOM SEED=961878190

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

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

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.19
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.19
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.19
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.19
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:        25502888 kB
MemAvailable:   31974092 kB
Buffers:          295396 kB
Cached:          6469468 kB
SwapCached:            0 kB
Active:          1167760 kB
Inactive:        5649892 kB
Active(anon):       4160 kB
Inactive(anon):    84704 kB
Active(file):    1163600 kB
Inactive(file):  5565188 kB
Unevictable:        7784 kB
Mlocked:            7784 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              7604 kB
Writeback:             0 kB
AnonPages:         78984 kB
Mapped:            52036 kB
Shmem:             33416 kB
Slab:             143560 kB
SReclaimable:     116504 kB
SUnreclaim:        27056 kB
KernelStack:        3280 kB
PageTables:         4888 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     333488 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     24576 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      126336 kB
DirectMap2M:    33419264 kB

Free space on /tmp at the end= 61940 MiB
End job on node148 at 2017-08-20 00:20:31