Trace number 4244320

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
R1: choco-solver 4.0.5 (2017-07-05)? 650.927 456.143

General information on the benchmark

NameScheduling/Scheduling-xcsp2-os-gp/
gp10-05-1070_X2.xml
MD5SUM23007d5514affe077dd6f6cf857721a4
Bench CategoryCSP (decision problem)
Best result obtained on this benchmarkUNSAT
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark31.226101
Satisfiable
(Un)Satisfiability was proved
Number of variables101
Number of constraints1000
Number of domains2
Minimum domain size1
Maximum domain size1071
Distribution of domain sizes[{"size":1,"count":1},{"size":1071,"count":100}]
Minimum variable degree19
Maximum variable degree100
Distribution of variable degrees[{"degree":19,"count":100},{"degree":100,"count":1}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":1000}]
Number of extensional constraints0
Number of intensional constraints1000
Distribution of constraint types[{"type":"intension","count":1000}]
Optimization problemNO
Type of objective

Solver Data

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

Verifier Data


Watcher Data

runsolver Copyright (C) 2010-2013 Olivier ROUSSEL

This is runsolver version 3.3.7 (svn: 2553)

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4244320-1500682388/watcher-4244320-1500682388 -o /tmp/evaluation-result-4244320-1500682388/solver-4244320-1500682388 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node132-1500682387-18842 --watchdog 2560 ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 729923301 HOME/instance-4244320-1500682388.xml 

pid=18870
running on 8 cores: 4-7,12-15

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


[startup+0 s]
/proc/loadavg: 0.16 2.97 4.05 3/256 18881
/proc/meminfo: memFree=31972260/32770624 swapFree=5944/207564
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0

[startup+0.100161 s]
/proc/loadavg: 0.16 2.97 4.05 3/256 18881
/proc/meminfo: memFree=31972260/32770624 swapFree=5944/207564
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.20031 s]
/proc/loadavg: 0.16 2.97 4.05 3/256 18881
/proc/meminfo: memFree=31972260/32770624 swapFree=5944/207564
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.300342 s]
/proc/loadavg: 0.16 2.97 4.05 3/256 18881
/proc/meminfo: memFree=31972260/32770624 swapFree=5944/207564
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.700254 s]
/proc/loadavg: 0.16 2.97 4.05 3/256 18881
/proc/meminfo: memFree=31972260/32770624 swapFree=5944/207564
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.50085 s]
/proc/loadavg: 0.16 2.97 4.05 24/295 18920
/proc/meminfo: memFree=31698468/32770624 swapFree=5944/209344
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
[pid=18882] ppid=18881 vsize=13269256 CPUtime=2.89 cores=4-7,12-15
/proc/18882/stat : 18882 (java) S 18881 18881 18810 0 -1 1077944320 14210 0 1 0 257 32 0 0 20 0 20 0 3505987 13587718144 91734 33554432000 4194304 4196468 140729853291264 140729853273808 139916322959095 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
/proc/18882/statm: 3317314 91734 3227 1 0 3304547 0
[pid=18882/tid=18883] ppid=18881 vsize=13269256 CPUtime=1.09 cores=4-7,12-15
/proc/18882/task/18883/stat : 18883 (java) S 18881 18881 18810 0 -1 1077944384 6328 0 1 0 104 5 0 0 20 0 20 0 3505988 13587718144 91734 33554432000 4194304 4196468 140729853291264 139916327196928 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 21 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18885] ppid=18881 vsize=13269256 CPUtime=0.06 cores=4-7,12-15
/proc/18882/task/18885/stat : 18885 (java) R 18881 18881 18810 0 -1 4202560 57 0 0 0 3 3 0 0 20 0 20 0 3505989 13587718144 91734 33554432000 4194304 4196468 140729853291264 139916279511952 139916307986969 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18886] ppid=18881 vsize=13269256 CPUtime=0.07 cores=4-7,12-15
/proc/18882/task/18886/stat : 18886 (java) R 18881 18881 18810 0 -1 4202560 66 0 0 0 4 3 0 0 20 0 20 0 3505989 13587718144 92246 33554432000 4194304 4196468 140729853291264 139916278459352 139916316062510 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18887] ppid=18881 vsize=13269256 CPUtime=0.04 cores=4-7,12-15
/proc/18882/task/18887/stat : 18887 (java) R 18881 18881 18810 0 -1 4202560 49 0 0 0 2 2 0 0 20 0 20 0 3505989 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915920342360 139916316062572 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18888] ppid=18881 vsize=13269256 CPUtime=0.06 cores=4-7,12-15
/proc/18882/task/18888/stat : 18888 (java) R 18881 18881 18810 0 -1 4202560 60 0 0 0 3 3 0 0 20 0 20 0 3505989 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915919289248 139916316062572 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18889] ppid=18881 vsize=13269256 CPUtime=0.05 cores=4-7,12-15
/proc/18882/task/18889/stat : 18889 (java) R 18881 18881 18810 0 -1 4202560 57 0 0 0 3 2 0 0 20 0 20 0 3505989 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915918235936 139916316062572 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18890] ppid=18881 vsize=13269256 CPUtime=0.06 cores=4-7,12-15
/proc/18882/task/18890/stat : 18890 (java) R 18881 18881 18810 0 -1 4202560 62 0 0 0 3 3 0 0 20 0 20 0 3505989 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915917183448 139916304585040 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18891] ppid=18881 vsize=13269256 CPUtime=0.06 cores=4-7,12-15
/proc/18882/task/18891/stat : 18891 (java) R 18881 18881 18810 0 -1 4202560 76 0 0 0 3 3 0 0 20 0 20 0 3505989 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915916131160 139916316062572 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18892] ppid=18881 vsize=13269256 CPUtime=0.06 cores=4-7,12-15
/proc/18882/task/18892/stat : 18892 (java) R 18881 18881 18810 0 -1 4202560 73 0 0 0 3 3 0 0 20 0 20 0 3505989 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915915078360 139916316065641 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18896] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18896/stat : 18896 (java) S 18881 18881 18810 0 -1 1077944384 209 0 0 0 0 0 0 0 20 0 20 0 3505991 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915651064992 139916322969301 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18897] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18897/stat : 18897 (java) S 18881 18881 18810 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915650012512 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18898] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18898/stat : 18898 (java) S 18881 18881 18810 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915648960112 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18906] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18906/stat : 18906 (java) S 18881 18881 18810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915647908432 139916322977691 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18907] ppid=18881 vsize=13269256 CPUtime=0.28 cores=4-7,12-15
/proc/18882/task/18907/stat : 18907 (java) S 18881 18881 18810 0 -1 1077944384 1711 0 0 0 28 0 0 0 20 0 20 0 3505996 13587718144 92246 33554432000 4194304 4196468 140729853291264 139915646855280 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18908] ppid=18881 vsize=13269256 CPUtime=0.27 cores=4-7,12-15
/proc/18882/task/18908/stat : 18908 (java) S 18881 18881 18810 0 -1 1077944384 930 0 0 0 27 0 0 0 20 0 20 0 3505996 13587718144 92758 33554432000 4194304 4196468 140729853291264 139915645802480 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18909] ppid=18881 vsize=13269256 CPUtime=0.29 cores=4-7,12-15
/proc/18882/task/18909/stat : 18909 (java) S 18881 18881 18810 0 -1 1077944384 1385 0 0 0 29 0 0 0 20 0 20 0 3505996 13587718144 92758 33554432000 4194304 4196468 140729853291264 139915644750192 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18910] ppid=18881 vsize=13269256 CPUtime=0.39 cores=4-7,12-15
/proc/18882/task/18910/stat : 18910 (java) S 18881 18881 18810 0 -1 1077944384 1851 0 0 0 39 0 0 0 20 0 20 0 3505996 13587718144 92758 33554432000 4194304 4196468 140729853291264 139915643697392 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18911] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18911/stat : 18911 (java) S 18881 18881 18810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 92758 33554432000 4194304 4196468 140729853291264 139915642645344 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18912] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18912/stat : 18912 (java) S 18881 18881 18810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3505997 13587718144 92758 33554432000 4194304 4196468 140729853291264 139915641592624 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
Current children cumulated CPU time (s) 2.89
Current children cumulated vsize (KiB) 13278768

