Trace number 4249906

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)? 1386.02 240.951

General information on the benchmark

NameSuperSolutions/SuperSolutions-Queens-s1/
SuperQueens-14.xml
MD5SUMe8698b72f1d598ed72051801219b61cc
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 variables160
Number of constraints9560
Number of domains1
Minimum domain size80
Maximum domain size80
Distribution of domain sizes[{"size":80,"count":160}]
Minimum variable degree80
Maximum variable degree159
Distribution of variable degrees[{"degree":80,"count":80},{"degree":159,"count":80}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":9560}]
Number of extensional constraints0
Number of intensional constraints9560
Distribution of constraint types[{"type":"intension","count":9560}]
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-4249906-1500695993.xml"  -tl '2400s' -p 8 -x 3
0.00/0.19	c [HOME/instance-4249906-1500695993.xml, -tl, 2400s, -p, 8, -x, 3]
0.00/0.24	c 8 solvers in parallel
0.00/0.31	c parse instance...
1222.65/219.74	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
1292.06/228.75		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
1292.06/228.75		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
1292.06/228.75		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1853)
1292.06/228.75		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1809)
1292.06/228.75		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
1292.06/228.75		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
1292.06/228.75		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
1292.06/228.75		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
1292.06/228.75		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
1292.06/228.75		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
1292.06/228.75		at org.xcsp.parser.XCallbacks$$Lambda$52/343965883.accept(Unknown Source)
1292.06/228.75		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
1292.06/228.75		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
1292.06/228.75		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
1292.06/228.75		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
1292.06/228.75		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
1292.06/228.75		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
1292.06/228.75		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
1292.06/228.75		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
1292.06/228.75		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:114)
1292.06/228.75		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:101)
1292.06/228.75		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
1385.50/240.90	s UNKNOWN
1385.50/240.90	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-4249906-1500695993/watcher-4249906-1500695993 -o /tmp/evaluation-result-4249906-1500695993/solver-4249906-1500695993 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node130-1500684118-8559 --watchdog 2560 ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 179977371 HOME/instance-4249906-1500695993.xml 

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

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


[startup+0 s]
/proc/loadavg: 9.25 13.13 13.88 5/262 19284
/proc/meminfo: memFree=31084896/32770624 swapFree=5656/335076
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0

