Trace number 4244518

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
R1: Concrete 3.4? (TO) 2402.56 2326.36

General information on the benchmark

NameScheduling/Scheduling-js-taillard/
Taillard-js-015-15-4.xml
MD5SUM428eef4dc0068476798a4d67b3fd28ef
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark1233
Best CPU time to get the best result obtained on this benchmark2400.03
Satisfiable
(Un)Satisfiability was proved
Number of variables240
Number of constraints255
Number of domains1
Minimum domain size1333
Maximum domain size1333
Distribution of domain sizes[{"size":1333,"count":240}]
Minimum variable degree2
Maximum variable degree3
Distribution of variable degrees[{"degree":2,"count":15},{"degree":3,"count":225}]
Minimum constraint arity1
Maximum constraint arity15
Distribution of constraint arities[{"arity":1,"count":15},{"arity":2,"count":225},{"arity":15,"count":15}]
Number of extensional constraints0
Number of intensional constraints240
Distribution of constraint types[{"type":"intension","count":240},{"type":"noOverlap","count":15}]
Optimization problemYES
Type of objectivemin MAXIMUM

Solver Data

3.64/2.13	c Concrete v3.4 running
2402.39/2326.33	java.util.concurrent.TimeoutException
2402.39/2326.33		at concrete.MAC.mac(MAC.scala:74)
2402.39/2326.33		at concrete.MAC.$anonfun$oneRun$1(MAC.scala:145)
2402.39/2326.33		at scala.util.Try$.apply(Try.scala:209)
2402.39/2326.33		at cspom.StatisticsManager$.$anonfun$measure$1(StatisticsManager.scala:194)
2402.39/2326.33		at cspom.StatisticsManager$.$anonfun$measureTry$1(StatisticsManager.scala:182)
2402.39/2326.33		at scala.runtime.java8.JFunction0$mcZ$sp.apply(JFunction0$mcZ$sp.java:12)
2402.39/2326.33		at org.scalameter.MeasureBuilder.$anonfun$measure$1(MeasureBuilder.scala:61)
2402.39/2326.33		at org.scalameter.Measurer$Default.measure(Measurer.scala:131)
2402.39/2326.33		at org.scalameter.MeasureBuilder.measureWith(MeasureBuilder.scala:51)
2402.39/2326.33		at org.scalameter.MeasureBuilder.measure(MeasureBuilder.scala:61)
2402.39/2326.33		at cspom.StatisticsManager$.measureTry(StatisticsManager.scala:181)
2402.39/2326.33		at cspom.StatisticsManager$.measure(StatisticsManager.scala:194)
2402.39/2326.33		at concrete.MAC.oneRun(MAC.scala:146)
2402.39/2326.33		at concrete.MAC.nextSolution(MAC.scala:166)
2402.39/2326.33		at concrete.MAC.$anonfun$nextSolution$2(MAC.scala:196)
2402.39/2326.33		at concrete.ProblemState.map(ProblemState.scala:203)
2402.39/2326.33		at concrete.ProblemState.map(ProblemState.scala:188)
2402.39/2326.33		at concrete.MAC.nextSolution(MAC.scala:195)
2402.39/2326.33		at concrete.Solver.hasNext(Solver.scala:202)
2402.39/2326.33		at scala.collection.Iterator.toStream(Iterator.scala:1403)
2402.39/2326.33		at scala.collection.Iterator.toStream$(Iterator.scala:1402)
2402.39/2326.33		at concrete.Solver.toStream(Solver.scala:73)
2402.39/2326.33		at scala.collection.TraversableOnce.toIterable(TraversableOnce.scala:296)
2402.39/2326.33		at scala.collection.TraversableOnce.toIterable$(TraversableOnce.scala:296)
2402.39/2326.33		at concrete.Solver.toIterable(Solver.scala:73)
2402.39/2326.33		at concrete.runner.ConcreteRunner.$anonfun$run$10(ConcreteRunner.scala:157)
2402.39/2326.33		at scala.util.Success.$anonfun$map$1(Try.scala:251)
2402.39/2326.33		at scala.util.Success.map(Try.scala:209)
2402.39/2326.33		at concrete.runner.ConcreteRunner.run(ConcreteRunner.scala:154)
2402.39/2326.33		at concrete.runner.ConcreteRunner.run$(ConcreteRunner.scala:72)
2402.39/2326.33		at concrete.runner.XCSP3Concrete$.run(XCSP3Concrete.scala:17)
2402.39/2326.33		at concrete.runner.XCSP3Concrete$.delayedEndpoint$concrete$runner$XCSP3Concrete$1(XCSP3Concrete.scala:119)
2402.39/2326.33		at concrete.runner.XCSP3Concrete$delayedInit$body.apply(XCSP3Concrete.scala:17)
2402.39/2326.33		at scala.Function0.apply$mcV$sp(Function0.scala:34)
2402.39/2326.33		at scala.Function0.apply$mcV$sp$(Function0.scala:34)
2402.39/2326.33		at scala.runtime.AbstractFunction0.apply$mcV$sp(AbstractFunction0.scala:12)
2402.39/2326.33		at scala.App.$anonfun$main$1$adapted(App.scala:76)
2402.39/2326.33		at scala.collection.immutable.List.foreach(List.scala:389)
2402.39/2326.33		at scala.App.main(App.scala:76)
2402.39/2326.33		at scala.App.main$(App.scala:74)
2402.39/2326.33		at concrete.runner.XCSP3Concrete$.main(XCSP3Concrete.scala:17)
2402.39/2326.33		at concrete.runner.XCSP3Concrete.main(XCSP3Concrete.scala)
2402.39/2326.34	s UNKNOWN

