Trace number 4249896

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 5a (2017-07-05)? 2274.46 356.26

General information on the benchmark

NameSuperSolutions/SuperSolutions-Queens-s1/
SuperQueens-02.xml
MD5SUM80353dd8c937a5bb459a24b290639269
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables200
Number of constraints14950
Number of domains1
Minimum domain size100
Maximum domain size100
Distribution of domain sizes[{"size":100,"count":200}]
Minimum variable degree100
Maximum variable degree199
Distribution of variable degrees[{"degree":100,"count":100},{"degree":199,"count":100}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":14950}]
Number of extensional constraints0
Number of intensional constraints14950
Distribution of constraint types[{"type":"intension","count":14950}]
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-4249896-1500695987.xml"  -tl '2400s' -p 8 -x 3
0.00/0.16	c [HOME/instance-4249896-1500695987.xml, -tl, 2400s, -p, 8, -x, 3]
0.00/0.22	c 8 solvers in parallel
0.00/0.29	c parse instance...
2162.44/341.64	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
2197.74/346.24		at java.util.Arrays.copyOf(Arrays.java:3181)
2197.74/346.24		at java.util.ArrayList.grow(ArrayList.java:261)
2197.74/346.24		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
2197.74/346.24		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
2197.74/346.24		at java.util.ArrayList.add(ArrayList.java:458)
2197.74/346.24		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:158)
2197.74/346.24		at org.chocosolver.solver.constraints.extension.TuplesFactory.generateTuples(TuplesFactory.java:88)
2197.74/346.24		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:148)
2197.74/346.24		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
2197.74/346.24		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
2197.74/346.24		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
2197.74/346.24		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
2197.74/346.24		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
2197.74/346.24		at org.xcsp.parser.XCallbacks$$Lambda$52/1668627309.accept(Unknown Source)
2197.74/346.24		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
2197.74/346.24		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
2197.74/346.24		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
2197.74/346.24		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
2197.74/346.24		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
2197.74/346.24		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
2197.74/346.24		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
2197.74/346.24		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
2197.74/346.24		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:114)
2197.74/346.24		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:101)
2197.74/346.24		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
2274.41/356.21	s UNKNOWN
2274.41/356.21	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-4249896-1500695987/watcher-4249896-1500695987 -o /tmp/evaluation-result-4249896-1500695987/solver-4249896-1500695987 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node130-1500684118-8560 --watchdog 2560 ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 1133176743 HOME/instance-4249896-1500695987.xml 

pid=19194
running on 8 cores: 1,3,5,7,9,11,13,15

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


[startup+0 s]
/proc/loadavg: 9.70 13.29 13.93 3/262 19197
/proc/meminfo: memFree=22173332/32770624 swapFree=5656/335088
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0