[startup+0.100126 s]
/proc/loadavg: 9.25 13.13 13.88 5/262 19284
/proc/meminfo: memFree=31084896/32770624 swapFree=5656/335076
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.200354 s]
/proc/loadavg: 9.25 13.13 13.88 5/262 19284
/proc/meminfo: memFree=31084896/32770624 swapFree=5656/335076
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.300295 s]
/proc/loadavg: 9.25 13.13 13.88 5/262 19284
/proc/meminfo: memFree=31084896/32770624 swapFree=5656/335076
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.70019 s]
/proc/loadavg: 9.25 13.13 13.88 5/262 19284
/proc/meminfo: memFree=31084896/32770624 swapFree=5656/335076
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.50077 s]
/proc/loadavg: 9.25 13.13 13.88 6/283 19305
/proc/meminfo: memFree=30934620/32770624 swapFree=5656/335140
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
[pid=19285] ppid=19284 vsize=13269256 CPUtime=4.14 cores=0,2,4,6,8,10,12,14
/proc/19285/stat : 19285 (java) S 19284 19284 7102 0 -1 1077944320 19098 0 0 0 392 22 0 0 20 0 20 0 4866764 13587718144 54427 33554432000 4194304 4196468 140728029990816 140728029973360 139681379757815 0 0 0 16800975 18446744073709551615 0 0 17 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
/proc/19285/statm: 3317314 54427 3234 1 0 3304547 0
[pid=19285/tid=19286] ppid=19284 vsize=13269256 CPUtime=1.43 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19286/stat : 19286 (java) R 19284 19284 7102 0 -1 4202560 7301 0 0 0 139 4 0 0 20 0 20 0 4866764 13587718144 54427 33554432000 4194304 4196468 140728029990816 139681383995992 139681011453892 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19288] ppid=19284 vsize=13269256 CPUtime=0.03 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19288/stat : 19288 (java) S 19284 19284 7102 0 -1 1077944384 83 0 0 0 1 2 0 0 20 0 20 0 4866765 13587718144 54427 33554432000 4194304 4196468 140728029990816 139681332378128 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19289] ppid=19284 vsize=13269256 CPUtime=0.02 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19289/stat : 19289 (java) S 19284 19284 7102 0 -1 1077944384 44 0 0 0 1 1 0 0 20 0 20 0 4866765 13587718144 54427 33554432000 4194304 4196468 140728029990816 139681331325584 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19290] ppid=19284 vsize=13269256 CPUtime=0.02 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19290/stat : 19290 (java) S 19284 19284 7102 0 -1 1077944384 157 0 0 0 1 1 0 0 20 0 20 0 4866765 13587718144 54427 33554432000 4194304 4196468 140728029990816 139681330272528 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19291] ppid=19284 vsize=13269256 CPUtime=0.02 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19291/stat : 19291 (java) S 19284 19284 7102 0 -1 1077944384 73 0 0 0 1 1 0 0 20 0 20 0 4866765 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680976140688 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19292] ppid=19284 vsize=13269256 CPUtime=0.02 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19292/stat : 19292 (java) S 19284 19284 7102 0 -1 1077944384 39 0 0 0 1 1 0 0 20 0 20 0 4866765 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680975088656 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19293] ppid=19284 vsize=13269256 CPUtime=0.02 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19293/stat : 19293 (java) S 19284 19284 7102 0 -1 1077944384 41 0 0 0 1 1 0 0 20 0 20 0 4866765 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680974036112 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19294] ppid=19284 vsize=13269256 CPUtime=0.02 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19294/stat : 19294 (java) S 19284 19284 7102 0 -1 1077944384 76 0 0 0 1 1 0 0 20 0 20 0 4866765 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680972983056 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 8 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19295] ppid=19284 vsize=13269256 CPUtime=0.02 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19295/stat : 19295 (java) S 19284 19284 7102 0 -1 1077944384 46 0 0 0 1 1 0 0 20 0 20 0 4866765 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680971930512 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19296] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19296/stat : 19296 (java) S 19284 19284 7102 0 -1 1077944384 214 0 0 0 0 0 0 0 20 0 20 0 4866768 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680842037488 139681379768962 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19297] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19297/stat : 19297 (java) S 19284 19284 7102 0 -1 1077944384 57 0 0 0 0 0 0 0 20 0 20 0 4866768 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680840983712 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19298] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19298/stat : 19298 (java) S 19284 19284 7102 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 4866769 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680839930608 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19299] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19299/stat : 19299 (java) S 19284 19284 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4866772 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680838879184 139681379776411 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19300] ppid=19284 vsize=13269256 CPUtime=0.63 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19300/stat : 19300 (java) S 19284 19284 7102 0 -1 1077944384 2433 0 0 0 63 0 0 0 20 0 20 0 4866772 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680837827312 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19301] ppid=19284 vsize=13269256 CPUtime=0.68 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19301/stat : 19301 (java) S 19284 19284 7102 0 -1 1077944384 2379 0 0 0 68 0 0 0 20 0 20 0 4866772 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680836774768 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19302] ppid=19284 vsize=13269256 CPUtime=0.63 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19302/stat : 19302 (java) S 19284 19284 7102 0 -1 1077944384 1905 0 0 0 63 0 0 0 20 0 20 0 4866772 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680835721712 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19303] ppid=19284 vsize=13269256 CPUtime=0.44 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19303/stat : 19303 (java) S 19284 19284 7102 0 -1 1077944384 2958 0 0 0 44 0 0 0 20 0 20 0 4866772 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680834669168 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19304] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19304/stat : 19304 (java) S 19284 19284 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4866773 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680833616352 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19305] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19305/stat : 19305 (java) S 19284 19284 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4866773 13587718144 54427 33554432000 4194304 4196468 140728029990816 139680832563888 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
Current children cumulated CPU time (s) 4.14
Current children cumulated vsize (KiB) 13278768