Verifier Data


Watcher Data

runsolver Copyright (C) 2010-2013 Olivier ROUSSEL

This is runsolver version 3.3.7 (svn: 2553)

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4244518-1500688702/watcher-4244518-1500688702 -o /tmp/evaluation-result-4244518-1500688702/solver-4244518-1500688702 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node138-1500684099-14649 --watchdog 2560 bin/concrete HOME/instance-4244518-1500688702.xml 

pid=15507
running on 8 cores: 0,2,4,6,8,10,12,14

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Current StackSize limit: 8192 KiB


[startup+0 s]
/proc/loadavg: 1.88 1.80 1.79 3/261 15510
/proc/meminfo: memFree=28917840/32770624 swapFree=5940/245828
[pid=15510] ppid=15507 vsize=9508 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (bash) S 15507 15510 14618 0 -1 4202496 686 1532 0 0 0 0 0 0 20 0 1 0 4137103 9736192 351 33554432000 4194304 5098028 140724967962144 140724967959784 139643955248128 0 0 4100 65536 18446744071580971376 0 0 17 10 0 0 0 0 0 7196144 7232144 19595264 140724967970062 140724967970147 140724967970147 140724967972846 0
/proc/15510/statm: 2377 351 278 221 0 86 0

[startup+0.100135 s]
/proc/loadavg: 1.88 1.80 1.79 3/261 15510
/proc/meminfo: memFree=28917840/32770624 swapFree=5940/245828
[pid=15510] ppid=15507 vsize=9640 CPUtime=0.01 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (bash) S 15507 15510 14618 0 -1 4202496 884 6413 0 0 0 0 0 1 20 0 1 0 4137103 9871360 378 33554432000 4194304 5098028 140724967962144 140724967956152 139643955248128 0 0 4100 65536 18446744071580971376 0 0 17 10 0 0 0 0 0 7196144 7232144 19595264 140724967970062 140724967970147 140724967970147 140724967972846 0
/proc/15510/statm: 2410 378 296 221 0 119 0
Current children cumulated CPU time (s) 0.01
Current children cumulated vsize (KiB) 9640

[startup+0.200422 s]
/proc/loadavg: 1.88 1.80 1.79 3/261 15510
/proc/meminfo: memFree=28917840/32770624 swapFree=5940/245828
[pid=15510] ppid=15507 vsize=10435860 CPUtime=0.18 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 5160 12542 0 0 5 1 8 4 20 0 13 0 4137103 10686320640 5477 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800971 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2608965 5477 2166 1 0 2597403 0
Current children cumulated CPU time (s) 0.18
Current children cumulated vsize (KiB) 10435860

[startup+0.300393 s]
/proc/loadavg: 1.88 1.80 1.79 3/261 15510
/proc/meminfo: memFree=28917840/32770624 swapFree=5940/245828
[pid=15510] ppid=15507 vsize=10902424 CPUtime=0.36 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 9603 12542 0 0 22 2 8 4 20 0 20 0 4137103 11164082176 10713 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800975 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2725606 10713 2992 1 0 2713898 0
Current children cumulated CPU time (s) 0.36
Current children cumulated vsize (KiB) 10902424

[startup+0.700209 s]
/proc/loadavg: 1.88 1.80 1.79 3/261 15510
/proc/meminfo: memFree=28917840/32770624 swapFree=5940/245828
[pid=15510] ppid=15507 vsize=10902720 CPUtime=0.97 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 12954 12542 0 0 80 5 8 4 20 0 20 0 4137103 11164385280 16250 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800975 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2725680 16250 3218 1 0 2713890 0
Current children cumulated CPU time (s) 0.97
Current children cumulated vsize (KiB) 10902720