[startup+0.100063 s]
/proc/loadavg: 9.70 13.29 13.93 3/262 19197
/proc/meminfo: memFree=22173332/32770624 swapFree=5656/335088
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.20026 s]
/proc/loadavg: 9.70 13.29 13.93 3/262 19197
/proc/meminfo: memFree=22173332/32770624 swapFree=5656/335088
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.300286 s]
/proc/loadavg: 9.70 13.29 13.93 3/262 19197
/proc/meminfo: memFree=22173332/32770624 swapFree=5656/335088
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.700268 s]
/proc/loadavg: 9.70 13.29 13.93 3/262 19197
/proc/meminfo: memFree=22173332/32770624 swapFree=5656/335088
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.50117 s]
/proc/loadavg: 9.70 13.29 13.93 4/283 19218
/proc/meminfo: memFree=21981592/32770624 swapFree=5656/335088
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
[pid=19198] ppid=19197 vsize=13269256 CPUtime=4.26 cores=1,3,5,7,9,11,13,15
/proc/19198/stat : 19198 (java) S 19197 19197 7102 0 -1 1077944320 15304 0 0 0 413 13 0 0 20 0 20 0 4866214 13587718144 51068 33554432000 4194304 4196468 140724273761184 140724273743728 140513102937847 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
/proc/19198/statm: 3317314 51068 3224 1 0 3304547 0
[pid=19198/tid=19199] ppid=19197 vsize=13269256 CPUtime=1.46 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19199/stat : 19199 (java) R 19197 19197 7102 0 -1 4202560 6306 0 0 0 141 5 0 0 20 0 20 0 4866214 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513107175432 140512695116097 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19201] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19201/stat : 19201 (java) S 19197 19197 7102 0 -1 1077944384 9 0 0 0 0 0 0 0 20 0 20 0 4866215 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513021417872 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19202] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19202/stat : 19202 (java) S 19197 19197 7102 0 -1 1077944384 14 0 0 0 0 0 0 0 20 0 20 0 4866215 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513020365072 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19203] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19203/stat : 19203 (java) S 19197 19197 7102 0 -1 1077944384 9 0 0 0 0 0 0 0 20 0 20 0 4866215 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513019312784 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19204] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19204/stat : 19204 (java) S 19197 19197 7102 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 20 0 4866215 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513018259984 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19205] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19205/stat : 19205 (java) S 19197 19197 7102 0 -1 1077944384 14 0 0 0 0 0 0 0 20 0 20 0 4866215 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513017207696 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19206] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19206/stat : 19206 (java) S 19197 19197 7102 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 20 0 4866215 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513016154896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19207] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19207/stat : 19207 (java) S 19197 19197 7102 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 20 0 4866215 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513015102608 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19208] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19208/stat : 19208 (java) S 19197 19197 7102 0 -1 1077944384 8 0 0 0 0 0 0 0 20 0 20 0 4866215 13587718144 51068 33554432000 4194304 4196468 140724273761184 140513014049808 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19209] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19209/stat : 19209 (java) S 19197 19197 7102 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 20 0 4866216 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512430794864 140513102948994 0 0 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19210] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19210/stat : 19210 (java) S 19197 19197 7102 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 20 0 4866217 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512429740832 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19211] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19211/stat : 19211 (java) S 19197 19197 7102 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 4866217 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512428688496 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19212] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19212/stat : 19212 (java) S 19197 19197 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4866219 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512427636816 140513102956443 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19213] ppid=19197 vsize=13269256 CPUtime=0.74 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19213/stat : 19213 (java) S 19197 19197 7102 0 -1 1077944384 2105 0 0 0 74 0 0 0 20 0 20 0 4866219 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512426584688 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19214] ppid=19197 vsize=13269256 CPUtime=0.74 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19214/stat : 19214 (java) S 19197 19197 7102 0 -1 1077944384 1769 0 0 0 74 0 0 0 20 0 20 0 4866219 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512425531888 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19215] ppid=19197 vsize=13269256 CPUtime=0.74 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19215/stat : 19215 (java) S 19197 19197 7102 0 -1 1077944384 1965 0 0 0 74 0 0 0 20 0 20 0 4866219 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512424479600 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19216] ppid=19197 vsize=13269256 CPUtime=0.43 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19216/stat : 19216 (java) S 19197 19197 7102 0 -1 1077944384 1665 0 0 0 43 0 0 0 20 0 20 0 4866219 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512423426800 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19217] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19217/stat : 19217 (java) S 19197 19197 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4866219 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512422373728 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19218] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19218/stat : 19218 (java) S 19197 19197 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4866220 13587718144 51068 33554432000 4194304 4196468 140724273761184 140512421321008 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
Current children cumulated CPU time (s) 4.26
Current children cumulated vsize (KiB) 13278768