[startup+3.10078 s]
/proc/loadavg: 8.75 12.97 13.82 4/283 19305
/proc/meminfo: memFree=30625096/32770624 swapFree=5656/335108
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
[pid=19285] ppid=19284 vsize=13269256 CPUtime=6.96 cores=0,2,4,6,8,10,12,14
/proc/19285/stat : 19285 (java) S 19284 19284 7102 0 -1 1077944320 21482 0 0 0 597 99 0 0 20 0 20 0 4866764 13587718144 87979 33554432000 4194304 4196468 140728029990816 140728029973360 139681379757815 0 0 0 16800975 18446744073709551615 0 0 17 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
/proc/19285/statm: 3317314 87979 3243 1 0 3304547 0
[pid=19285/tid=19286] ppid=19284 vsize=13269256 CPUtime=2.88 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19286/stat : 19286 (java) R 19284 19284 7102 0 -1 4202560 7756 0 0 0 284 4 0 0 20 0 20 0 4866764 13587718144 87979 33554432000 4194304 4196468 140728029990816 139681383991368 139681015637622 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19288] ppid=19284 vsize=13269256 CPUtime=0.17 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19288/stat : 19288 (java) S 19284 19284 7102 0 -1 1077944384 170 0 0 0 6 11 0 0 20 0 20 0 4866765 13587718144 87979 33554432000 4194304 4196468 140728029990816 139681332378128 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19289] ppid=19284 vsize=13269256 CPUtime=0.16 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19289/stat : 19289 (java) S 19284 19284 7102 0 -1 1077944384 402 0 0 0 6 10 0 0 20 0 20 0 4866765 13587718144 87979 33554432000 4194304 4196468 140728029990816 139681331325584 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19290] ppid=19284 vsize=13269256 CPUtime=0.17 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19290/stat : 19290 (java) S 19284 19284 7102 0 -1 1077944384 259 0 0 0 6 11 0 0 20 0 20 0 4866765 13587718144 87979 33554432000 4194304 4196468 140728029990816 139681330272528 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19291] ppid=19284 vsize=13269256 CPUtime=0.17 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19291/stat : 19291 (java) S 19284 19284 7102 0 -1 1077944384 229 0 0 0 6 11 0 0 20 0 20 0 4866765 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680976140688 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19292] ppid=19284 vsize=13269256 CPUtime=0.17 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19292/stat : 19292 (java) S 19284 19284 7102 0 -1 1077944384 127 0 0 0 6 11 0 0 20 0 20 0 4866765 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680975088656 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19293] ppid=19284 vsize=13269256 CPUtime=0.17 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19293/stat : 19293 (java) S 19284 19284 7102 0 -1 1077944384 121 0 0 0 6 11 0 0 20 0 20 0 4866765 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680974036112 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19294] ppid=19284 vsize=13269256 CPUtime=0.17 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19294/stat : 19294 (java) S 19284 19284 7102 0 -1 1077944384 162 0 0 0 6 11 0 0 20 0 20 0 4866765 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680972983056 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19295] ppid=19284 vsize=13269256 CPUtime=0.17 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19295/stat : 19295 (java) S 19284 19284 7102 0 -1 1077944384 144 0 0 0 6 11 0 0 20 0 20 0 4866765 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680971930512 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19296] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19296/stat : 19296 (java) S 19284 19284 7102 0 -1 1077944384 277 0 0 0 0 0 0 0 20 0 20 0 4866768 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680842037488 139681379768962 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19297] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19297/stat : 19297 (java) S 19284 19284 7102 0 -1 1077944384 57 0 0 0 0 0 0 0 20 0 20 0 4866768 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680840983712 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19298] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19298/stat : 19298 (java) S 19284 19284 7102 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 4866769 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680839930608 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19299] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19299/stat : 19299 (java) S 19284 19284 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4866772 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680838879184 139681379776411 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19300] ppid=19284 vsize=13269256 CPUtime=0.7 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19300/stat : 19300 (java) S 19284 19284 7102 0 -1 1077944384 2518 0 0 0 70 0 0 0 20 0 20 0 4866772 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680837827312 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19301] ppid=19284 vsize=13269256 CPUtime=0.71 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19301/stat : 19301 (java) S 19284 19284 7102 0 -1 1077944384 2558 0 0 0 71 0 0 0 20 0 20 0 4866772 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680836774768 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19302] ppid=19284 vsize=13269256 CPUtime=0.69 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19302/stat : 19302 (java) S 19284 19284 7102 0 -1 1077944384 2070 0 0 0 69 0 0 0 20 0 20 0 4866772 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680835721712 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19303] ppid=19284 vsize=13269256 CPUtime=0.51 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19303/stat : 19303 (java) S 19284 19284 7102 0 -1 1077944384 3332 0 0 0 50 1 0 0 20 0 20 0 4866772 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680834669168 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19304] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19304/stat : 19304 (java) S 19284 19284 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4866773 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680833616352 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19305] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19305/stat : 19305 (java) D 19284 19284 7102 0 -1 4202560 11 0 0 0 0 0 0 0 20 0 20 0 4866773 13587718144 87979 33554432000 4194304 4196468 140728029990816 139680832563808 139681364613902 0 4 0 16800975 18446744072100334725 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
Current children cumulated CPU time (s) 6.96
Current children cumulated vsize (KiB) 13278768