[startup+1.50083 s]
/proc/loadavg: 1.88 1.80 1.79 3/281 15583
/proc/meminfo: memFree=28811280/32770624 swapFree=5940/246004
[pid=15510] ppid=15507 vsize=10913344 CPUtime=2.28 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 26665 12542 0 0 204 12 8 4 20 0 20 0 4137103 11175264256 44236 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800975 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2728336 44236 3405 1 0 2716450 0
[pid=15510/tid=15565] ppid=15507 vsize=10913344 CPUtime=1.43 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15565/stat : 15565 (java) R 15507 15510 14618 0 -1 4202560 19252 12542 0 0 125 6 8 4 20 0 20 0 4137116 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767191648064 139767187438998 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15566] ppid=15507 vsize=10913344 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15566/stat : 15566 (java) S 15507 15510 14618 0 -1 1077944384 13 12542 0 0 0 0 8 4 20 0 20 0 4137117 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767113501072 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15567] ppid=15507 vsize=10913344 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15567/stat : 15567 (java) S 15507 15510 14618 0 -1 1077944384 15 12542 0 0 1 0 8 4 20 0 20 0 4137117 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767112448272 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15568] ppid=15507 vsize=10913344 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15568/stat : 15568 (java) S 15507 15510 14618 0 -1 1077944384 43 12542 0 0 1 0 8 4 20 0 20 0 4137117 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767111395984 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15569] ppid=15507 vsize=10913344 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15569/stat : 15569 (java) S 15507 15510 14618 0 -1 1077944384 18 12542 0 0 1 0 8 4 20 0 20 0 4137117 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767110343184 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15570] ppid=15507 vsize=10913344 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15570/stat : 15570 (java) S 15507 15510 14618 0 -1 1077944384 40 12542 0 0 1 0 8 4 20 0 20 0 4137117 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767109290896 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15571] ppid=15507 vsize=10913344 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15571/stat : 15571 (java) S 15507 15510 14618 0 -1 1077944384 130 12542 0 0 1 0 8 4 20 0 20 0 4137117 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767108238096 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15572] ppid=15507 vsize=10913344 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15572/stat : 15572 (java) S 15507 15510 14618 0 -1 1077944384 40 12542 0 0 1 0 8 4 20 0 20 0 4137117 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767107185808 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15573] ppid=15507 vsize=10913344 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15573/stat : 15573 (java) S 15507 15510 14618 0 -1 1077944384 22 12542 0 0 1 0 8 4 20 0 20 0 4137117 11175264256 44236 33554432000 4194304 4196468 140733975401936 139767106133008 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15574] ppid=15507 vsize=10913344 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15574/stat : 15574 (java) S 15507 15510 14618 0 -1 1077944384 768 12542 0 0 1 0 8 4 20 0 20 0 4137119 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766393645168 139767187438210 0 0 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15575] ppid=15507 vsize=10913344 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15575/stat : 15575 (java) S 15507 15510 14618 0 -1 1077944384 55 12542 0 0 0 0 8 4 20 0 20 0 4137120 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766392591200 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15576] ppid=15507 vsize=10913344 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15576/stat : 15576 (java) S 15507 15510 14618 0 -1 1077944384 43 12542 0 0 0 0 8 4 20 0 20 0 4137120 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766391538816 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15577] ppid=15507 vsize=10913344 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15577/stat : 15577 (java) S 15507 15510 14618 0 -1 1077944384 1 12542 0 0 0 0 8 4 20 0 20 0 4137124 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766390487120 139767187445659 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15578] ppid=15507 vsize=10913344 CPUtime=0.26 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15578/stat : 15578 (java) S 15507 15510 14618 0 -1 1077944384 1629 12542 0 0 14 0 8 4 20 0 20 0 4137124 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766389434992 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15579] ppid=15507 vsize=10913344 CPUtime=0.26 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15579/stat : 15579 (java) S 15507 15510 14618 0 -1 1077944384 501 12542 0 0 14 0 8 4 20 0 20 0 4137124 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766388382192 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15580] ppid=15507 vsize=10913344 CPUtime=0.23 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15580/stat : 15580 (java) S 15507 15510 14618 0 -1 1077944384 620 12542 0 0 11 0 8 4 20 0 20 0 4137124 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766387329904 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15581] ppid=15507 vsize=10913344 CPUtime=0.38 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15581/stat : 15581 (java) S 15507 15510 14618 0 -1 1077944384 1334 12542 0 0 26 0 8 4 20 0 20 0 4137124 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766386277104 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15582] ppid=15507 vsize=10913344 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15582/stat : 15582 (java) S 15507 15510 14618 0 -1 1077944384 3 12542 0 0 0 0 8 4 20 0 20 0 4137124 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766385224032 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15583] ppid=15507 vsize=10913344 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15583/stat : 15583 (java) S 15507 15510 14618 0 -1 1077944384 6 12542 0 0 0 0 8 4 20 0 20 0 4137124 11175264256 44236 33554432000 4194304 4196468 140733975401936 139766384171312 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
Current children cumulated CPU time (s) 2.28
Current children cumulated vsize (KiB) 10913344