[startup+3.10081 s]
/proc/loadavg: 9.70 13.29 13.93 10/283 19218
/proc/meminfo: memFree=21595944/32770624 swapFree=5656/335092
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
[pid=19198] ppid=19197 vsize=13269256 CPUtime=6.83 cores=1,3,5,7,9,11,13,15
/proc/19198/stat : 19198 (java) S 19197 19197 7102 0 -1 1077944320 16045 0 0 0 611 72 0 0 20 0 20 0 4866214 13587718144 77969 33554432000 4194304 4196468 140724273761184 140724273743728 140513102937847 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
/proc/19198/statm: 3317314 77969 3231 1 0 3304547 0
[pid=19198/tid=19199] ppid=19197 vsize=13269256 CPUtime=2.94 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19199/stat : 19199 (java) R 19197 19197 7102 0 -1 4202560 6373 0 0 0 289 5 0 0 20 0 20 0 4866214 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513107175624 140512695967470 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19201] ppid=19197 vsize=13269256 CPUtime=0.1 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19201/stat : 19201 (java) S 19197 19197 7102 0 -1 1077944384 61 0 0 0 3 7 0 0 20 0 20 0 4866215 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513021417872 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19202] ppid=19197 vsize=13269256 CPUtime=0.1 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19202/stat : 19202 (java) S 19197 19197 7102 0 -1 1077944384 58 0 0 0 3 7 0 0 20 0 20 0 4866215 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513020365072 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19203] ppid=19197 vsize=13269256 CPUtime=0.12 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19203/stat : 19203 (java) S 19197 19197 7102 0 -1 1077944384 84 0 0 0 4 8 0 0 20 0 20 0 4866215 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513019312784 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19204] ppid=19197 vsize=13269256 CPUtime=0.11 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19204/stat : 19204 (java) S 19197 19197 7102 0 -1 1077944384 56 0 0 0 3 8 0 0 20 0 20 0 4866215 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513018259984 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19205] ppid=19197 vsize=13269256 CPUtime=0.1 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19205/stat : 19205 (java) S 19197 19197 7102 0 -1 1077944384 58 0 0 0 3 7 0 0 20 0 20 0 4866215 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513017207696 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19206] ppid=19197 vsize=13269256 CPUtime=0.12 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19206/stat : 19206 (java) S 19197 19197 7102 0 -1 1077944384 94 0 0 0 4 8 0 0 20 0 20 0 4866215 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513016154896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19207] ppid=19197 vsize=13269256 CPUtime=0.11 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19207/stat : 19207 (java) S 19197 19197 7102 0 -1 1077944384 70 0 0 0 3 8 0 0 20 0 20 0 4866215 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513015102608 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19208] ppid=19197 vsize=13269256 CPUtime=0.11 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19208/stat : 19208 (java) S 19197 19197 7102 0 -1 1077944384 61 0 0 0 4 7 0 0 20 0 20 0 4866215 13587718144 77969 33554432000 4194304 4196468 140724273761184 140513014049808 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19209] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19209/stat : 19209 (java) S 19197 19197 7102 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 20 0 4866216 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512430794864 140513102948994 0 0 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19210] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19210/stat : 19210 (java) S 19197 19197 7102 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 20 0 4866217 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512429740896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19211] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19211/stat : 19211 (java) S 19197 19197 7102 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 4866217 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512428688512 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19212] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19212/stat : 19212 (java) S 19197 19197 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4866219 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512427636816 140513102956443 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19213] ppid=19197 vsize=13269256 CPUtime=0.82 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19213/stat : 19213 (java) S 19197 19197 7102 0 -1 1077944384 2126 0 0 0 82 0 0 0 20 0 20 0 4866219 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512426584688 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19214] ppid=19197 vsize=13269256 CPUtime=0.78 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19214/stat : 19214 (java) S 19197 19197 7102 0 -1 1077944384 1792 0 0 0 78 0 0 0 20 0 20 0 4866219 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512425531888 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19215] ppid=19197 vsize=13269256 CPUtime=0.77 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19215/stat : 19215 (java) S 19197 19197 7102 0 -1 1077944384 1978 0 0 0 77 0 0 0 20 0 20 0 4866219 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512424479600 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19216] ppid=19197 vsize=13269256 CPUtime=0.49 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19216/stat : 19216 (java) S 19197 19197 7102 0 -1 1077944384 1853 0 0 0 49 0 0 0 20 0 20 0 4866219 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512423426800 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19217] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19217/stat : 19217 (java) S 19197 19197 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4866219 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512422373728 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19218] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19218/stat : 19218 (java) S 19197 19197 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4866220 13587718144 77969 33554432000 4194304 4196468 140724273761184 140512421321008 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 11 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
Current children cumulated CPU time (s) 6.83
Current children cumulated vsize (KiB) 13278768