[startup+3.10087 s]
/proc/loadavg: 0.22 2.94 4.03 4/261 18976
/proc/meminfo: memFree=31521268/32770624 swapFree=5944/214196
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
[pid=18882] ppid=18881 vsize=13269256 CPUtime=5.3 cores=4-7,12-15
/proc/18882/stat : 18882 (java) S 18881 18881 18810 0 -1 1077944320 14836 0 1 0 438 92 0 0 20 0 20 0 3505987 13587718144 116586 33554432000 4194304 4196468 140729853291264 140729853273808 139916322959095 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
/proc/18882/statm: 3317314 116586 3237 1 0 3304547 0
[pid=18882/tid=18883] ppid=18881 vsize=13269256 CPUtime=2.58 cores=4-7,12-15
/proc/18882/task/18883/stat : 18883 (java) R 18881 18881 18810 0 -1 4202560 6335 0 1 0 253 5 0 0 20 0 20 0 3505988 13587718144 116586 33554432000 4194304 4196468 140729853291264 139916327194240 139915962520589 0 4 0 16800975 0 0 0 -1 12 0 0 21 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18885] ppid=18881 vsize=13269256 CPUtime=0.17 cores=4-7,12-15
/proc/18882/task/18885/stat : 18885 (java) S 18881 18881 18810 0 -1 1077944384 129 0 0 0 6 11 0 0 20 0 20 0 3505989 13587718144 116586 33554432000 4194304 4196468 140729853291264 139916279511952 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18886] ppid=18881 vsize=13269256 CPUtime=0.18 cores=4-7,12-15
/proc/18882/task/18886/stat : 18886 (java) S 18881 18881 18810 0 -1 1077944384 138 0 0 0 8 10 0 0 20 0 20 0 3505989 13587718144 116586 33554432000 4194304 4196468 140729853291264 139916278459152 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18887] ppid=18881 vsize=13269256 CPUtime=0.16 cores=4-7,12-15
/proc/18882/task/18887/stat : 18887 (java) S 18881 18881 18810 0 -1 1077944384 121 0 0 0 6 10 0 0 20 0 20 0 3505989 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915920342160 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18888] ppid=18881 vsize=13269256 CPUtime=0.17 cores=4-7,12-15
/proc/18882/task/18888/stat : 18888 (java) S 18881 18881 18810 0 -1 1077944384 133 0 0 0 7 10 0 0 20 0 20 0 3505989 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915919289360 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18889] ppid=18881 vsize=13269256 CPUtime=0.16 cores=4-7,12-15
/proc/18882/task/18889/stat : 18889 (java) S 18881 18881 18810 0 -1 1077944384 130 0 0 0 6 10 0 0 20 0 20 0 3505989 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915918236048 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18890] ppid=18881 vsize=13269256 CPUtime=0.16 cores=4-7,12-15
/proc/18882/task/18890/stat : 18890 (java) S 18881 18881 18810 0 -1 1077944384 131 0 0 0 6 10 0 0 20 0 20 0 3505989 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915917183248 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18891] ppid=18881 vsize=13269256 CPUtime=0.17 cores=4-7,12-15
/proc/18882/task/18891/stat : 18891 (java) S 18881 18881 18810 0 -1 1077944384 143 0 0 0 8 9 0 0 20 0 20 0 3505989 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915916130960 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18892] ppid=18881 vsize=13269256 CPUtime=0.17 cores=4-7,12-15
/proc/18882/task/18892/stat : 18892 (java) S 18881 18881 18810 0 -1 1077944384 140 0 0 0 7 10 0 0 20 0 20 0 3505989 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915915078160 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18896] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18896/stat : 18896 (java) S 18881 18881 18810 0 -1 1077944384 209 0 0 0 0 0 0 0 20 0 20 0 3505991 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915651066480 139916322970242 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18897] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18897/stat : 18897 (java) S 18881 18881 18810 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915650012512 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18898] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18898/stat : 18898 (java) S 18881 18881 18810 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915648960128 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18906] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18906/stat : 18906 (java) S 18881 18881 18810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915647908432 139916322977691 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18907] ppid=18881 vsize=13269256 CPUtime=0.29 cores=4-7,12-15
/proc/18882/task/18907/stat : 18907 (java) S 18881 18881 18810 0 -1 1077944384 1712 0 0 0 29 0 0 0 20 0 20 0 3505996 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915646855280 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18908] ppid=18881 vsize=13269256 CPUtime=0.28 cores=4-7,12-15
/proc/18882/task/18908/stat : 18908 (java) S 18881 18881 18810 0 -1 1077944384 933 0 0 0 28 0 0 0 20 0 20 0 3505996 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915645802480 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18909] ppid=18881 vsize=13269256 CPUtime=0.29 cores=4-7,12-15
/proc/18882/task/18909/stat : 18909 (java) S 18881 18881 18810 0 -1 1077944384 1385 0 0 0 29 0 0 0 20 0 20 0 3505996 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915644750192 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18910] ppid=18881 vsize=13269256 CPUtime=0.39 cores=4-7,12-15
/proc/18882/task/18910/stat : 18910 (java) S 18881 18881 18810 0 -1 1077944384 1866 0 0 0 39 0 0 0 20 0 20 0 3505996 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915643697392 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18911] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18911/stat : 18911 (java) S 18881 18881 18810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915642645344 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18912] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18912/stat : 18912 (java) S 18881 18881 18810 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 3505997 13587718144 116586 33554432000 4194304 4196468 140729853291264 139915641592624 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
Current children cumulated CPU time (s) 5.3
Current children cumulated vsize (KiB) 13278768