[startup+6.30081 s]
/proc/loadavg: 8.75 12.97 13.82 11/283 19305
/proc/meminfo: memFree=29696708/32770624 swapFree=5656/335120
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
[pid=19285] ppid=19284 vsize=13269256 CPUtime=15.5 cores=0,2,4,6,8,10,12,14
/proc/19285/stat : 19285 (java) S 19284 19284 7102 0 -1 1077944320 27705 0 0 0 1306 244 0 0 20 0 20 0 4866764 13587718144 182777 33554432000 4194304 4196468 140728029990816 140728029973360 139681379757815 0 0 0 16800975 18446744073709551615 0 0 17 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
/proc/19285/statm: 3317314 182777 3266 1 0 3304547 0
[pid=19285/tid=19286] ppid=19284 vsize=13269256 CPUtime=5.3 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19286/stat : 19286 (java) R 19284 19284 7102 0 -1 4202560 7941 0 0 0 524 6 0 0 20 0 20 0 4866764 13587718144 182777 33554432000 4194304 4196468 140728029990816 139681383992808 139681014941026 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19288] ppid=19284 vsize=13269256 CPUtime=0.89 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19288/stat : 19288 (java) S 19284 19284 7102 0 -1 1077944384 395 0 0 0 60 29 0 0 20 0 20 0 4866765 13587718144 182777 33554432000 4194304 4196468 140728029990816 139681332378128 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19289] ppid=19284 vsize=13269256 CPUtime=0.87 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19289/stat : 19289 (java) S 19284 19284 7102 0 -1 1077944384 650 0 0 0 60 27 0 0 20 0 20 0 4866765 13587718144 182777 33554432000 4194304 4196468 140728029990816 139681331325584 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19290] ppid=19284 vsize=13269256 CPUtime=0.89 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19290/stat : 19290 (java) S 19284 19284 7102 0 -1 1077944384 587 0 0 0 60 29 0 0 20 0 20 0 4866765 13587718144 182777 33554432000 4194304 4196468 140728029990816 139681330272528 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19291] ppid=19284 vsize=13269256 CPUtime=0.88 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19291/stat : 19291 (java) S 19284 19284 7102 0 -1 1077944384 645 0 0 0 60 28 0 0 20 0 20 0 4866765 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680976140688 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19292] ppid=19284 vsize=13269256 CPUtime=0.9 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19292/stat : 19292 (java) S 19284 19284 7102 0 -1 1077944384 702 0 0 0 61 29 0 0 20 0 20 0 4866765 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680975088656 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19293] ppid=19284 vsize=13269256 CPUtime=0.89 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19293/stat : 19293 (java) S 19284 19284 7102 0 -1 1077944384 406 0 0 0 60 29 0 0 20 0 20 0 4866765 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680974036112 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19294] ppid=19284 vsize=13269256 CPUtime=0.89 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19294/stat : 19294 (java) S 19284 19284 7102 0 -1 1077944384 622 0 0 0 60 29 0 0 20 0 20 0 4866765 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680972983056 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19295] ppid=19284 vsize=13269256 CPUtime=0.89 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19295/stat : 19295 (java) S 19284 19284 7102 0 -1 1077944384 716 0 0 0 60 29 0 0 20 0 20 0 4866765 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680971930512 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19296] ppid=19284 vsize=13269256 CPUtime=0.05 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19296/stat : 19296 (java) S 19284 19284 7102 0 -1 1077944384 1742 0 0 0 5 0 0 0 20 0 20 0 4866768 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680842037488 139681379768962 0 0 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19297] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19297/stat : 19297 (java) S 19284 19284 7102 0 -1 1077944384 57 0 0 0 0 0 0 0 20 0 20 0 4866768 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680840983712 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19298] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19298/stat : 19298 (java) S 19284 19284 7102 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 4866769 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680839930608 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19299] ppid=19284 vsize=13269256 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19299/stat : 19299 (java) S 19284 19284 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4866772 13587718144 182777 33554432000 4194304 4196468 140728029990816 139680838879184 139681379776411 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0

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