[startup+6.30084 s]
/proc/loadavg: 9.25 13.13 13.88 3/259 19281
/proc/meminfo: memFree=31084896/32770624 swapFree=5656/335076
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
[pid=19198] ppid=19197 vsize=13269256 CPUtime=14.72 cores=1,3,5,7,9,11,13,15
/proc/19198/stat : 19198 (java) S 19197 19197 7102 0 -1 1077944320 25361 0 0 0 1254 218 0 0 20 0 20 0 4866214 13587718144 177735 33554432000 4194304 4196468 140724273761184 140724273743728 140513102937847 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
/proc/19198/statm: 3317314 177735 3262 1 0 3304547 0
[pid=19198/tid=19199] ppid=19197 vsize=13269256 CPUtime=5.41 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19199/stat : 19199 (java) R 19197 19197 7102 0 -1 4202560 7420 0 0 0 534 7 0 0 20 0 20 0 4866214 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513107173160 140512695967454 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19201] ppid=19197 vsize=13269256 CPUtime=0.76 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19201/stat : 19201 (java) S 19197 19197 7102 0 -1 1077944384 389 0 0 0 50 26 0 0 20 0 20 0 4866215 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513021417872 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19202] ppid=19197 vsize=13269256 CPUtime=0.75 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19202/stat : 19202 (java) S 19197 19197 7102 0 -1 1077944384 514 0 0 0 51 24 0 0 20 0 20 0 4866215 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513020365072 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19203] ppid=19197 vsize=13269256 CPUtime=0.77 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19203/stat : 19203 (java) S 19197 19197 7102 0 -1 1077944384 517 0 0 0 51 26 0 0 20 0 20 0 4866215 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513019312784 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19204] ppid=19197 vsize=13269256 CPUtime=0.76 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19204/stat : 19204 (java) S 19197 19197 7102 0 -1 1077944384 286 0 0 0 50 26 0 0 20 0 20 0 4866215 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513018259984 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19205] ppid=19197 vsize=13269256 CPUtime=0.76 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19205/stat : 19205 (java) S 19197 19197 7102 0 -1 1077944384 484 0 0 0 51 25 0 0 20 0 20 0 4866215 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513017207696 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19206] ppid=19197 vsize=13269256 CPUtime=0.77 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19206/stat : 19206 (java) S 19197 19197 7102 0 -1 1077944384 436 0 0 0 51 26 0 0 20 0 20 0 4866215 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513016154896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19207] ppid=19197 vsize=13269256 CPUtime=0.75 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19207/stat : 19207 (java) S 19197 19197 7102 0 -1 1077944384 334 0 0 0 50 25 0 0 20 0 20 0 4866215 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513015102608 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19208] ppid=19197 vsize=13269256 CPUtime=0.78 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19208/stat : 19208 (java) S 19197 19197 7102 0 -1 1077944384 1013 0 0 0 53 25 0 0 20 0 20 0 4866215 13587718144 177735 33554432000 4194304 4196468 140724273761184 140513014049808 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19209] ppid=19197 vsize=13269256 CPUtime=0.06 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19209/stat : 19209 (java) S 19197 19197 7102 0 -1 1077944384 2007 0 0 0 6 0 0 0 20 0 20 0 4866216 13587718144 177735 33554432000 4194304 4196468 140724273761184 140512430794864 140513102948994 0 0 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19210] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19210/stat : 19210 (java) S 19197 19197 7102 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 20 0 4866217 13587718144 177735 33554432000 4194304 4196468 140724273761184 140512429740896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19211] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19211/stat : 19211 (java) S 19197 19197 7102 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 4866217 13587718144 177735 33554432000 4194304 4196468 140724273761184 140512428688512 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19212] ppid=19197 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19212/stat : 19212 (java) S 19197 19197 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4866219 13587718144 177735 33554432000 4194304 4196468 140724273761184 140512427636816 140513102956443 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0

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

/proc/19198/task/19215/stat : 19215 (java) S 19197 19197 7102 0 -1 1077944384 4724 0 0 0 103 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512424479648 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19216] ppid=19197 vsize=13335820 CPUtime=0.57 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19216/stat : 19216 (java) S 19197 19197 7102 0 -1 1077944384 3554 0 0 0 56 1 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512423426848 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 1 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19217] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19217/stat : 19217 (java) S 19197 19197 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512422373728 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19218] ppid=19197 vsize=13335820 CPUtime=0.16 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19218/stat : 19218 (java) S 19197 19197 7102 0 -1 1077944384 586 0 0 0 8 8 0 0 20 0 21 0 4866220 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512421321008 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 11 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19427] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19427/stat : 19427 (java) S 19197 19197 7102 0 -1 1077944384 24 0 0 0 0 0 0 0 20 0 21 0 4900838 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512413310400 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
Current children cumulated CPU time (s) 2255.01
Current children cumulated vsize (KiB) 13345332