[startup+6.30087 s]
/proc/loadavg: 0.22 2.94 4.03 13/295 19014
/proc/meminfo: memFree=31354392/32770624 swapFree=5944/209364
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
[pid=18882] ppid=18881 vsize=13269256 CPUtime=8.5 cores=4-7,12-15
/proc/18882/stat : 18882 (java) S 18881 18881 18810 0 -1 1077944320 15993 0 1 0 758 92 0 0 20 0 20 0 3505987 13587718144 116650 33554432000 4194304 4196468 140729853291264 140729853273808 139916322959095 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
/proc/18882/statm: 3317314 116650 3237 1 0 3304547 0
[pid=18882/tid=18883] ppid=18881 vsize=13269256 CPUtime=5.77 cores=4-7,12-15
/proc/18882/task/18883/stat : 18883 (java) R 18881 18881 18810 0 -1 4202560 6598 0 1 0 572 5 0 0 20 0 20 0 3505988 13587718144 116650 33554432000 4194304 4196468 140729853291264 139916327194240 139915962520530 0 4 0 16800975 0 0 0 -1 12 0 0 21 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18885] ppid=18881 vsize=13269256 CPUtime=0.17 cores=4-7,12-15
/proc/18882/task/18885/stat : 18885 (java) S 18881 18881 18810 0 -1 1077944384 129 0 0 0 6 11 0 0 20 0 20 0 3505989 13587718144 116650 33554432000 4194304 4196468 140729853291264 139916279511952 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18886] ppid=18881 vsize=13269256 CPUtime=0.18 cores=4-7,12-15
/proc/18882/task/18886/stat : 18886 (java) S 18881 18881 18810 0 -1 1077944384 138 0 0 0 8 10 0 0 20 0 20 0 3505989 13587718144 116650 33554432000 4194304 4196468 140729853291264 139916278459152 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18887] ppid=18881 vsize=13269256 CPUtime=0.16 cores=4-7,12-15
/proc/18882/task/18887/stat : 18887 (java) S 18881 18881 18810 0 -1 1077944384 121 0 0 0 6 10 0 0 20 0 20 0 3505989 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915920342160 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18888] ppid=18881 vsize=13269256 CPUtime=0.17 cores=4-7,12-15
/proc/18882/task/18888/stat : 18888 (java) S 18881 18881 18810 0 -1 1077944384 133 0 0 0 7 10 0 0 20 0 20 0 3505989 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915919289360 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18889] ppid=18881 vsize=13269256 CPUtime=0.16 cores=4-7,12-15
/proc/18882/task/18889/stat : 18889 (java) S 18881 18881 18810 0 -1 1077944384 130 0 0 0 6 10 0 0 20 0 20 0 3505989 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915918236048 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18890] ppid=18881 vsize=13269256 CPUtime=0.16 cores=4-7,12-15
/proc/18882/task/18890/stat : 18890 (java) S 18881 18881 18810 0 -1 1077944384 131 0 0 0 6 10 0 0 20 0 20 0 3505989 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915917183248 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18891] ppid=18881 vsize=13269256 CPUtime=0.17 cores=4-7,12-15
/proc/18882/task/18891/stat : 18891 (java) S 18881 18881 18810 0 -1 1077944384 143 0 0 0 8 9 0 0 20 0 20 0 3505989 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915916130960 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18892] ppid=18881 vsize=13269256 CPUtime=0.17 cores=4-7,12-15
/proc/18882/task/18892/stat : 18892 (java) S 18881 18881 18810 0 -1 1077944384 140 0 0 0 7 10 0 0 20 0 20 0 3505989 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915915078160 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18896] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18896/stat : 18896 (java) S 18881 18881 18810 0 -1 1077944384 580 0 0 0 0 0 0 0 20 0 20 0 3505991 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915651066480 139916322970242 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18897] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18897/stat : 18897 (java) S 18881 18881 18810 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915650012512 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18898] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18898/stat : 18898 (java) S 18881 18881 18810 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915648960128 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18906] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18906/stat : 18906 (java) S 18881 18881 18810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 116650 33554432000 4194304 4196468 140729853291264 139915647908432 139916322977691 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0

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