/proc/meminfo: memFree=11512992/32770624 swapFree=5656/335388
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
[pid=19285] ppid=19284 vsize=13335820 CPUtime=1379.11 cores=0,2,4,6,8,10,12,14
/proc/19285/stat : 19285 (java) S 19284 19284 7102 0 -1 1077944320 167459 0 0 0 133573 4338 0 0 20 0 21 0 4866764 13655879680 2568593 33554432000 4194304 4196468 140728029990816 140728029973360 139681379757815 0 0 0 16800975 18446744073709551615 0 0 17 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
/proc/19285/statm: 3333955 2568593 3278 1 0 3321188 0
[pid=19285/tid=19286] ppid=19284 vsize=13335820 CPUtime=72.4 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19286/stat : 19286 (java) S 19284 19284 7102 0 -1 1077944384 11135 0 0 0 7230 10 0 0 20 0 21 0 4866764 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139681383998496 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19288] ppid=19284 vsize=13335820 CPUtime=161.72 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19288/stat : 19288 (java) R 19284 19284 7102 0 -1 4202560 10231 0 0 0 15600 572 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139681332378328 139681364747293 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19289] ppid=19284 vsize=13335820 CPUtime=162.12 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19289/stat : 19289 (java) R 19284 19284 7102 0 -1 4202560 10007 0 0 0 15698 514 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139681331325784 139681364215418 0 4 0 16800975 0 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19290] ppid=19284 vsize=13335820 CPUtime=161.53 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19290/stat : 19290 (java) R 19284 19284 7102 0 -1 4202560 9244 0 0 0 15672 481 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139681330272728 139681364457727 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19291] ppid=19284 vsize=13335820 CPUtime=162.33 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19291/stat : 19291 (java) R 19284 19284 7102 0 -1 4202560 10792 0 0 0 15682 551 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680976140888 139681364457576 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19292] ppid=19284 vsize=13335820 CPUtime=161.94 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19292/stat : 19292 (java) R 19284 19284 7102 0 -1 4202560 10346 0 0 0 15662 532 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680975088856 139681364747458 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19293] ppid=19284 vsize=13335820 CPUtime=162.24 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19293/stat : 19293 (java) R 19284 19284 7102 0 -1 4202560 8776 0 0 0 15675 549 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680974036112 139681364458067 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19294] ppid=19284 vsize=13335820 CPUtime=162.5 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19294/stat : 19294 (java) R 19284 19284 7102 0 -1 4202560 10171 0 0 0 15686 564 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680972983256 139681364754225 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19295] ppid=19284 vsize=13335820 CPUtime=162.21 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19295/stat : 19295 (java) R 19284 19284 7102 0 -1 4202560 11129 0 0 0 15673 548 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680971930712 139681364754368 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19296] ppid=19284 vsize=13335820 CPUtime=3.63 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19296/stat : 19296 (java) S 19284 19284 7102 0 -1 1077944384 44469 0 0 0 361 2 0 0 20 0 21 0 4866768 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680842036032 139681379768021 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19297] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19297/stat : 19297 (java) S 19284 19284 7102 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 21 0 4866768 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680840983776 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19298] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19298/stat : 19298 (java) S 19284 19284 7102 0 -1 1077944384 93 0 0 0 0 0 0 0 20 0 21 0 4866769 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680839930624 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19299] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19299/stat : 19299 (java) S 19284 19284 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680838879184 139681379776411 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19300] ppid=19284 vsize=13335820 CPUtime=2.3 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19300/stat : 19300 (java) S 19284 19284 7102 0 -1 1077944384 9650 0 0 0 229 1 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680837827312 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19301] ppid=19284 vsize=13335820 CPUtime=1.95 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19301/stat : 19301 (java) S 19284 19284 7102 0 -1 1077944384 8486 0 0 0 195 0 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680836774768 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 7 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19302] ppid=19284 vsize=13335820 CPUtime=1.34 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19302/stat : 19302 (java) S 19284 19284 7102 0 -1 1077944384 6653 0 0 0 133 1 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680835721712 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 2 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19303] ppid=19284 vsize=13335820 CPUtime=0.63 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19303/stat : 19303 (java) S 19284 19284 7102 0 -1 1077944384 4538 0 0 0 62 1 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680834669168 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19304] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19304/stat : 19304 (java) S 19284 19284 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4866773 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680833616352 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19305] ppid=19284 vsize=13335820 CPUtime=0.11 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19305/stat : 19305 (java) S 19284 19284 7102 0 -1 1077944384 411 0 0 0 6 5 0 0 20 0 21 0 4866773 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680832563888 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 7 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19338] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19338/stat : 19338 (java) S 19284 19284 7102 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 21 0 4890585 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680824552512 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
Current children cumulated CPU time (s) 1379.11
Current children cumulated vsize (KiB) 13345332