[startup+3.10106 s]
/proc/loadavg: 1.88 1.80 1.79 4/281 15583
/proc/meminfo: memFree=28743880/32770624 swapFree=5940/246004
[pid=15510] ppid=15507 vsize=10925820 CPUtime=6.42 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 41629 12542 0 0 611 19 8 4 20 0 20 0 4137103 11188039680 60077 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800975 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2731455 60077 3476 1 0 2719010 0
[pid=15510/tid=15565] ppid=15507 vsize=10925820 CPUtime=3.02 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15565/stat : 15565 (java) R 15507 15510 14618 0 -1 4202560 26789 12542 0 0 281 9 8 4 20 0 20 0 4137116 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767191657016 139766786507566 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15566] ppid=15507 vsize=10925820 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15566/stat : 15566 (java) S 15507 15510 14618 0 -1 1077944384 13 12542 0 0 0 0 8 4 20 0 20 0 4137117 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767113501072 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15567] ppid=15507 vsize=10925820 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15567/stat : 15567 (java) S 15507 15510 14618 0 -1 1077944384 15 12542 0 0 1 0 8 4 20 0 20 0 4137117 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767112448272 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15568] ppid=15507 vsize=10925820 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15568/stat : 15568 (java) S 15507 15510 14618 0 -1 1077944384 43 12542 0 0 1 0 8 4 20 0 20 0 4137117 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767111395984 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15569] ppid=15507 vsize=10925820 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15569/stat : 15569 (java) S 15507 15510 14618 0 -1 1077944384 18 12542 0 0 1 0 8 4 20 0 20 0 4137117 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767110343184 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15570] ppid=15507 vsize=10925820 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15570/stat : 15570 (java) S 15507 15510 14618 0 -1 1077944384 40 12542 0 0 1 0 8 4 20 0 20 0 4137117 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767109290896 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15571] ppid=15507 vsize=10925820 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15571/stat : 15571 (java) S 15507 15510 14618 0 -1 1077944384 130 12542 0 0 1 0 8 4 20 0 20 0 4137117 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767108238096 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15572] ppid=15507 vsize=10925820 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15572/stat : 15572 (java) S 15507 15510 14618 0 -1 1077944384 40 12542 0 0 1 0 8 4 20 0 20 0 4137117 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767107185808 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15573] ppid=15507 vsize=10925820 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15573/stat : 15573 (java) S 15507 15510 14618 0 -1 1077944384 22 12542 0 0 1 0 8 4 20 0 20 0 4137117 11188039680 60077 33554432000 4194304 4196468 140733975401936 139767106133008 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15574] ppid=15507 vsize=10925820 CPUtime=0.13 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15574/stat : 15574 (java) S 15507 15510 14618 0 -1 1077944384 786 12542 0 0 1 0 8 4 20 0 20 0 4137119 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766393645168 139767187438210 0 0 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15575] ppid=15507 vsize=10925820 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15575/stat : 15575 (java) S 15507 15510 14618 0 -1 1077944384 55 12542 0 0 0 0 8 4 20 0 20 0 4137120 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766392591200 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15576] ppid=15507 vsize=10925820 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15576/stat : 15576 (java) S 15507 15510 14618 0 -1 1077944384 43 12542 0 0 0 0 8 4 20 0 20 0 4137120 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766391538816 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15577] ppid=15507 vsize=10925820 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15577/stat : 15577 (java) S 15507 15510 14618 0 -1 1077944384 1 12542 0 0 0 0 8 4 20 0 20 0 4137124 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766390487120 139767187445659 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15578] ppid=15507 vsize=10925820 CPUtime=0.82 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15578/stat : 15578 (java) R 15507 15510 14618 0 -1 4202560 2437 12542 0 0 69 1 8 4 20 0 20 0 4137124 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766389418704 139767172323023 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15579] ppid=15507 vsize=10925820 CPUtime=0.82 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15579/stat : 15579 (java) R 15507 15510 14618 0 -1 4202560 1476 12542 0 0 70 0 8 4 20 0 20 0 4137124 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766388368736 139767168947123 0 4 0 16800975 0 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15580] ppid=15507 vsize=10925820 CPUtime=0.79 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15580/stat : 15580 (java) R 15507 15510 14618 0 -1 4202560 1702 12542 0 0 66 1 8 4 20 0 20 0 4137124 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766387314672 139767167082241 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15581] ppid=15507 vsize=10925820 CPUtime=1.26 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15581/stat : 15581 (java) S 15507 15510 14618 0 -1 1077944384 5875 12542 0 0 112 2 8 4 20 0 20 0 4137124 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766386277104 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15582] ppid=15507 vsize=10925820 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15582/stat : 15582 (java) S 15507 15510 14618 0 -1 1077944384 3 12542 0 0 0 0 8 4 20 0 20 0 4137124 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766385224032 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15583] ppid=15507 vsize=10925820 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15583/stat : 15583 (java) S 15507 15510 14618 0 -1 1077944384 9 12542 0 0 0 0 8 4 20 0 20 0 4137124 11188039680 60077 33554432000 4194304 4196468 140733975401936 139766384171312 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
Current children cumulated CPU time (s) 6.42
Current children cumulated vsize (KiB) 10925820

[startup+6.30113 s]
/proc/loadavg: 1.97 1.82 1.79 5/281 15583
/proc/meminfo: memFree=28576568/32770624 swapFree=5940/246016
[pid=15510] ppid=15507 vsize=10997500 CPUtime=17.7 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 77302 12542 0 0 1718 40 8 4 20 0 20 0 4137103 11261440000 102632 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800975 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2749375 102632 3510 1 0 2736930 0
[pid=15510/tid=15565] ppid=15507 vsize=10997500 CPUtime=6.1 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15565/stat : 15565 (java) R 15507 15510 14618 0 -1 4202560 40345 12542 0 0 585 13 8 4 20 0 20 0 4137116 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767191660408 139767169277468 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15566] ppid=15507 vsize=10997500 CPUtime=0.19 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15566/stat : 15566 (java) S 15507 15510 14618 0 -1 1077944384 64 12542 0 0 6 1 8 4 20 0 20 0 4137117 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767113501072 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15567] ppid=15507 vsize=10997500 CPUtime=0.2 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15567/stat : 15567 (java) S 15507 15510 14618 0 -1 1077944384 93 12542 0 0 7 1 8 4 20 0 20 0 4137117 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767112448272 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15568] ppid=15507 vsize=10997500 CPUtime=0.19 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15568/stat : 15568 (java) S 15507 15510 14618 0 -1 1077944384 62 12542 0 0 6 1 8 4 20 0 20 0 4137117 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767111395984 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15569] ppid=15507 vsize=10997500 CPUtime=0.19 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15569/stat : 15569 (java) S 15507 15510 14618 0 -1 1077944384 42 12542 0 0 6 1 8 4 20 0 20 0 4137117 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767110343184 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15570] ppid=15507 vsize=10997500 CPUtime=0.2 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15570/stat : 15570 (java) S 15507 15510 14618 0 -1 1077944384 77 12542 0 0 7 1 8 4 20 0 20 0 4137117 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767109290896 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15571] ppid=15507 vsize=10997500 CPUtime=0.19 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15571/stat : 15571 (java) S 15507 15510 14618 0 -1 1077944384 157 12542 0 0 6 1 8 4 20 0 20 0 4137117 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767108238096 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15572] ppid=15507 vsize=10997500 CPUtime=0.21 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15572/stat : 15572 (java) S 15507 15510 14618 0 -1 1077944384 67 12542 0 0 7 2 8 4 20 0 20 0 4137117 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767107185808 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15573] ppid=15507 vsize=10997500 CPUtime=0.21 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15573/stat : 15573 (java) S 15507 15510 14618 0 -1 1077944384 52 12542 0 0 7 2 8 4 20 0 20 0 4137117 11261440000 102632 33554432000 4194304 4196468 140733975401936 139767106133008 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15574] ppid=15507 vsize=10997500 CPUtime=0.16 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15574/stat : 15574 (java) S 15507 15510 14618 0 -1 1077944384 1832 12542 0 0 4 0 8 4 20 0 20 0 4137119 11261440000 102632 33554432000 4194304 4196468 140733975401936 139766393645168 139767187438210 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15575] ppid=15507 vsize=10997500 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15575/stat : 15575 (java) S 15507 15510 14618 0 -1 1077944384 55 12542 0 0 0 0 8 4 20 0 20 0 4137120 11261440000 102632 33554432000 4194304 4196468 140733975401936 139766392591200 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15576] ppid=15507 vsize=10997500 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15576/stat : 15576 (java) S 15507 15510 14618 0 -1 1077944384 44 12542 0 0 0 0 8 4 20 0 20 0 4137120 11261440000 102632 33554432000 4194304 4196468 140733975401936 139766391538816 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15577] ppid=15507 vsize=10997500 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15577/stat : 15577 (java) S 15507 15510 14618 0 -1 1077944384 1 12542 0 0 0 0 8 4 20 0 20 0 4137124 11261440000 102632 33554432000 4194304 4196468 140733975401936 139766390487120 139767187445659 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15578] ppid=15507 vsize=10997500 CPUtime=2.96 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15578/stat : 15578 (java) R 15507 15510 14618 0 -1 4202560 9414 12542 0 0 282 2 8 4 20 0 20 0 4137124 11261440000 102632 33554432000 4194304 4196468 140733975401936 139766389421344 139767166672911 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15579] ppid=15507 vsize=10997500 CPUtime=2.81 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15579/stat : 15579 (java) R 15507 15510 14618 0 -1 4202560 4140 12542 0 0 268 1 8 4 20 0 20 0 4137124 11261440000 102632 33554432000 4194304 4196468 140733975401936 139766388370992 139767173469202 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15580] ppid=15507 vsize=10997500 CPUtime=3.15 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15580/stat : 15580 (java) R 15507 15510 14618 0 -1 4202560 10524 12542 0 0 301 2 8 4 20 0 20 0 4137124 11261440000 102632 33554432000 4194304 4196468 140733975401936 139766387318896 139767167263401 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15581] ppid=15507 vsize=10997500 CPUtime=2.34 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15581/stat : 15581 (java) S 15507 15510 14618 0 -1 1077944384 7995 12542 0 0 219 3 8 4 20 0 20 0 4137124 11261440000 102632 33554432000 4194304 4196468 140733975401936 139766386277104 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15582] ppid=15507 vsize=10997500 CPUtime=0.12 cores=0,2,4,6,8,10,12,14

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