/proc/18882/task/18912/stat : 18912 (java) S 18881 18881 18810 0 -1 1077944384 926 0 0 0 12 15 0 0 20 0 20 0 3505997 13587718144 2643163 33554432000 4194304 4196468 140729853291264 139915641592624 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
Current children cumulated CPU time (s) 640.35
Current children cumulated vsize (KiB) 13278768

[startup+455.201 s]
/proc/loadavg: 9.10 7.73 5.98 17/296 19127
/proc/meminfo: memFree=21162164/32770624 swapFree=5944/209796
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
[pid=18882] ppid=18881 vsize=13269256 CPUtime=644.89 cores=4-7,12-15
/proc/18882/stat : 18882 (java) S 18881 18881 18810 0 -1 1077944320 242159 0 1 0 60627 3862 0 0 20 0 20 0 3505987 13587718144 2643171 33554432000 4194304 4196468 140729853291264 140729853273808 139916322959095 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
/proc/18882/statm: 3317314 2643171 3259 1 0 3304547 0
[pid=18882/tid=18883] ppid=18881 vsize=13269256 CPUtime=421.59 cores=4-7,12-15
/proc/18882/task/18883/stat : 18883 (java) S 18881 18881 18810 0 -1 1077944384 23153 0 1 0 42139 20 0 0 20 0 20 0 3505988 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916327197248 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 21 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18885] ppid=18881 vsize=13269256 CPUtime=26.86 cores=4-7,12-15
/proc/18882/task/18885/stat : 18885 (java) R 18881 18881 18810 0 -1 4202560 22906 0 0 0 2260 426 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916279511952 139916307658923 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18886] ppid=18881 vsize=13269256 CPUtime=26.91 cores=4-7,12-15
/proc/18882/task/18886/stat : 18886 (java) R 18881 18881 18810 0 -1 4202560 19645 0 0 0 2199 492 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916278459152 139916307948738 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18887] ppid=18881 vsize=13269256 CPUtime=27 cores=4-7,12-15
/proc/18882/task/18887/stat : 18887 (java) R 18881 18881 18810 0 -1 4202560 22553 0 0 0 2219 481 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915920342360 139916307948816 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18888] ppid=18881 vsize=13269256 CPUtime=26.94 cores=4-7,12-15
/proc/18882/task/18888/stat : 18888 (java) R 18881 18881 18810 0 -1 4202560 23598 0 0 0 2235 459 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915919289360 139916307948592 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18889] ppid=18881 vsize=13269256 CPUtime=27.07 cores=4-7,12-15
/proc/18882/task/18889/stat : 18889 (java) R 18881 18881 18810 0 -1 4202560 17412 0 0 0 2241 466 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915918236048 139916307658926 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18890] ppid=18881 vsize=13269256 CPUtime=26.9 cores=4-7,12-15
/proc/18882/task/18890/stat : 18890 (java) R 18881 18881 18810 0 -1 4202560 17475 0 0 0 2187 503 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915917183248 139916307948738 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18891] ppid=18881 vsize=13269256 CPUtime=27.01 cores=4-7,12-15
/proc/18882/task/18891/stat : 18891 (java) R 18881 18881 18810 0 -1 4202560 26681 0 0 0 2254 447 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915916130960 139916307948816 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18892] ppid=18881 vsize=13269256 CPUtime=27.11 cores=4-7,12-15
/proc/18882/task/18892/stat : 18892 (java) R 18881 18881 18810 0 -1 4202560 20590 0 0 0 2171 540 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915915078160 139916307658905 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18896] ppid=18881 vsize=13269256 CPUtime=5.53 cores=4-7,12-15
/proc/18882/task/18896/stat : 18896 (java) S 18881 18881 18810 0 -1 1077944384 32640 0 0 0 549 4 0 0 20 0 20 0 3505991 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915651065024 139916322969301 0 0 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18897] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18897/stat : 18897 (java) S 18881 18881 18810 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915650012416 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18898] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18898/stat : 18898 (java) S 18881 18881 18810 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915648960128 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18906] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18906/stat : 18906 (java) S 18881 18881 18810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915647908432 139916322977691 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18907] ppid=18881 vsize=13269256 CPUtime=0.39 cores=4-7,12-15
/proc/18882/task/18907/stat : 18907 (java) S 18881 18881 18810 0 -1 1077944384 3631 0 0 0 38 1 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915646855280 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18908] ppid=18881 vsize=13269256 CPUtime=0.37 cores=4-7,12-15
/proc/18882/task/18908/stat : 18908 (java) S 18881 18881 18810 0 -1 1077944384 3004 0 0 0 37 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915645802480 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18909] ppid=18881 vsize=13269256 CPUtime=0.35 cores=4-7,12-15
/proc/18882/task/18909/stat : 18909 (java) S 18881 18881 18810 0 -1 1077944384 3140 0 0 0 35 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915644750192 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18910] ppid=18881 vsize=13269256 CPUtime=0.41 cores=4-7,12-15
/proc/18882/task/18910/stat : 18910 (java) S 18881 18881 18810 0 -1 1077944384 3484 0 0 0 41 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915643697392 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18911] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18911/stat : 18911 (java) S 18881 18881 18810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915642645344 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18912] ppid=18881 vsize=13269256 CPUtime=0.27 cores=4-7,12-15
/proc/18882/task/18912/stat : 18912 (java) S 18881 18881 18810 0 -1 1077944384 926 0 0 0 12 15 0 0 20 0 20 0 3505997 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915641592624 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
Current children cumulated CPU time (s) 644.89
Current children cumulated vsize (KiB) 13278768