[startup+240.401 s]
/proc/loadavg: 14.54 12.39 13.24 18/284 19338
/proc/meminfo: memFree=11512992/32770624 swapFree=5656/335388
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
[pid=19285] ppid=19284 vsize=13335820 CPUtime=1382.3 cores=0,2,4,6,8,10,12,14
/proc/19285/stat : 19285 (java) S 19284 19284 7102 0 -1 1077944320 167459 0 0 0 133892 4338 0 0 20 0 21 0 4866764 13655879680 2568593 33554432000 4194304 4196468 140728029990816 140728029973360 139681379757815 0 0 0 16800975 18446744073709551615 0 0 17 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
/proc/19285/statm: 3333955 2568593 3278 1 0 3321188 0
[pid=19285/tid=19286] ppid=19284 vsize=13335820 CPUtime=72.4 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19286/stat : 19286 (java) S 19284 19284 7102 0 -1 1077944384 11135 0 0 0 7230 10 0 0 20 0 21 0 4866764 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139681383998496 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19288] ppid=19284 vsize=13335820 CPUtime=162.12 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19288/stat : 19288 (java) R 19284 19284 7102 0 -1 4202560 10231 0 0 0 15640 572 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139681332378328 139681364456536 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19289] ppid=19284 vsize=13335820 CPUtime=162.52 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19289/stat : 19289 (java) R 19284 19284 7102 0 -1 4202560 10007 0 0 0 15738 514 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139681331325784 139681364754233 0 4 0 16800975 0 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19290] ppid=19284 vsize=13335820 CPUtime=161.93 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19290/stat : 19290 (java) R 19284 19284 7102 0 -1 4202560 9244 0 0 0 15712 481 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139681330272728 139681364215418 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19291] ppid=19284 vsize=13335820 CPUtime=162.73 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19291/stat : 19291 (java) R 19284 19284 7102 0 -1 4202560 10792 0 0 0 15722 551 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680976140888 139681364456539 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19292] ppid=19284 vsize=13335820 CPUtime=162.34 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19292/stat : 19292 (java) R 19284 19284 7102 0 -1 4202560 10346 0 0 0 15702 532 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680975088856 139681364215427 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19293] ppid=19284 vsize=13335820 CPUtime=162.64 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19293/stat : 19293 (java) R 19284 19284 7102 0 -1 4202560 8776 0 0 0 15715 549 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680974036000 139681364456629 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19294] ppid=19284 vsize=13335820 CPUtime=162.9 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19294/stat : 19294 (java) R 19284 19284 7102 0 -1 4202560 10171 0 0 0 15726 564 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680972983256 139681364754423 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19295] ppid=19284 vsize=13335820 CPUtime=162.61 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19295/stat : 19295 (java) R 19284 19284 7102 0 -1 4202560 11129 0 0 0 15713 548 0 0 20 0 21 0 4866765 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680971930712 139681364754403 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19296] ppid=19284 vsize=13335820 CPUtime=3.63 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19296/stat : 19296 (java) S 19284 19284 7102 0 -1 1077944384 44469 0 0 0 361 2 0 0 20 0 21 0 4866768 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680842036032 139681379768021 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19297] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19297/stat : 19297 (java) S 19284 19284 7102 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 21 0 4866768 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680840983776 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19298] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19298/stat : 19298 (java) S 19284 19284 7102 0 -1 1077944384 93 0 0 0 0 0 0 0 20 0 21 0 4866769 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680839930624 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19299] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19299/stat : 19299 (java) S 19284 19284 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680838879184 139681379776411 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19300] ppid=19284 vsize=13335820 CPUtime=2.3 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19300/stat : 19300 (java) S 19284 19284 7102 0 -1 1077944384 9650 0 0 0 229 1 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680837827312 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19301] ppid=19284 vsize=13335820 CPUtime=1.95 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19301/stat : 19301 (java) S 19284 19284 7102 0 -1 1077944384 8486 0 0 0 195 0 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680836774768 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 7 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19302] ppid=19284 vsize=13335820 CPUtime=1.34 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19302/stat : 19302 (java) S 19284 19284 7102 0 -1 1077944384 6653 0 0 0 133 1 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680835721712 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 2 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19303] ppid=19284 vsize=13335820 CPUtime=0.63 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19303/stat : 19303 (java) S 19284 19284 7102 0 -1 1077944384 4538 0 0 0 62 1 0 0 20 0 21 0 4866772 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680834669168 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19304] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19304/stat : 19304 (java) S 19284 19284 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4866773 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680833616352 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19305] ppid=19284 vsize=13335820 CPUtime=0.11 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19305/stat : 19305 (java) S 19284 19284 7102 0 -1 1077944384 411 0 0 0 6 5 0 0 20 0 21 0 4866773 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680832563888 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 7 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19338] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19338/stat : 19338 (java) S 19284 19284 7102 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 21 0 4890585 13655879680 2568593 33554432000 4194304 4196468 140728029990816 139680824552512 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
Current children cumulated CPU time (s) 1382.3
Current children cumulated vsize (KiB) 13345332