[pid=15510/tid=15577] ppid=15507 vsize=10997500 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15577/stat : 15577 (java) S 15507 15510 14618 0 -1 1077944384 1 12542 0 0 0 0 8 4 20 0 20 0 4137124 11261440000 403473 33554432000 4194304 4196468 140733975401936 139766390487120 139767187445659 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15578] ppid=15507 vsize=10997500 CPUtime=3.66 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15578/stat : 15578 (java) S 15507 15510 14618 0 -1 1077944384 20947 12542 0 0 351 3 8 4 20 0 20 0 4137124 11261440000 403473 33554432000 4194304 4196468 140733975401936 139766389434992 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15579] ppid=15507 vsize=10997500 CPUtime=3.42 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15579/stat : 15579 (java) S 15507 15510 14618 0 -1 1077944384 10862 12542 0 0 328 2 8 4 20 0 20 0 4137124 11261440000 403473 33554432000 4194304 4196468 140733975401936 139766388382192 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15580] ppid=15507 vsize=10997500 CPUtime=3.74 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15580/stat : 15580 (java) S 15507 15510 14618 0 -1 1077944384 14237 12542 0 0 359 3 8 4 20 0 20 0 4137124 11261440000 403473 33554432000 4194304 4196468 140733975401936 139766387329904 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15581] ppid=15507 vsize=10997500 CPUtime=2.45 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15581/stat : 15581 (java) S 15507 15510 14618 0 -1 1077944384 20432 12542 0 0 229 4 8 4 20 0 20 0 4137124 11261440000 403473 33554432000 4194304 4196468 140733975401936 139766386277104 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15582] ppid=15507 vsize=10997500 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15582/stat : 15582 (java) S 15507 15510 14618 0 -1 1077944384 3 12542 0 0 0 0 8 4 20 0 20 0 4137124 11261440000 403473 33554432000 4194304 4196468 140733975401936 139766385224032 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15583] ppid=15507 vsize=10997500 CPUtime=1.41 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15583/stat : 15583 (java) S 15507 15510 14618 0 -1 1077944384 3082 12542 0 0 70 59 8 4 20 0 20 0 4137124 11261440000 403473 33554432000 4194304 4196468 140733975401936 139766384171312 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
Current children cumulated CPU time (s) 2400.06
Current children cumulated vsize (KiB) 10997500

Sending SIGTERM to process tree (bottom up)
Sleeping 2 seconds

Solver just ended.
??? exit watcher main loop
??? sigkill at end of watcher main loop
??? kill 15510 sig 9
??? end of watcher thread
Dumping a history of the last processes samples