[startup+455.601 s]
/proc/loadavg: 9.10 7.73 5.98 10/296 19127
/proc/meminfo: memFree=21162664/32770624 swapFree=5944/209796
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
[pid=18882] ppid=18881 vsize=13269256 CPUtime=647.53 cores=4-7,12-15
/proc/18882/stat : 18882 (java) S 18881 18881 18810 0 -1 1077944320 242160 0 1 0 60891 3862 0 0 20 0 20 0 3505987 13587718144 2643171 33554432000 4194304 4196468 140729853291264 140729853273808 139916322959095 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
/proc/18882/statm: 3317314 2643171 3259 1 0 3304547 0
[pid=18882/tid=18883] ppid=18881 vsize=13269256 CPUtime=421.59 cores=4-7,12-15
/proc/18882/task/18883/stat : 18883 (java) S 18881 18881 18810 0 -1 1077944384 23153 0 1 0 42139 20 0 0 20 0 20 0 3505988 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916327197248 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 21 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18885] ppid=18881 vsize=13269256 CPUtime=27.19 cores=4-7,12-15
/proc/18882/task/18885/stat : 18885 (java) R 18881 18881 18810 0 -1 4202560 22906 0 0 0 2293 426 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916279512152 139916307656870 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18886] ppid=18881 vsize=13269256 CPUtime=27.24 cores=4-7,12-15
/proc/18882/task/18886/stat : 18886 (java) R 18881 18881 18810 0 -1 4202560 19645 0 0 0 2232 492 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916278459352 139916307656847 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18887] ppid=18881 vsize=13269256 CPUtime=27.32 cores=4-7,12-15
/proc/18882/task/18887/stat : 18887 (java) R 18881 18881 18810 0 -1 4202560 22553 0 0 0 2251 481 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915920342360 139916307656847 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18888] ppid=18881 vsize=13269256 CPUtime=27.26 cores=4-7,12-15
/proc/18882/task/18888/stat : 18888 (java) R 18881 18881 18810 0 -1 4202560 23598 0 0 0 2267 459 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915919289560 139916307944391 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18889] ppid=18881 vsize=13269256 CPUtime=27.4 cores=4-7,12-15
/proc/18882/task/18889/stat : 18889 (java) R 18881 18881 18810 0 -1 4202560 17412 0 0 0 2274 466 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915918236248 139916307656870 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18890] ppid=18881 vsize=13269256 CPUtime=27.22 cores=4-7,12-15
/proc/18882/task/18890/stat : 18890 (java) R 18881 18881 18810 0 -1 4202560 17475 0 0 0 2219 503 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915917183448 139916307944379 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18891] ppid=18881 vsize=13269256 CPUtime=27.33 cores=4-7,12-15
/proc/18882/task/18891/stat : 18891 (java) R 18881 18881 18810 0 -1 4202560 26681 0 0 0 2286 447 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915916131160 139916307910165 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18892] ppid=18881 vsize=13269256 CPUtime=27.43 cores=4-7,12-15
/proc/18882/task/18892/stat : 18892 (java) R 18881 18881 18810 0 -1 4202560 20590 0 0 0 2203 540 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915915078048 139916307944391 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18896] ppid=18881 vsize=13269256 CPUtime=5.61 cores=4-7,12-15
/proc/18882/task/18896/stat : 18896 (java) S 18881 18881 18810 0 -1 1077944384 32640 0 0 0 557 4 0 0 20 0 20 0 3505991 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915651064816 139916322969301 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18897] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18897/stat : 18897 (java) S 18881 18881 18810 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915650012416 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18898] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18898/stat : 18898 (java) S 18881 18881 18810 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915648960128 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18906] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18906/stat : 18906 (java) S 18881 18881 18810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915647908432 139916322977691 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18907] ppid=18881 vsize=13269256 CPUtime=0.39 cores=4-7,12-15
/proc/18882/task/18907/stat : 18907 (java) S 18881 18881 18810 0 -1 1077944384 3632 0 0 0 38 1 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915646855040 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18908] ppid=18881 vsize=13269256 CPUtime=0.37 cores=4-7,12-15
/proc/18882/task/18908/stat : 18908 (java) S 18881 18881 18810 0 -1 1077944384 3004 0 0 0 37 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915645802528 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18909] ppid=18881 vsize=13269256 CPUtime=0.35 cores=4-7,12-15
/proc/18882/task/18909/stat : 18909 (java) S 18881 18881 18810 0 -1 1077944384 3140 0 0 0 35 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915644750240 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18910] ppid=18881 vsize=13269256 CPUtime=0.41 cores=4-7,12-15
/proc/18882/task/18910/stat : 18910 (java) S 18881 18881 18810 0 -1 1077944384 3484 0 0 0 41 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915643697440 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18911] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18911/stat : 18911 (java) S 18881 18881 18810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915642645344 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18912] ppid=18881 vsize=13269256 CPUtime=0.27 cores=4-7,12-15
/proc/18882/task/18912/stat : 18912 (java) S 18881 18881 18810 0 -1 1077944384 926 0 0 0 12 15 0 0 20 0 20 0 3505997 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915641592624 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
Current children cumulated CPU time (s) 647.53
Current children cumulated vsize (KiB) 13278768