[startup+240.801 s]
/proc/loadavg: 14.54 12.39 13.24 18/284 19338
/proc/meminfo: memFree=11512992/32770624 swapFree=5656/335388
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
[pid=19285] ppid=19284 vsize=13335820 CPUtime=1385.5 cores=0,2,4,6,8,10,12,14
/proc/19285/stat : 19285 (java) S 19284 19284 7102 0 -1 1077944320 167562 0 0 0 134211 4339 0 0 20 0 21 0 4866764 13655879680 2568594 33554432000 4194304 4196468 140728029990816 140728029973360 139681379757815 0 0 0 16800975 18446744073709551615 0 0 17 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
/proc/19285/statm: 3333955 2568594 3278 1 0 3321188 0
[pid=19285/tid=19286] ppid=19284 vsize=13335820 CPUtime=72.4 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19286/stat : 19286 (java) S 19284 19284 7102 0 -1 1077944384 11135 0 0 0 7230 10 0 0 20 0 21 0 4866764 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139681383998496 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19288] ppid=19284 vsize=13335820 CPUtime=162.51 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19288/stat : 19288 (java) R 19284 19284 7102 0 -1 4202560 10231 0 0 0 15679 572 0 0 20 0 21 0 4866765 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139681332378328 139681364456512 0 4 0 16800975 0 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19289] ppid=19284 vsize=13335820 CPUtime=162.92 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19289/stat : 19289 (java) R 19284 19284 7102 0 -1 4202560 10007 0 0 0 15778 514 0 0 20 0 21 0 4866765 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139681331325784 139681364456611 0 4 0 16800975 0 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19290] ppid=19284 vsize=13335820 CPUtime=162.33 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19290/stat : 19290 (java) R 19284 19284 7102 0 -1 4202560 9244 0 0 0 15752 481 0 0 20 0 21 0 4866765 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139681330272728 139681364754464 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19291] ppid=19284 vsize=13335820 CPUtime=163.13 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19291/stat : 19291 (java) R 19284 19284 7102 0 -1 4202560 10839 0 0 0 15762 551 0 0 20 0 21 0 4866765 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680976140888 139681364754458 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19292] ppid=19284 vsize=13335820 CPUtime=162.74 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19292/stat : 19292 (java) R 19284 19284 7102 0 -1 4202560 10346 0 0 0 15742 532 0 0 20 0 21 0 4866765 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680975088856 139681364215437 0 4 0 16800975 0 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19293] ppid=19284 vsize=13335820 CPUtime=163.04 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19293/stat : 19293 (java) R 19284 19284 7102 0 -1 4202560 8776 0 0 0 15755 549 0 0 20 0 21 0 4866765 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680974036000 139681364215435 0 4 0 16800975 0 0 0 -1 8 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19294] ppid=19284 vsize=13335820 CPUtime=163.3 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19294/stat : 19294 (java) R 19284 19284 7102 0 -1 4202560 10171 0 0 0 15766 564 0 0 20 0 21 0 4866765 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680972983256 139681364456783 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19295] ppid=19284 vsize=13335820 CPUtime=163.01 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19295/stat : 19295 (java) R 19284 19284 7102 0 -1 4202560 11185 0 0 0 15753 548 0 0 20 0 21 0 4866765 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680971930712 139681364754368 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19296] ppid=19284 vsize=13335820 CPUtime=3.63 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19296/stat : 19296 (java) S 19284 19284 7102 0 -1 1077944384 44469 0 0 0 361 2 0 0 20 0 21 0 4866768 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680842036032 139681379768021 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19297] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19297/stat : 19297 (java) S 19284 19284 7102 0 -1 1077944384 65 0 0 0 0 0 0 0 20 0 21 0 4866768 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680840983776 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19298] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19298/stat : 19298 (java) S 19284 19284 7102 0 -1 1077944384 93 0 0 0 0 0 0 0 20 0 21 0 4866769 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680839930624 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19299] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19299/stat : 19299 (java) S 19284 19284 7102 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4866772 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680838879184 139681379776411 0 4 0 16800975 18446744071579849748 0 0 -1 10 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19300] ppid=19284 vsize=13335820 CPUtime=2.3 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19300/stat : 19300 (java) S 19284 19284 7102 0 -1 1077944384 9650 0 0 0 229 1 0 0 20 0 21 0 4866772 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680837827312 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19301] ppid=19284 vsize=13335820 CPUtime=1.95 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19301/stat : 19301 (java) S 19284 19284 7102 0 -1 1077944384 8486 0 0 0 195 0 0 0 20 0 21 0 4866772 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680836774768 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 7 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19302] ppid=19284 vsize=13335820 CPUtime=1.34 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19302/stat : 19302 (java) S 19284 19284 7102 0 -1 1077944384 6653 0 0 0 133 1 0 0 20 0 21 0 4866772 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680835721712 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 2 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19303] ppid=19284 vsize=13335820 CPUtime=0.63 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19303/stat : 19303 (java) S 19284 19284 7102 0 -1 1077944384 4538 0 0 0 62 1 0 0 20 0 21 0 4866772 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680834669168 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19304] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19304/stat : 19304 (java) S 19284 19284 7102 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4866773 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680833616352 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 14 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19305] ppid=19284 vsize=13335820 CPUtime=0.11 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19305/stat : 19305 (java) S 19284 19284 7102 0 -1 1077944384 411 0 0 0 6 5 0 0 20 0 21 0 4866773 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680832563888 139681379768962 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 7 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
[pid=19285/tid=19338] ppid=19284 vsize=13335820 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19338/stat : 19338 (java) S 19284 19284 7102 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 21 0 4890585 13655879680 2568594 33554432000 4194304 4196468 140728029990816 139680824552512 139681379768021 0 4 0 16800975 18446744071579849748 0 0 -1 12 0 0 0 0 0 6293624 6294260 7675904 140728029996220 140728029996396 140728029996396 140728029999055 0
Current children cumulated CPU time (s) 1385.5
Current children cumulated vsize (KiB) 13345332