[startup+2326.01 s]
/proc/loadavg: 1.72 1.52 1.49 3/281 15813
/proc/meminfo: memFree=28607024/32770624 swapFree=5940/248176
[pid=15510] ppid=15507 vsize=11130628 CPUtime=2400.48 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 323745 12542 0 0 239586 450 8 4 20 0 22 0 4137103 11397763072 405161 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800975 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2782657 405161 3517 1 0 2770212 0
[pid=15510/tid=15565] ppid=15507 vsize=11130628 CPUtime=2305.59 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15565/stat : 15565 (java) S 15507 15510 14618 0 -1 1077944384 96970 12542 0 0 230495 52 8 4 20 0 22 0 4137116 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767191664736 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15566] ppid=15507 vsize=11130628 CPUtime=9.24 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15566/stat : 15566 (java) R 15507 15510 14618 0 -1 4202560 20649 12542 0 0 870 42 8 4 20 0 22 0 4137117 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767113501192 139767180055271 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15567] ppid=15507 vsize=11130628 CPUtime=9.35 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15567/stat : 15567 (java) R 15507 15510 14618 0 -1 4202560 13160 12542 0 0 882 41 8 4 20 0 22 0 4137117 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767112448392 139767170810098 0 4 0 16800975 0 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15568] ppid=15507 vsize=11130628 CPUtime=9.41 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15568/stat : 15568 (java) R 15507 15510 14618 0 -1 4202560 12901 12542 0 0 887 42 8 4 20 0 22 0 4137117 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767111396104 139767180055271 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15569] ppid=15507 vsize=11130628 CPUtime=9.5 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15569/stat : 15569 (java) R 15507 15510 14618 0 -1 4202560 8326 12542 0 0 896 42 8 4 20 0 22 0 4137117 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767110343304 139767170810098 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15570] ppid=15507 vsize=11130628 CPUtime=9.22 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15570/stat : 15570 (java) R 15507 15510 14618 0 -1 4202560 16835 12542 0 0 870 40 8 4 20 0 22 0 4137117 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767109291016 139767180055271 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15571] ppid=15507 vsize=11130628 CPUtime=9.29 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15571/stat : 15571 (java) R 15507 15510 14618 0 -1 4202560 16625 12542 0 0 878 39 8 4 20 0 22 0 4137117 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767108238296 139767172127771 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15572] ppid=15507 vsize=11130628 CPUtime=9.34 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15572/stat : 15572 (java) R 15507 15510 14618 0 -1 4202560 12899 12542 0 0 880 42 8 4 20 0 22 0 4137117 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767107185928 139767180055271 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15573] ppid=15507 vsize=11130628 CPUtime=9.34 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15573/stat : 15573 (java) S 15507 15510 14618 0 -1 1077944384 18972 12542 0 0 881 41 8 4 20 0 22 0 4137117 11397763072 405161 33554432000 4194304 4196468 140733975401936 139767106132816 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15574] ppid=15507 vsize=11130628 CPUtime=7.01 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15574/stat : 15574 (java) S 15507 15510 14618 0 -1 1077944384 32701 12542 0 0 653 36 8 4 20 0 22 0 4137119 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766393643792 139767187437269 0 0 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15575] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15575/stat : 15575 (java) S 15507 15510 14618 0 -1 1077944384 57 12542 0 0 0 0 8 4 20 0 22 0 4137120 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766392591200 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15576] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15576/stat : 15576 (java) S 15507 15510 14618 0 -1 1077944384 46 12542 0 0 0 0 8 4 20 0 22 0 4137120 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766391538816 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15577] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15577/stat : 15577 (java) S 15507 15510 14618 0 -1 1077944384 252 12542 0 0 0 0 8 4 20 0 22 0 4137124 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766390487120 139767187445659 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15578] ppid=15507 vsize=11130628 CPUtime=3.66 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15578/stat : 15578 (java) S 15507 15510 14618 0 -1 1077944384 20947 12542 0 0 351 3 8 4 20 0 22 0 4137124 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766389434992 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15579] ppid=15507 vsize=11130628 CPUtime=3.42 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15579/stat : 15579 (java) S 15507 15510 14618 0 -1 1077944384 10930 12542 0 0 328 2 8 4 20 0 22 0 4137124 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766388373376 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15580] ppid=15507 vsize=11130628 CPUtime=3.74 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15580/stat : 15580 (java) S 15507 15510 14618 0 -1 1077944384 14237 12542 0 0 359 3 8 4 20 0 22 0 4137124 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766387329904 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15581] ppid=15507 vsize=11130628 CPUtime=2.45 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15581/stat : 15581 (java) S 15507 15510 14618 0 -1 1077944384 21656 12542 0 0 229 4 8 4 20 0 22 0 4137124 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766386276864 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15582] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15582/stat : 15582 (java) S 15507 15510 14618 0 -1 1077944384 3 12542 0 0 0 0 8 4 20 0 22 0 4137124 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766385224032 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15583] ppid=15507 vsize=11130628 CPUtime=1.41 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15583/stat : 15583 (java) S 15507 15510 14618 0 -1 1077944384 3082 12542 0 0 70 59 8 4 20 0 22 0 4137124 11397763072 405161 33554432000 4194304 4196468 140733975401936 139766384171312 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
Current children cumulated CPU time (s) 2400.48
Current children cumulated vsize (KiB) 11130628