[startup+456.001 s]
/proc/loadavg: 9.10 7.73 5.98 10/296 19127
/proc/meminfo: memFree=21162664/32770624 swapFree=5944/209796
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
[pid=18882] ppid=18881 vsize=13269256 CPUtime=650.68 cores=4-7,12-15
/proc/18882/stat : 18882 (java) S 18881 18881 18810 0 -1 1077944320 242288 0 1 0 61206 3862 0 0 20 0 20 0 3505987 13587718144 2643171 33554432000 4194304 4196468 140729853291264 140729853273808 139916322959095 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
/proc/18882/statm: 3317314 2643171 3259 1 0 3304547 0
[pid=18882/tid=18883] ppid=18881 vsize=13269256 CPUtime=421.59 cores=4-7,12-15
/proc/18882/task/18883/stat : 18883 (java) S 18881 18881 18810 0 -1 1077944384 23153 0 1 0 42139 20 0 0 20 0 20 0 3505988 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916327197248 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 21 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18885] ppid=18881 vsize=13269256 CPUtime=27.58 cores=4-7,12-15
/proc/18882/task/18885/stat : 18885 (java) R 18881 18881 18810 0 -1 4202560 22906 0 0 0 2332 426 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916279511760 139916315587303 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18886] ppid=18881 vsize=13269256 CPUtime=27.63 cores=4-7,12-15
/proc/18882/task/18886/stat : 18886 (java) R 18881 18881 18810 0 -1 4202560 19645 0 0 0 2271 492 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139916278459272 139916315587303 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18887] ppid=18881 vsize=13269256 CPUtime=27.71 cores=4-7,12-15
/proc/18882/task/18887/stat : 18887 (java) R 18881 18881 18810 0 -1 4202560 22553 0 0 0 2290 481 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915920342360 139916307955466 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18888] ppid=18881 vsize=13269256 CPUtime=27.65 cores=4-7,12-15
/proc/18882/task/18888/stat : 18888 (java) R 18881 18881 18810 0 -1 4202560 23598 0 0 0 2306 459 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915919289480 139916315587303 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18889] ppid=18881 vsize=13269256 CPUtime=27.79 cores=4-7,12-15
/proc/18882/task/18889/stat : 18889 (java) R 18881 18881 18810 0 -1 4202560 17412 0 0 0 2313 466 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915918236168 139916315587303 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18890] ppid=18881 vsize=13269256 CPUtime=27.62 cores=4-7,12-15
/proc/18882/task/18890/stat : 18890 (java) R 18881 18881 18810 0 -1 4202560 17475 0 0 0 2259 503 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915917183368 139916315587303 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18891] ppid=18881 vsize=13269256 CPUtime=27.73 cores=4-7,12-15
/proc/18882/task/18891/stat : 18891 (java) R 18881 18881 18810 0 -1 4202560 26681 0 0 0 2326 447 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915916130768 139916315587303 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18892] ppid=18881 vsize=13269256 CPUtime=27.83 cores=4-7,12-15
/proc/18882/task/18892/stat : 18892 (java) R 18881 18881 18810 0 -1 4202560 20718 0 0 0 2243 540 0 0 20 0 20 0 3505989 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915915078280 139916315587303 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18896] ppid=18881 vsize=13269256 CPUtime=5.61 cores=4-7,12-15
/proc/18882/task/18896/stat : 18896 (java) S 18881 18881 18810 0 -1 1077944384 32640 0 0 0 557 4 0 0 20 0 20 0 3505991 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915651065040 139916322969301 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18897] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18897/stat : 18897 (java) S 18881 18881 18810 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915650012416 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18898] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18898/stat : 18898 (java) S 18881 18881 18810 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 20 0 3505992 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915648960128 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18906] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18906/stat : 18906 (java) S 18881 18881 18810 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915647908432 139916322977691 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18907] ppid=18881 vsize=13269256 CPUtime=0.39 cores=4-7,12-15
/proc/18882/task/18907/stat : 18907 (java) S 18881 18881 18810 0 -1 1077944384 3632 0 0 0 38 1 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915646855040 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18908] ppid=18881 vsize=13269256 CPUtime=0.37 cores=4-7,12-15
/proc/18882/task/18908/stat : 18908 (java) S 18881 18881 18810 0 -1 1077944384 3004 0 0 0 37 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915645802528 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18909] ppid=18881 vsize=13269256 CPUtime=0.35 cores=4-7,12-15
/proc/18882/task/18909/stat : 18909 (java) S 18881 18881 18810 0 -1 1077944384 3140 0 0 0 35 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915644750240 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18910] ppid=18881 vsize=13269256 CPUtime=0.41 cores=4-7,12-15
/proc/18882/task/18910/stat : 18910 (java) S 18881 18881 18810 0 -1 1077944384 3484 0 0 0 41 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915643697440 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18911] ppid=18881 vsize=13269256 CPUtime=0 cores=4-7,12-15
/proc/18882/task/18911/stat : 18911 (java) S 18881 18881 18810 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3505996 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915642645344 139916322969301 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
[pid=18882/tid=18912] ppid=18881 vsize=13269256 CPUtime=0.27 cores=4-7,12-15
/proc/18882/task/18912/stat : 18912 (java) S 18881 18881 18810 0 -1 1077944384 926 0 0 0 12 15 0 0 20 0 20 0 3505997 13587718144 2643171 33554432000 4194304 4196468 140729853291264 139915641592624 139916322970242 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30420992 140729853293756 140729853293932 140729853293932 140729853296591 0
Current children cumulated CPU time (s) 650.68
Current children cumulated vsize (KiB) 13278768