[startup+240.901 s]
/proc/loadavg: 14.54 12.39 13.24 11/284 19339
/proc/meminfo: memFree=11512944/32770624 swapFree=5656/335388
[pid=19284] ppid=19281 vsize=9512 CPUtime=0 cores=0,2,4,6,8,10,12,14
/proc/19284/stat : 19284 (xcsp3-exec) S 19281 19284 7102 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4866764 9740288 346 33554432000 4194304 5098028 140726145549952 140726145548056 140549593506428 0 65536 4100 65538 18446744071579417331 0 0 17 8 0 0 0 0 0 7196144 7232144 29356032 140726145557647 140726145557856 140726145557856 140726145560555 0
/proc/19284/statm: 2378 346 289 221 0 87 0
[pid=19285] ppid=19284 vsize=0 CPUtime=1385.97 cores=0,2,4,6,8,10,12,14
/proc/19285/stat : 19285 (java) Z 19284 19284 7102 0 -1 4227084 167656 0 0 0 134258 4339 0 0 20 0 2 0 4866764 0 0 33554432000 0 0 0 0 0 0 0 0 16800975 18446744073709551615 0 0 17 12 0 0 0 0 0 0 0 0 0 0 0 0 0
/proc/19285/statm: 0 0 0 0 0 0 0
[pid=19285/tid=19294] ppid=19284 vsize=0 CPUtime=163.36 cores=0,2,4,6,8,10,12,14
/proc/19285/task/19294/stat : 19294 (java) R 19284 19284 7102 0 -1 4203588 10171 0 0 0 15771 565 0 0 20 0 2 0 4866765 0 0 33554432000 0 0 0 0 0 0 4 0 16800975 18446744073709551615 0 0 -1 10 0 0 0 0 0 0 0 0 0 0 0 0 0
Current children cumulated CPU time (s) 1385.97
Current children cumulated vsize (KiB) 9512

Child status: 1
Real time (s): 240.951
CPU time (s): 1386.02
CPU user time (s): 1342.58
CPU system time (s): 43.4331
CPU usage (%): 575.229
Max. virtual memory (cumulated for all children) (KiB): 13345332

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1342.58
system time used= 43.4331
maximum resident set size= 10274696
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 168184
page faults= 0
swaps= 0
block input operations= 0
block output operations= 360
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 18897
involuntary context switches= 104986

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.18378 second user time and 2.5166 second system time

The end

Launcher Data

Begin job on node130 at 2017-07-22 05:59:53
IDJOB=4249906
IDBENCH=138399
IDSOLVER=2626
FILE ID=node130/4249906-1500695993
RUNJOBID= node130-1500684118-8559
PBS_JOBID= 20623029
Free space on /tmp= 61952 MiB

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

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

MD5SUM BENCH= e8698b72f1d598ed72051801219b61cc
RANDOM SEED=179977371

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		: 1733.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		: 2668.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		: 1733.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		: 2000.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		: 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.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		: 2668.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		: 2000.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		: 2667.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		: 1600.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:        31085468 kB
MemAvailable:   31303108 kB
Buffers:          122820 kB
Cached:           376036 kB
SwapCached:            0 kB
Active:           908916 kB
Inactive:         343964 kB
Active(anon):     756552 kB
Inactive(anon):     8888 kB
Active(file):     152364 kB
Inactive(file):   335076 kB
Unevictable:        5656 kB
Mlocked:            5656 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              8380 kB
Writeback:             0 kB
AnonPages:        759464 kB
Mapped:            42496 kB
Shmem:              8844 kB
Slab:             126680 kB
SReclaimable:      92072 kB
SUnreclaim:        34608 kB
KernelStack:        4832 kB
PageTables:         6352 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    2077552 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    651264 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:03:54