[startup+355.201 s]
/proc/loadavg: 9.94 11.39 12.78 17/284 19427
/proc/meminfo: memFree=18244064/32770624 swapFree=5656/335584
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
[pid=19198] ppid=19197 vsize=13335820 CPUtime=2267.45 cores=1,3,5,7,9,11,13,15
/proc/19198/stat : 19198 (java) S 19197 19197 7102 0 -1 1077944320 192654 0 0 0 222841 3904 0 0 20 0 21 0 4866214 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140724273743728 140513102937847 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
/proc/19198/statm: 3333955 2495458 3271 1 0 3321188 0
[pid=19198/tid=19199] ppid=19197 vsize=13335820 CPUtime=72.1 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19199/stat : 19199 (java) S 19197 19197 7102 0 -1 1077944384 11720 0 0 0 7201 9 0 0 20 0 21 0 4866214 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513107178528 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19201] ppid=19197 vsize=13335820 CPUtime=273.03 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19201/stat : 19201 (java) R 19197 19197 7102 0 -1 4202560 10407 0 0 0 26818 485 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513021417680 140513095566055 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19202] ppid=19197 vsize=13335820 CPUtime=272.7 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19202/stat : 19202 (java) R 19197 19197 7102 0 -1 4202560 11692 0 0 0 26765 505 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513020365192 140513095566055 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19203] ppid=19197 vsize=13335820 CPUtime=272.21 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19203/stat : 19203 (java) R 19197 19197 7102 0 -1 4202560 10956 0 0 0 26742 479 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513019312904 140513095566055 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19204] ppid=19197 vsize=13335820 CPUtime=273.36 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19204/stat : 19204 (java) R 19197 19197 7102 0 -1 4202560 11706 0 0 0 26864 472 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513018260184 140513087395441 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19205] ppid=19197 vsize=13335820 CPUtime=272.34 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19205/stat : 19205 (java) R 19197 19197 7102 0 -1 4202560 11683 0 0 0 26736 498 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513017207816 140513086320880 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19206] ppid=19197 vsize=13335820 CPUtime=273.36 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19206/stat : 19206 (java) R 19197 19197 7102 0 -1 4202560 12620 0 0 0 26856 480 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513016155016 140513095566055 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19207] ppid=19197 vsize=13335820 CPUtime=272.93 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19207/stat : 19207 (java) S 19197 19197 7102 0 -1 1077944384 11251 0 0 0 26823 470 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513015102416 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19208] ppid=19197 vsize=13335820 CPUtime=272.48 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19208/stat : 19208 (java) R 19197 19197 7102 0 -1 4202560 11546 0 0 0 26763 485 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513014049928 140513095566055 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19209] ppid=19197 vsize=13335820 CPUtime=7.59 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19209/stat : 19209 (java) S 19197 19197 7102 0 -1 1077944384 64437 0 0 0 754 5 0 0 20 0 21 0 4866216 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512430793408 140513102948053 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19210] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19210/stat : 19210 (java) S 19197 19197 7102 0 -1 1077944384 38 0 0 0 0 0 0 0 20 0 21 0 4866217 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512429740896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19211] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19211/stat : 19211 (java) S 19197 19197 7102 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 21 0 4866217 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512428688512 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19212] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19212/stat : 19212 (java) S 19197 19197 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512427636816 140513102956443 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19213] ppid=19197 vsize=13335820 CPUtime=1.84 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19213/stat : 19213 (java) S 19197 19197 7102 0 -1 1077944384 9782 0 0 0 183 1 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512426584736 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19214] ppid=19197 vsize=13335820 CPUtime=1.63 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19214/stat : 19214 (java) S 19197 19197 7102 0 -1 1077944384 4668 0 0 0 163 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512425531648 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19215] ppid=19197 vsize=13335820 CPUtime=1.03 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19215/stat : 19215 (java) S 19197 19197 7102 0 -1 1077944384 4724 0 0 0 103 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512424479648 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19216] ppid=19197 vsize=13335820 CPUtime=0.57 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19216/stat : 19216 (java) S 19197 19197 7102 0 -1 1077944384 3554 0 0 0 56 1 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512423426848 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 1 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19217] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19217/stat : 19217 (java) S 19197 19197 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512422373728 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19218] ppid=19197 vsize=13335820 CPUtime=0.16 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19218/stat : 19218 (java) S 19197 19197 7102 0 -1 1077944384 586 0 0 0 8 8 0 0 20 0 21 0 4866220 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512421321008 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 11 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19427] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19427/stat : 19427 (java) S 19197 19197 7102 0 -1 1077944384 24 0 0 0 0 0 0 0 20 0 21 0 4900838 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512413310400 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
Current children cumulated CPU time (s) 2267.45
Current children cumulated vsize (KiB) 13345332