[startup+456.106 s]
/proc/loadavg: 9.10 7.73 5.98 10/296 19127
/proc/meminfo: memFree=21162664/32770624 swapFree=5944/209796
[pid=18881] ppid=18870 vsize=9512 CPUtime=0 cores=4-7,12-15
/proc/18881/stat : 18881 (xcsp3-exec) S 18870 18881 18810 0 -1 4202496 519 0 0 0 0 0 0 0 20 0 1 0 3505987 9740288 346 33554432000 4194304 5098028 140731705509632 140731705507736 139938335994492 0 65536 4100 65538 18446744071579417331 0 0 17 14 0 0 0 0 0 7196144 7232144 37859328 140731705513103 140731705513312 140731705513312 140731705516011 0
/proc/18881/statm: 2378 346 289 221 0 87 0
[pid=18882] ppid=18881 vsize=0 CPUtime=650.87 cores=4-7,12-15
/proc/18882/stat : 18882 (java) Z 18881 18881 18810 0 -1 4227084 242431 0 1 0 61224 3863 0 0 20 0 2 0 3505987 0 0 33554432000 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 0 0 0 0 0 0 0 0
/proc/18882/statm: 0 0 0 0 0 0 0
[pid=18882/tid=18886] ppid=18881 vsize=0 CPUtime=27.65 cores=4-7,12-15
/proc/18882/task/18886/stat : 18886 (java) R 18881 18881 18810 0 -1 4203588 19645 0 0 0 2272 493 0 0 20 0 2 0 3505989 0 0 33554432000 0 0 0 0 0 0 4 0 16800975 18446744073709551615 0 0 -1 7 0 0 0 0 0 0 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 650.87
Current children cumulated vsize (KiB) 9512