[startup+2326.2 s]
/proc/loadavg: 1.72 1.52 1.49 3/281 15813
/proc/meminfo: memFree=28607024/32770624 swapFree=5940/248176
[pid=15510] ppid=15507 vsize=11130628 CPUtime=2401.86 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 324085 12542 0 0 239724 450 8 4 20 0 22 0 4137103 11397763072 405317 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800975 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2782657 405317 3517 1 0 2770212 0
[pid=15510/tid=15565] ppid=15507 vsize=11130628 CPUtime=2305.59 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15565/stat : 15565 (java) S 15507 15510 14618 0 -1 1077944384 96970 12542 0 0 230495 52 8 4 20 0 22 0 4137116 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767191664736 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15566] ppid=15507 vsize=11130628 CPUtime=9.42 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15566/stat : 15566 (java) R 15507 15510 14618 0 -1 4202560 20650 12542 0 0 888 42 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767113501072 139767180055271 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15567] ppid=15507 vsize=11130628 CPUtime=9.53 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15567/stat : 15567 (java) R 15507 15510 14618 0 -1 4202560 13172 12542 0 0 900 41 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767112448472 139767180055271 0 4 0 16800975 0 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15568] ppid=15507 vsize=11130628 CPUtime=9.57 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15568/stat : 15568 (java) R 15507 15510 14618 0 -1 4202560 12906 12542 0 0 903 42 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767111396184 139767180055271 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15569] ppid=15507 vsize=11130628 CPUtime=9.67 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15569/stat : 15569 (java) R 15507 15510 14618 0 -1 4202560 8333 12542 0 0 913 42 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767110343304 139767170810098 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15570] ppid=15507 vsize=11130628 CPUtime=9.39 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15570/stat : 15570 (java) R 15507 15510 14618 0 -1 4202560 16837 12542 0 0 887 40 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767109291096 139767180055271 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15571] ppid=15507 vsize=11130628 CPUtime=9.47 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15571/stat : 15571 (java) R 15507 15510 14618 0 -1 4202560 16631 12542 0 0 896 39 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767108237984 139767180055271 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15572] ppid=15507 vsize=11130628 CPUtime=9.51 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15572/stat : 15572 (java) R 15507 15510 14618 0 -1 4202560 12900 12542 0 0 897 42 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767107186008 139767172423742 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15573] ppid=15507 vsize=11130628 CPUtime=9.52 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15573/stat : 15573 (java) R 15507 15510 14618 0 -1 4202560 18975 12542 0 0 899 41 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767106133208 139767180055271 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15574] ppid=15507 vsize=11130628 CPUtime=7.03 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15574/stat : 15574 (java) S 15507 15510 14618 0 -1 1077944384 33003 12542 0 0 655 36 8 4 20 0 22 0 4137119 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766393643792 139767187437269 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15575] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15575/stat : 15575 (java) S 15507 15510 14618 0 -1 1077944384 58 12542 0 0 0 0 8 4 20 0 22 0 4137120 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766392591104 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15576] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15576/stat : 15576 (java) S 15507 15510 14618 0 -1 1077944384 46 12542 0 0 0 0 8 4 20 0 22 0 4137120 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766391538816 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15577] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15577/stat : 15577 (java) S 15507 15510 14618 0 -1 1077944384 252 12542 0 0 0 0 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766390487120 139767187445659 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15578] ppid=15507 vsize=11130628 CPUtime=3.66 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15578/stat : 15578 (java) S 15507 15510 14618 0 -1 1077944384 20947 12542 0 0 351 3 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766389434992 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15579] ppid=15507 vsize=11130628 CPUtime=3.42 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15579/stat : 15579 (java) S 15507 15510 14618 0 -1 1077944384 10930 12542 0 0 328 2 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766388373376 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15580] ppid=15507 vsize=11130628 CPUtime=3.74 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15580/stat : 15580 (java) S 15507 15510 14618 0 -1 1077944384 14237 12542 0 0 359 3 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766387329904 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15581] ppid=15507 vsize=11130628 CPUtime=2.45 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15581/stat : 15581 (java) S 15507 15510 14618 0 -1 1077944384 21656 12542 0 0 229 4 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766386276864 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15582] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15582/stat : 15582 (java) S 15507 15510 14618 0 -1 1077944384 3 12542 0 0 0 0 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766385224032 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15583] ppid=15507 vsize=11130628 CPUtime=1.41 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15583/stat : 15583 (java) S 15507 15510 14618 0 -1 1077944384 3082 12542 0 0 70 59 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766384171312 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
Current children cumulated CPU time (s) 2401.86
Current children cumulated vsize (KiB) 11130628