[startup+356.001 s]
/proc/loadavg: 9.94 11.39 12.78 9/284 19427
/proc/meminfo: memFree=17637864/32770624 swapFree=5656/335584
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
[pid=19198] ppid=19197 vsize=13335820 CPUtime=2273.66 cores=1,3,5,7,9,11,13,15
/proc/19198/stat : 19198 (java) S 19197 19197 7102 0 -1 1077944320 192654 0 0 0 223459 3907 0 0 20 0 21 0 4866214 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140724273743728 140513102937847 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
/proc/19198/statm: 3333955 2495458 3271 1 0 3321188 0
[pid=19198/tid=19199] ppid=19197 vsize=13335820 CPUtime=72.1 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19199/stat : 19199 (java) S 19197 19197 7102 0 -1 1077944384 11720 0 0 0 7201 9 0 0 20 0 21 0 4866214 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513107178528 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19201] ppid=19197 vsize=13335820 CPUtime=273.81 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19201/stat : 19201 (java) R 19197 19197 7102 0 -1 4202560 10407 0 0 0 26895 486 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513021417992 140513095566055 0 4 0 16800975 0 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19202] ppid=19197 vsize=13335820 CPUtime=273.47 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19202/stat : 19202 (java) R 19197 19197 7102 0 -1 4202560 11692 0 0 0 26842 505 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513020365192 140513095566055 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19203] ppid=19197 vsize=13335820 CPUtime=272.98 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19203/stat : 19203 (java) R 19197 19197 7102 0 -1 4202560 10956 0 0 0 26819 479 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513019312904 140513095566055 0 4 0 16800975 0 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19204] ppid=19197 vsize=13335820 CPUtime=274.16 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19204/stat : 19204 (java) R 19197 19197 7102 0 -1 4202560 11706 0 0 0 26944 472 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513018260184 140513087927527 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19205] ppid=19197 vsize=13335820 CPUtime=273.08 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19205/stat : 19205 (java) R 19197 19197 7102 0 -1 4202560 11683 0 0 0 26810 498 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513017207816 140513086320880 0 4 0 16800975 0 0 0 -1 15 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19206] ppid=19197 vsize=13335820 CPUtime=274.13 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19206/stat : 19206 (java) R 19197 19197 7102 0 -1 4202560 12620 0 0 0 26933 480 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513016154704 140513095566055 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19207] ppid=19197 vsize=13335820 CPUtime=273.69 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19207/stat : 19207 (java) R 19197 19197 7102 0 -1 4202560 11251 0 0 0 26899 470 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513015102416 140513095566055 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19208] ppid=19197 vsize=13335820 CPUtime=273.25 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19208/stat : 19208 (java) R 19197 19197 7102 0 -1 4202560 11546 0 0 0 26840 485 0 0 20 0 21 0 4866215 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140513014049928 140513095566055 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19209] ppid=19197 vsize=13335820 CPUtime=7.59 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19209/stat : 19209 (java) S 19197 19197 7102 0 -1 1077944384 64437 0 0 0 754 5 0 0 20 0 21 0 4866216 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512430793408 140513102948053 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19210] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19210/stat : 19210 (java) S 19197 19197 7102 0 -1 1077944384 38 0 0 0 0 0 0 0 20 0 21 0 4866217 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512429740896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19211] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19211/stat : 19211 (java) S 19197 19197 7102 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 21 0 4866217 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512428688512 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19212] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19212/stat : 19212 (java) S 19197 19197 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512427636816 140513102956443 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19213] ppid=19197 vsize=13335820 CPUtime=1.84 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19213/stat : 19213 (java) S 19197 19197 7102 0 -1 1077944384 9782 0 0 0 183 1 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512426584736 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19214] ppid=19197 vsize=13335820 CPUtime=1.63 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19214/stat : 19214 (java) S 19197 19197 7102 0 -1 1077944384 4668 0 0 0 163 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512425531648 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19215] ppid=19197 vsize=13335820 CPUtime=1.03 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19215/stat : 19215 (java) S 19197 19197 7102 0 -1 1077944384 4724 0 0 0 103 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512424479648 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19216] ppid=19197 vsize=13335820 CPUtime=0.57 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19216/stat : 19216 (java) S 19197 19197 7102 0 -1 1077944384 3554 0 0 0 56 1 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512423426848 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 1 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19217] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19217/stat : 19217 (java) S 19197 19197 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4866219 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512422373728 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19218] ppid=19197 vsize=13335820 CPUtime=0.16 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19218/stat : 19218 (java) S 19197 19197 7102 0 -1 1077944384 586 0 0 0 8 8 0 0 20 0 21 0 4866220 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512421321008 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 11 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19427] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19427/stat : 19427 (java) S 19197 19197 7102 0 -1 1077944384 24 0 0 0 0 0 0 0 20 0 21 0 4900838 13655879680 2495458 33554432000 4194304 4196468 140724273761184 140512413310400 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
Current children cumulated CPU time (s) 2273.66
Current children cumulated vsize (KiB) 13345332