Child status: 1
Real time (s): 456.143
CPU time (s): 650.927
CPU user time (s): 612.249
CPU system time (s): 38.6783
CPU usage (%): 142.702
Max. virtual memory (cumulated for all children) (KiB): 13278768

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 612.249
system time used= 38.6783
maximum resident set size= 10573228
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 242960
page faults= 1
swaps= 0
block input operations= 272
block output operations= 656
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 18623
involuntary context switches= 40822

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.97507 second user time and 4.58247 second system time

The end

Launcher Data

Begin job on node132 at 2017-07-22 02:13:08
IDJOB=4244320
IDBENCH=115551
IDSOLVER=2625
FILE ID=node132/4244320-1500682388
RUNJOBID= node132-1500682387-18842
PBS_JOBID= 20623322
Free space on /tmp= 61760 MiB

SOLVER NAME= choco-solver 4.0.5
BENCH NAME= XCSP17/Scheduling/Scheduling-xcsp2-os-gp/gp10-05-1070_X2.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 10000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4244320-1500682388/watcher-4244320-1500682388 -o /tmp/evaluation-result-4244320-1500682388/solver-4244320-1500682388 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node132-1500682387-18842 --watchdog 2560  ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 729923301 HOME/instance-4244320-1500682388.xml

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

MD5SUM BENCH= 23007d5514affe077dd6f6cf857721a4
RANDOM SEED=729923301

node132.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		: 1867.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.61
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	: 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.61
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

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

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

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

processor	: 11
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 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.61
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		: 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	: 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		: 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	: 14
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 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	: 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		: 1733.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:        31978144 kB
MemAvailable:   32020864 kB
Buffers:           45464 kB
Cached:           307216 kB
SwapCached:            0 kB
Active:           189832 kB
Inactive:         216180 kB
Active(anon):      56744 kB
Inactive(anon):     8616 kB
Active(file):     133088 kB
Inactive(file):   207564 kB
Unevictable:        5944 kB
Mlocked:            5944 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             15500 kB
Writeback:             0 kB
AnonPages:         60160 kB
Mapped:            30052 kB
Shmem:              8872 kB
Slab:              69416 kB
SReclaimable:      35808 kB
SUnreclaim:        33608 kB
KernelStack:        4160 kB
PageTables:         4804 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     310956 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:      8192 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= 61752 MiB
End job on node132 at 2017-07-22 02:20:45