[startup+2326.3 s]
/proc/loadavg: 1.72 1.52 1.49 3/281 15813
/proc/meminfo: memFree=28607024/32770624 swapFree=5940/248176
[pid=15510] ppid=15507 vsize=11130628 CPUtime=2402.39 cores=0,2,4,6,8,10,12,14
/proc/15510/stat : 15510 (java) S 15507 15510 14618 0 -1 1077944320 324133 12542 0 0 239776 451 8 4 20 0 22 0 4137103 11397763072 405317 33554432000 4194304 4196468 140733975401936 140733975384480 139767187427063 0 0 0 16800975 18446744073709551615 0 0 17 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
/proc/15510/statm: 2782657 405317 3517 1 0 2770212 0
[pid=15510/tid=15565] ppid=15507 vsize=11130628 CPUtime=2305.59 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15565/stat : 15565 (java) S 15507 15510 14618 0 -1 1077944384 96971 12542 0 0 230495 52 8 4 20 0 22 0 4137116 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767191664736 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15566] ppid=15507 vsize=11130628 CPUtime=9.47 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15566/stat : 15566 (java) R 15507 15510 14618 0 -1 4202560 20652 12542 0 0 893 42 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767113501072 139767169023611 0 4 0 16800975 0 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15567] ppid=15507 vsize=11130628 CPUtime=9.58 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15567/stat : 15567 (java) R 15507 15510 14618 0 -1 4202560 13172 12542 0 0 905 41 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767112448160 139767169023621 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15568] ppid=15507 vsize=11130628 CPUtime=9.63 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15568/stat : 15568 (java) R 15507 15510 14618 0 -1 4202560 12909 12542 0 0 909 42 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767111395984 139767172412359 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15569] ppid=15507 vsize=11130628 CPUtime=9.73 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15569/stat : 15569 (java) R 15507 15510 14618 0 -1 4202560 8339 12542 0 0 919 42 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767110343184 139767172124788 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15570] ppid=15507 vsize=11130628 CPUtime=9.46 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15570/stat : 15570 (java) R 15507 15510 14618 0 -1 4202560 16841 12542 0 0 894 40 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767109290896 139767169022939 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15571] ppid=15507 vsize=11130628 CPUtime=9.53 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15571/stat : 15571 (java) R 15507 15510 14618 0 -1 4202560 16631 12542 0 0 902 39 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767108238096 139767172124702 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15572] ppid=15507 vsize=11130628 CPUtime=9.57 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15572/stat : 15572 (java) R 15507 15510 14618 0 -1 4202560 12906 12542 0 0 903 42 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767107185808 139767172377663 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15573] ppid=15507 vsize=11130628 CPUtime=9.58 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15573/stat : 15573 (java) R 15507 15510 14618 0 -1 4202560 18980 12542 0 0 905 41 8 4 20 0 22 0 4137117 11397763072 405317 33554432000 4194304 4196468 140733975401936 139767106133008 139767172377640 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15574] ppid=15507 vsize=11130628 CPUtime=7.06 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15574/stat : 15574 (java) S 15507 15510 14618 0 -1 1077944384 33006 12542 0 0 658 36 8 4 20 0 22 0 4137119 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766393643568 139767187437269 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15575] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15575/stat : 15575 (java) S 15507 15510 14618 0 -1 1077944384 60 12542 0 0 0 0 8 4 20 0 22 0 4137120 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766392590592 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15576] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15576/stat : 15576 (java) S 15507 15510 14618 0 -1 1077944384 48 12542 0 0 0 0 8 4 20 0 22 0 4137120 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766391538416 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15577] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15577/stat : 15577 (java) S 15507 15510 14618 0 -1 1077944384 252 12542 0 0 0 0 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766390487120 139767187445659 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15578] ppid=15507 vsize=11130628 CPUtime=3.66 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15578/stat : 15578 (java) S 15507 15510 14618 0 -1 1077944384 20947 12542 0 0 351 3 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766389434992 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15579] ppid=15507 vsize=11130628 CPUtime=3.42 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15579/stat : 15579 (java) S 15507 15510 14618 0 -1 1077944384 10942 12542 0 0 328 2 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766388371520 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15580] ppid=15507 vsize=11130628 CPUtime=3.74 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15580/stat : 15580 (java) S 15507 15510 14618 0 -1 1077944384 14237 12542 0 0 359 3 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766387329904 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15581] ppid=15507 vsize=11130628 CPUtime=2.45 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15581/stat : 15581 (java) S 15507 15510 14618 0 -1 1077944384 21656 12542 0 0 229 4 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766386277104 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15582] ppid=15507 vsize=11130628 CPUtime=0.12 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15582/stat : 15582 (java) S 15507 15510 14618 0 -1 1077944384 3 12542 0 0 0 0 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766385224032 139767187437269 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
[pid=15510/tid=15583] ppid=15507 vsize=11130628 CPUtime=1.41 cores=0,2,4,6,8,10,12,14
/proc/15510/task/15583/stat : 15583 (java) S 15507 15510 14618 0 -1 1077944384 3083 12542 0 0 70 59 8 4 20 0 22 0 4137124 11397763072 405317 33554432000 4194304 4196468 140733975401936 139766384171312 139767187438210 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11231232 140733975403201 140733975405975 140733975405975 140733975408591 0
Current children cumulated CPU time (s) 2402.39
Current children cumulated vsize (KiB) 11130628

Child status: 143
Real time (s): 2326.36
CPU time (s): 2402.56
CPU user time (s): 2397.99
CPU system time (s): 4.56851
CPU usage (%): 103.276
Max. virtual memory (cumulated for all children) (KiB): 11130628

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2397.99
system time used= 4.56851
maximum resident set size= 1784228
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 337019
page faults= 0
swaps= 0
block input operations= 0
block output operations= 2728
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 296908
involuntary context switches= 186084

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 16.2812 second user time and 19.8513 second system time

The end

Launcher Data

Begin job on node138 at 2017-07-22 03:58:22
IDJOB=4244518
IDBENCH=115757
IDSOLVER=2630
FILE ID=node138/4244518-1500688702
RUNJOBID= node138-1500684099-14649
PBS_JOBID= 20623345
Free space on /tmp= 61968 MiB

SOLVER NAME= Concrete 3.4
BENCH NAME= XCSP17/Scheduling/Scheduling-js-taillard/Taillard-js-015-15-4.xml
COMMAND LINE= bin/concrete BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4244518-1500688702/watcher-4244518-1500688702 -o /tmp/evaluation-result-4244518-1500688702/solver-4244518-1500688702 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node138-1500684099-14649 --watchdog 2560  bin/concrete HOME/instance-4244518-1500688702.xml

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

MD5SUM BENCH= 428eef4dc0068476798a4d67b3fd28ef
RANDOM SEED=307656007

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        28918244 kB
MemAvailable:   29111596 kB
Buffers:          107048 kB
Cached:           368148 kB
SwapCached:            0 kB
Active:          3161672 kB
Inactive:         254436 kB
Active(anon):    2944120 kB
Inactive(anon):     8608 kB
Active(file):     217552 kB
Inactive(file):   245828 kB
Unevictable:        5940 kB
Mlocked:            5940 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             24236 kB
Writeback:             0 kB
AnonPages:       2947136 kB
Mapped:            43992 kB
Shmem:              8852 kB
Slab:             125184 kB
SReclaimable:      91616 kB
SUnreclaim:        33568 kB
KernelStack:        4480 kB
PageTables:        10896 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    3708072 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   2713600 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      140672 kB
DirectMap2M:    33404928 kB

Free space on /tmp at the end= 61944 MiB
End job on node138 at 2017-07-22 04:37:09