[startup+356.201 s]
/proc/loadavg: 9.94 11.39 12.78 9/284 19427
/proc/meminfo: memFree=17637864/32770624 swapFree=5656/335584
[pid=19197] ppid=19194 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19197/stat : 19197 (xcsp3-exec) S 19194 19197 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866213 9740288 346 33554432000 4194304 5098028 140723571110576 140723571108680 140639915836028 0 65536 4100 65538 18446744071579417331 0 0 17 9 0 0 0 0 0 7196144 7232144 15962112 140723571119246 140723571119456 140723571119456 140723571122155 0
/proc/19197/statm: 2378 346 289 221 0 87 0
[pid=19198] ppid=19197 vsize=13335820 CPUtime=2274.41 cores=1,3,5,7,9,11,13,15
/proc/19198/stat : 19198 (java) S 19197 19197 7102 0 -1 1077944320 192909 0 0 0 223534 3907 0 0 20 0 21 0 4866214 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140724273743728 140513102937847 0 0 0 16800975 18446744073709551615 0 0 17 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
/proc/19198/statm: 3333955 2495462 3271 1 0 3321188 0
[pid=19198/tid=19199] ppid=19197 vsize=13335820 CPUtime=72.1 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19199/stat : 19199 (java) S 19197 19197 7102 0 -1 1077944384 11720 0 0 0 7201 9 0 0 20 0 21 0 4866214 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513107178528 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19201] ppid=19197 vsize=13335820 CPUtime=273.89 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19201/stat : 19201 (java) S 19197 19197 7102 0 -1 1077944384 10407 0 0 0 26903 486 0 0 20 0 21 0 4866215 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513021417872 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19202] ppid=19197 vsize=13335820 CPUtime=273.55 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19202/stat : 19202 (java) S 19197 19197 7102 0 -1 1077944384 11692 0 0 0 26850 505 0 0 20 0 21 0 4866215 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513020365072 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19203] ppid=19197 vsize=13335820 CPUtime=273.06 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19203/stat : 19203 (java) S 19197 19197 7102 0 -1 1077944384 10956 0 0 0 26827 479 0 0 20 0 21 0 4866215 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513019312784 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19204] ppid=19197 vsize=13335820 CPUtime=274.24 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19204/stat : 19204 (java) S 19197 19197 7102 0 -1 1077944384 11706 0 0 0 26952 472 0 0 20 0 21 0 4866215 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513018259984 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19205] ppid=19197 vsize=13335820 CPUtime=273.16 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19205/stat : 19205 (java) S 19197 19197 7102 0 -1 1077944384 11683 0 0 0 26818 498 0 0 20 0 21 0 4866215 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513017207696 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19206] ppid=19197 vsize=13335820 CPUtime=274.21 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19206/stat : 19206 (java) S 19197 19197 7102 0 -1 1077944384 12620 0 0 0 26941 480 0 0 20 0 21 0 4866215 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513016154896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19207] ppid=19197 vsize=13335820 CPUtime=273.77 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19207/stat : 19207 (java) S 19197 19197 7102 0 -1 1077944384 11251 0 0 0 26907 470 0 0 20 0 21 0 4866215 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513015102608 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19208] ppid=19197 vsize=13335820 CPUtime=273.33 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19208/stat : 19208 (java) S 19197 19197 7102 0 -1 1077944384 11546 0 0 0 26848 485 0 0 20 0 21 0 4866215 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140513014049808 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19209] ppid=19197 vsize=13335820 CPUtime=7.71 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19209/stat : 19209 (java) R 19197 19197 7102 0 -1 4202560 64692 0 0 0 766 5 0 0 20 0 21 0 4866216 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512430793296 140513081308027 0 0 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19210] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19210/stat : 19210 (java) S 19197 19197 7102 0 -1 1077944384 38 0 0 0 0 0 0 0 20 0 21 0 4866217 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512429740896 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19211] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19211/stat : 19211 (java) S 19197 19197 7102 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 21 0 4866217 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512428688512 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19212] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19212/stat : 19212 (java) S 19197 19197 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4866219 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512427636816 140513102956443 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19213] ppid=19197 vsize=13335820 CPUtime=1.84 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19213/stat : 19213 (java) S 19197 19197 7102 0 -1 1077944384 9782 0 0 0 183 1 0 0 20 0 21 0 4866219 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512426584736 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19214] ppid=19197 vsize=13335820 CPUtime=1.63 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19214/stat : 19214 (java) S 19197 19197 7102 0 -1 1077944384 4668 0 0 0 163 0 0 0 20 0 21 0 4866219 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512425531648 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19215] ppid=19197 vsize=13335820 CPUtime=1.03 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19215/stat : 19215 (java) S 19197 19197 7102 0 -1 1077944384 4724 0 0 0 103 0 0 0 20 0 21 0 4866219 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512424479648 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19216] ppid=19197 vsize=13335820 CPUtime=0.57 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19216/stat : 19216 (java) S 19197 19197 7102 0 -1 1077944384 3554 0 0 0 56 1 0 0 20 0 21 0 4866219 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512423426848 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 1 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19217] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19217/stat : 19217 (java) S 19197 19197 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4866219 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512422373728 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19218] ppid=19197 vsize=13335820 CPUtime=0.16 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19218/stat : 19218 (java) S 19197 19197 7102 0 -1 1077944384 586 0 0 0 8 8 0 0 20 0 21 0 4866220 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512421321008 140513102948994 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 11 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
[pid=19198/tid=19427] ppid=19197 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/19198/task/19427/stat : 19427 (java) S 19197 19197 7102 0 -1 1077944384 24 0 0 0 0 0 0 0 20 0 21 0 4900838 13655879680 2495462 33554432000 4194304 4196468 140724273761184 140512413310400 140513102948053 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 26726400 140724273767612 140724273767788 140724273767788 140724273770447 0
Current children cumulated CPU time (s) 2274.41
Current children cumulated vsize (KiB) 13345332

Child status: 1
Real time (s): 356.26
CPU time (s): 2274.46
CPU user time (s): 2235.35
CPU system time (s): 39.1149
CPU usage (%): 638.427
Max. virtual memory (cumulated for all children) (KiB): 13345332

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2235.35
system time used= 39.1149
maximum resident set size= 9982152
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 193503
page faults= 0
swaps= 0
block input operations= 0
block output operations= 488
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 25885
involuntary context switches= 154341

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 3.4092 second user time and 3.88253 second system time

The end

Launcher Data

Begin job on node130 at 2017-07-22 05:59:47
IDJOB=4249896
IDBENCH=138396
IDSOLVER=2626
FILE ID=node130/4249896-1500695987
RUNJOBID= node130-1500684118-8560
PBS_JOBID= 20623029
Free space on /tmp= 61880 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/SuperSolutions/SuperSolutions-Queens-s1/SuperQueens-02.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-4249896-1500695987/watcher-4249896-1500695987 -o /tmp/evaluation-result-4249896-1500695987/solver-4249896-1500695987 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node130-1500684118-8560 --watchdog 2560  ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 1133176743 HOME/instance-4249896-1500695987.xml

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

MD5SUM BENCH= 80353dd8c937a5bb459a24b290639269
RANDOM SEED=1133176743

node130.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.34
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		: 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.34
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		: 2133.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.34
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		: 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.34
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		: 1867.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

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

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

processor	: 12
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
core id		: 2
cpu cores	: 4
apicid		: 5
initial apicid	: 5
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.34
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		: 2668.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		: 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.34
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:        22173348 kB
MemAvailable:   22466516 kB
Buffers:          122808 kB
Cached:           450516 kB
SwapCached:            0 kB
Active:          9804764 kB
Inactive:         343976 kB
Active(anon):    9577412 kB
Inactive(anon):     8888 kB
Active(file):     227352 kB
Inactive(file):   335088 kB
Unevictable:        5656 kB
Mlocked:            5656 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              8416 kB
Writeback:             0 kB
AnonPages:       9661908 kB
Mapped:            42660 kB
Shmem:              8844 kB
Slab:             127700 kB
SReclaimable:      93124 kB
SUnreclaim:        34576 kB
KernelStack:        4960 kB
PageTables:        23744 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:   10852108 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   9041920 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      128384 kB
DirectMap2M:    33417216 kB

Free space on /tmp at the end= 61944 MiB
End job on node130 at 2017-07-22 06:05:43