Trace number 4407346

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
choco-solver 2019-09-24 parallel? 890.937 180.301

General information on the benchmark

NameRamsey/Ramsey-int-s1/
Ramsey-int-13.xml
MD5SUMf1adf00e8f8fa1741c0d4b74f691c684
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark2
Best CPU time to get the best result obtained on this benchmark0.318535
Satisfiable
(Un)Satisfiability was proved
Number of variables169
Number of constraints286
Number of domains1
Minimum domain size78
Maximum domain size78
Distribution of domain sizes[{"size":78,"count":78}]
Minimum variable degree0
Maximum variable degree12
Distribution of variable degrees[{"degree":0,"count":91},{"degree":12,"count":78}]
Minimum constraint arity3
Maximum constraint arity3
Distribution of constraint arities[{"arity":3,"count":286}]
Number of extensional constraints0
Number of intensional constraints286
Distribution of constraint types[{"type":"intension","count":286}]
Optimization problemYES
Type of objectivemin MAXIMUM

Solver Data

0.00/0.00	c java -server -Xmx24000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4407346-1569349722.xml"  -tl '2016s' -p 8
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4407346-1569349722.xml, -tl, 2016s, -p, 8]
0.33/0.22	c 8 solvers in parallel
0.33/0.28	c parse instance...
890.82/180.20	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
890.82/180.20		at java.util.Arrays.copyOf(Arrays.java:3181)
890.82/180.20		at java.util.ArrayList.grow(ArrayList.java:261)
890.82/180.20		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
890.82/180.20		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
890.82/180.20		at java.util.ArrayList.add(ArrayList.java:458)
890.82/180.20		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:159)
890.82/180.20		at org.chocosolver.solver.constraints.extension.TuplesFactory.generateTuples(TuplesFactory.java:88)
890.82/180.20		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
890.82/180.20		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
890.82/180.20		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:283)
890.82/180.20		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:164)
890.82/180.20		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
890.82/180.20		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
890.82/180.20		at org.xcsp.parser.XCallbacks$$Lambda$95/120694604.accept(Unknown Source)
890.82/180.20		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
890.82/180.20		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
890.82/180.20		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
890.82/180.20		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
890.82/180.20		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
890.82/180.20		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
890.82/180.20		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
890.82/180.20		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
890.82/180.20		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
890.82/180.20		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
890.82/180.20		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
890.82/180.20		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
890.82/180.20	s UNKNOWN
890.82/180.20	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

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

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (11871 MiB free)
  memory of node 1: 16384 MiB (9722 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /var/tmp/evaluation-result-4407346-1569349722/watcher-4407346-1569349722 -o /var/tmp/evaluation-result-4407346-1569349722/solver-4407346-1569349722 -C 2016 -W 252 -M 31000 --bin-var /var/tmp/runsolver-exch-node146-1569335937-18517 --watchdog 312 xcsp3-exec -dir HOME -tl 2016 -p 8 -ml 24000 -tdir HOME -seed 966831040 HOME/instance-4407346-1569349722.xml 

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

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

solver pid=25855, runsolver pid=25852

[startup+0.100162 s]*
/proc/loadavg: 7.65 8.02 8.08 3/211 25876
/proc/meminfo: memFree=22096432/32770624 swapFree=67002364/67108860
[pid=25855] ppid=25852 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/25855/stat : 25855 (xcsp3-exec) S 25852 25855 18490 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 510886078 115843072 363 33554432000 4194304 5098028 140721432457728 140721432455832 139640903430780 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 25571328 140721432462168 140721432462426 140721432462426 140721432465350 0
/proc/25855/statm: 28282 363 304 221 0 87 0
[pid=25857] ppid=25855 vsize=28227396 memory=28928 CPUtime=0.12 cores=0-7
/proc/25857/stat : 25857 (java) S 25855 25855 18490 0 -1 1077944320 5709 0 0 0 11 1 0 0 20 0 20 0 510886078 28904853504 7232 33554432000 4194304 4196468 140727330464848 140727330447392 140194270215927 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
/proc/25857/statm: 7056849 7232 3115 1 0 7019032 0
[pid=25857/tid=25858] ppid=25855 vsize=28227396 memory=1398722017469774279 CPUtime=0.08 cores=0-7
/proc/25857/task/25858/stat : 25858 (java) R 25855 25855 18490 0 -1 4202560 3610 0 0 0 8 0 0 0 20 0 20 0 510886078 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194274442064 140194270227862 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25859] ppid=25855 vsize=28227396 memory=4872558044660077418 CPUtime=0 cores=0-7
/proc/25857/task/25859/stat : 25859 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194190068752 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25860] ppid=25855 vsize=28227396 memory=140331907131008 CPUtime=0 cores=0-7
/proc/25857/task/25860/stat : 25860 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194189016208 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25861] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25861/stat : 25861 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194187963152 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25862] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25862/stat : 25862 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194186910608 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25863] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25863/stat : 25863 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194185857552 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25864] ppid=25855 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/25857/task/25864/stat : 25864 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194184805008 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25865] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25865/stat : 25865 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194183751952 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25866] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25866/stat : 25866 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 7232 33554432000 4194304 4196468 140727330464848 140194182699408 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25867] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25867/stat : 25867 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886081 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193653967600 140194270227074 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25868] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25868/stat : 25868 (java) S 25855 25855 18490 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 510886081 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193652913824 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25869] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25869/stat : 25869 (java) S 25855 25855 18490 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 510886081 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193651860720 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25870] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25870/stat : 25870 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193650809296 140194270234523 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25871] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25871/stat : 25871 (java) S 25855 25855 18490 0 -1 1077944384 305 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193649756400 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25872] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25872/stat : 25872 (java) R 25855 25855 18490 0 -1 1077944384 125 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193648703856 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25873] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25873/stat : 25873 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193647650800 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25874] ppid=25855 vsize=28227396 memory=0 CPUtime=0.01 cores=0-7
/proc/25857/task/25874/stat : 25874 (java) R 25855 25855 18490 0 -1 4202560 355 0 0 0 1 0 0 0 20 0 20 0 510886084 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193646598256 140194262933079 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25875] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25875/stat : 25875 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193645546464 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25876] ppid=25855 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/25857/task/25876/stat : 25876 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 7232 33554432000 4194304 4196468 140727330464848 140193644494000 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 28340524 KiB
Current children cumulated memory: 30380 KiB

[startup+0.21023 s]*
/proc/loadavg: 7.65 8.02 8.08 2/211 25876
/proc/meminfo: memFree=22083572/32770624 swapFree=67002364/67108860
[pid=25855] ppid=25852 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/25855/stat : 25855 (xcsp3-exec) S 25852 25855 18490 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 510886078 115843072 363 33554432000 4194304 5098028 140721432457728 140721432455832 139640903430780 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 25571328 140721432462168 140721432462426 140721432462426 140721432465350 0
/proc/25855/statm: 28282 363 304 221 0 87 0
[pid=25857] ppid=25855 vsize=28227396 memory=41040 CPUtime=0.33 cores=0-7
/proc/25857/stat : 25857 (java) S 25855 25855 18490 0 -1 1077944320 9514 0 0 0 30 3 0 0 20 0 20 0 510886078 28904853504 10260 33554432000 4194304 4196468 140727330464848 140727330447392 140194270215927 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
/proc/25857/statm: 7056849 10260 3304 1 0 7019032 0
[pid=25857/tid=25858] ppid=25855 vsize=28227396 memory=8318255677412212789 CPUtime=0.2 cores=0-7
/proc/25857/task/25858/stat : 25858 (java) R 25855 25855 18490 0 -1 4202560 6638 0 0 0 18 2 0 0 20 0 20 0 510886078 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194274449376 140194270227862 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25859] ppid=25855 vsize=28227396 memory=339 CPUtime=0 cores=0-7
/proc/25857/task/25859/stat : 25859 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194190068752 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25860] ppid=25855 vsize=28227396 memory=288370708058842752 CPUtime=0 cores=0-7
/proc/25857/task/25860/stat : 25860 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194189016208 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25861] ppid=25855 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/25857/task/25861/stat : 25861 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194187963152 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25862] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25862/stat : 25862 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194186910608 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25863] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25863/stat : 25863 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194185857552 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25864] ppid=25855 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/25857/task/25864/stat : 25864 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194184805008 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25865] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25865/stat : 25865 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194183751952 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25866] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25866/stat : 25866 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28904853504 10260 33554432000 4194304 4196468 140727330464848 140194182699408 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25867] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25867/stat : 25867 (java) S 25855 25855 18490 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 510886081 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193653967600 140194270227074 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25868] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25868/stat : 25868 (java) S 25855 25855 18490 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 510886081 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193652913824 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25869] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25869/stat : 25869 (java) S 25855 25855 18490 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 510886081 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193651860720 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25870] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25870/stat : 25870 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193650809296 140194270234523 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25871] ppid=25855 vsize=28227396 memory=0 CPUtime=0.01 cores=0-7
/proc/25857/task/25871/stat : 25871 (java) S 25855 25855 18490 0 -1 1077944384 404 0 0 0 1 0 0 0 20 0 20 0 510886084 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193649756400 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25872] ppid=25855 vsize=28227396 memory=0 CPUtime=0.01 cores=0-7
/proc/25857/task/25872/stat : 25872 (java) S 25855 25855 18490 0 -1 1077944384 202 0 0 0 1 0 0 0 20 0 20 0 510886084 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193648703856 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25873] ppid=25855 vsize=28227396 memory=-1 CPUtime=0.01 cores=0-7
/proc/25857/task/25873/stat : 25873 (java) S 25855 25855 18490 0 -1 1077944384 198 0 0 0 1 0 0 0 20 0 20 0 510886084 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193647650800 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25874] ppid=25855 vsize=28227396 memory=-1 CPUtime=0.07 cores=0-7
/proc/25857/task/25874/stat : 25874 (java) R 25855 25855 18490 0 -1 4202560 758 0 0 0 7 0 0 0 20 0 20 0 510886084 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193646598256 140194270227862 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25875] ppid=25855 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25875/stat : 25875 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193645546464 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25876] ppid=25855 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/25857/task/25876/stat : 25876 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28904853504 10260 33554432000 4194304 4196468 140727330464848 140193644494000 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 28340524 KiB
Current children cumulated memory: 42492 KiB

[startup+0.309742 s]*
/proc/loadavg: 7.65 8.02 8.08 4/211 25876
/proc/meminfo: memFree=22075568/32770624 swapFree=67002364/67108860
[pid=25855] ppid=25852 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/25855/stat : 25855 (xcsp3-exec) S 25852 25855 18490 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 510886078 115843072 363 33554432000 4194304 5098028 140721432457728 140721432455832 139640903430780 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 25571328 140721432462168 140721432462426 140721432462426 140721432465350 0
/proc/25855/statm: 28282 363 304 221 0 87 0
[pid=25857] ppid=25855 vsize=28231652 memory=49872 CPUtime=0.52 cores=0-7
/proc/25857/stat : 25857 (java) S 25855 25855 18490 0 -1 1077944320 10826 0 0 0 48 4 0 0 20 0 20 0 510886078 28909211648 12468 33554432000 4194304 4196468 140727330464848 140727330447392 140194270215927 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
/proc/25857/statm: 7057913 12468 3370 1 0 7019032 0
[pid=25857/tid=25858] ppid=25855 vsize=28231652 memory=1398722017469774279 CPUtime=0.3 cores=0-7
/proc/25857/task/25858/stat : 25858 (java) R 25855 25855 18490 0 -1 4202560 7764 0 0 0 27 3 0 0 20 0 20 0 510886078 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194274449712 140194254296414 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25859] ppid=25855 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25859/stat : 25859 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194190068752 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25860] ppid=25855 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25860/stat : 25860 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194189016208 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25861] ppid=25855 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25861/stat : 25861 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194187963152 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25862] ppid=25855 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25862/stat : 25862 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194186910608 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25863] ppid=25855 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25863/stat : 25863 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194185857552 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25864] ppid=25855 vsize=28231652 memory=140331748256431 CPUtime=0 cores=0-7
/proc/25857/task/25864/stat : 25864 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194184805008 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25865] ppid=25855 vsize=28231652 memory=140331748258736 CPUtime=0 cores=0-7
/proc/25857/task/25865/stat : 25865 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886079 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194183751952 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25866] ppid=25855 vsize=28231652 memory=140331748261040 CPUtime=0 cores=0-7
/proc/25857/task/25866/stat : 25866 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28909211648 12496 33554432000 4194304 4196468 140727330464848 140194182699408 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25867] ppid=25855 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25867/stat : 25867 (java) S 25855 25855 18490 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 510886081 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193653967600 140194270227074 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25868] ppid=25855 vsize=28231652 memory=280663496535952 CPUtime=0 cores=0-7
/proc/25857/task/25868/stat : 25868 (java) S 25855 25855 18490 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 510886081 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193652913824 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25869] ppid=25855 vsize=28231652 memory=280663496533648 CPUtime=0 cores=0-7
/proc/25857/task/25869/stat : 25869 (java) S 25855 25855 18490 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 510886081 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193651860720 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25870] ppid=25855 vsize=28231652 memory=280663496540560 CPUtime=0 cores=0-7
/proc/25857/task/25870/stat : 25870 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193650809296 140194270234523 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25871] ppid=25855 vsize=28231652 memory=280663496481840 CPUtime=0.02 cores=0-7
/proc/25857/task/25871/stat : 25871 (java) S 25855 25855 18490 0 -1 1077944384 409 0 0 0 2 0 0 0 20 0 20 0 510886084 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193649756400 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25872] ppid=25855 vsize=28231652 memory=280663496554384 CPUtime=0.03 cores=0-7
/proc/25857/task/25872/stat : 25872 (java) R 25855 25855 18490 0 -1 4202560 311 0 0 0 3 0 0 0 20 0 20 0 510886084 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193648684872 140194251738414 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25873] ppid=25855 vsize=28231652 memory=280663496561296 CPUtime=0.02 cores=0-7
/proc/25857/task/25873/stat : 25873 (java) S 25855 25855 18490 0 -1 1077944384 204 0 0 0 2 0 0 0 20 0 20 0 510886084 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193647650800 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25874] ppid=25855 vsize=28231652 memory=280663496558992 CPUtime=0.12 cores=0-7
/proc/25857/task/25874/stat : 25874 (java) S 25855 25855 18490 0 -1 1077944384 830 0 0 0 12 0 0 0 20 0 20 0 510886084 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193646598256 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25875] ppid=25855 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25875/stat : 25875 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886084 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193645546464 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25876] ppid=25855 vsize=28231652 memory=-1 CPUtime=0 cores=0-7
/proc/25857/task/25876/stat : 25876 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28909211648 12496 33554432000 4194304 4196468 140727330464848 140193644494000 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 28344780 KiB
Current children cumulated memory: 51324 KiB

[startup+0.700926 s]
/proc/loadavg: 7.65 8.02 8.08 5/211 25876
/proc/meminfo: memFree=22064888/32770624 swapFree=67002364/67108860
[pid=25855] ppid=25852 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/25855/stat : 25855 (xcsp3-exec) S 25852 25855 18490 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 510886078 115843072 363 33554432000 4194304 5098028 140721432457728 140721432455832 139640903430780 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 25571328 140721432462168 140721432462426 140721432462426 140721432465350 0
/proc/25855/statm: 28282 363 304 221 0 87 0
[pid=25857] ppid=25855 vsize=28233776 memory=131460 CPUtime=1.34 cores=0-7
/proc/25857/stat : 25857 (java) S 25855 25855 18490 0 -1 1077944320 13284 0 0 0 127 7 0 0 20 0 20 0 510886078 28911386624 32865 33554432000 4194304 4196468 140727330464848 140727330447392 140194270215927 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
/proc/25857/statm: 7058444 32865 3435 1 0 7019544 0
[pid=25857/tid=25858] ppid=25855 vsize=28233776 memory=0 CPUtime=0.67 cores=0-7
/proc/25857/task/25858/stat : 25858 (java) R 25855 25855 18490 0 -1 4202560 9058 0 0 0 63 4 0 0 20 0 20 0 510886078 28911386624 32865 33554432000 4194304 4196468 140727330464848 140194274451280 140193859632578 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25859] ppid=25855 vsize=28233776 memory=140331748467568 CPUtime=0 cores=0-7
/proc/25857/task/25859/stat : 25859 (java) S 25855 25855 18490 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 510886079 28911386624 32865 33554432000 4194304 4196468 140727330464848 140194190068752 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25860] ppid=25855 vsize=28233776 memory=0 CPUtime=0 cores=0-7
/proc/25857/task/25860/stat : 25860 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28911386624 32865 33554432000 4194304 4196468 140727330464848 140194189016208 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25861] ppid=25855 vsize=28233776 memory=1056 CPUtime=0 cores=0-7
/proc/25857/task/25861/stat : 25861 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886079 28911386624 32865 33554432000 4194304 4196468 140727330464848 140194187963152 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0

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

/proc/25857/task/25875/stat : 25875 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886084 28911386624 4536556 33554432000 4194304 4196468 140727330464848 140193645546464 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25876] ppid=25855 vsize=28233776 memory=532 CPUtime=0.07 cores=0-7
/proc/25857/task/25876/stat : 25876 (java) S 25855 25855 18490 0 -1 1077944384 687 0 0 0 1 6 0 0 20 0 20 0 510886084 28911386624 4536556 33554432000 4194304 4196468 140727330464848 140193644494000 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
Current children cumulated CPU time: 883.25 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 18147676 KiB

[startup+179.201 s]
/proc/loadavg: 5.47 6.68 7.54 2/212 25896
/proc/meminfo: memFree=3950240/32770624 swapFree=67002364/67108860
[pid=25855] ppid=25852 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/25855/stat : 25855 (xcsp3-exec) S 25852 25855 18490 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 510886078 115843072 363 33554432000 4194304 5098028 140721432457728 140721432455832 139640903430780 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 25571328 140721432462168 140721432462426 140721432462426 140721432465350 0
/proc/25855/statm: 28282 363 304 221 0 87 0
[pid=25857] ppid=25855 vsize=28233776 memory=18146236 CPUtime=889.82 cores=0-7
/proc/25857/stat : 25857 (java) S 25855 25855 18490 0 -1 1077944320 490083 0 0 0 83347 5635 0 0 20 0 20 0 510886078 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140727330447392 140194270215927 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
/proc/25857/statm: 7058444 4536559 3507 1 0 7019544 0
[pid=25857/tid=25858] ppid=25855 vsize=28233776 memory=18145876 CPUtime=39.24 cores=0-7
/proc/25857/task/25858/stat : 25858 (java) S 25855 25855 18490 0 -1 1077944384 19641 0 0 0 3909 15 0 0 20 0 20 0 510886078 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194274453536 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25859] ppid=25855 vsize=28233776 memory=3616 CPUtime=101.31 cores=0-7
/proc/25857/task/25859/stat : 25859 (java) S 25855 25855 18490 0 -1 1077944384 33376 0 0 0 9393 738 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194190068752 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 27 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25860] ppid=25855 vsize=28233776 memory=63160 CPUtime=101.26 cores=0-7
/proc/25857/task/25860/stat : 25860 (java) S 25855 25855 18490 0 -1 1077944384 53449 0 0 0 9409 717 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194189016208 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 25 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25861] ppid=25855 vsize=28233776 memory=18146132 CPUtime=101.14 cores=0-7
/proc/25857/task/25861/stat : 25861 (java) S 25855 25855 18490 0 -1 1077944384 35069 0 0 0 9423 691 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194187963152 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 30 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25862] ppid=25855 vsize=28233776 memory=1452 CPUtime=101.28 cores=0-7
/proc/25857/task/25862/stat : 25862 (java) S 25855 25855 18490 0 -1 1077944384 40416 0 0 0 9425 703 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194186910608 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 25 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25863] ppid=25855 vsize=28233776 memory=18145876 CPUtime=101.74 cores=0-7
/proc/25857/task/25863/stat : 25863 (java) S 25855 25855 18490 0 -1 1077944384 39005 0 0 0 9453 721 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194185857552 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 24 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25864] ppid=25855 vsize=28233776 memory=-3622645143214314312 CPUtime=101.99 cores=0-7
/proc/25857/task/25864/stat : 25864 (java) S 25855 25855 18490 0 -1 1077944384 99212 0 0 0 9520 679 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194184805008 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 19 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25865] ppid=25855 vsize=28233776 memory=1056 CPUtime=102 cores=0-7
/proc/25857/task/25865/stat : 25865 (java) S 25855 25855 18490 0 -1 1077944384 37367 0 0 0 9542 658 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194183751952 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 20 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25866] ppid=25855 vsize=28233776 memory=18052004 CPUtime=101.64 cores=0-7
/proc/25857/task/25866/stat : 25866 (java) S 25855 25855 18490 0 -1 1077944384 35997 0 0 0 9477 687 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194182699408 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 22 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25867] ppid=25855 vsize=28233776 memory=3616 CPUtime=36.67 cores=0-7
/proc/25857/task/25867/stat : 25867 (java) R 25855 25855 18490 0 -1 4202560 79743 0 0 0 3654 13 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193653966160 140194254673560 0 0 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25868] ppid=25855 vsize=28233776 memory=6791534058613427641 CPUtime=0 cores=0-7
/proc/25857/task/25868/stat : 25868 (java) S 25855 25855 18490 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193652913888 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25869] ppid=25855 vsize=28233776 memory=1692 CPUtime=0 cores=0-7
/proc/25857/task/25869/stat : 25869 (java) S 25855 25855 18490 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193651860736 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25870] ppid=25855 vsize=28233776 memory=3616 CPUtime=0 cores=0-7
/proc/25857/task/25870/stat : 25870 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193650809296 140194270234523 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25871] ppid=25855 vsize=28233776 memory=7548 CPUtime=0.33 cores=0-7
/proc/25857/task/25871/stat : 25871 (java) S 25855 25855 18490 0 -1 1077944384 4524 0 0 0 31 2 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193649756448 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25872] ppid=25855 vsize=28233776 memory=1452 CPUtime=0.24 cores=0-7
/proc/25857/task/25872/stat : 25872 (java) S 25855 25855 18490 0 -1 1077944384 2680 0 0 0 23 1 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193648703904 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25873] ppid=25855 vsize=28233776 memory=18146224 CPUtime=0.24 cores=0-7
/proc/25857/task/25873/stat : 25873 (java) S 25855 25855 18490 0 -1 1077944384 2268 0 0 0 24 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193647650560 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25874] ppid=25855 vsize=28233776 memory=580 CPUtime=0.51 cores=0-7
/proc/25857/task/25874/stat : 25874 (java) S 25855 25855 18490 0 -1 1077944384 5327 0 0 0 50 1 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193646598304 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25875] ppid=25855 vsize=28233776 memory=1692 CPUtime=0 cores=0-7
/proc/25857/task/25875/stat : 25875 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193645546464 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25876] ppid=25855 vsize=28233776 memory=1692 CPUtime=0.07 cores=0-7
/proc/25857/task/25876/stat : 25876 (java) S 25855 25855 18490 0 -1 1077944384 687 0 0 0 1 6 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193644494000 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
Current children cumulated CPU time: 889.82 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 18147688 KiB

[startup+180.001 s]*
/proc/loadavg: 5.47 6.68 7.54 2/212 25896
/proc/meminfo: memFree=3950240/32770624 swapFree=67002364/67108860
[pid=25855] ppid=25852 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/25855/stat : 25855 (xcsp3-exec) S 25852 25855 18490 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 510886078 115843072 363 33554432000 4194304 5098028 140721432457728 140721432455832 139640903430780 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 25571328 140721432462168 140721432462426 140721432462426 140721432465350 0
/proc/25855/statm: 28282 363 304 221 0 87 0
[pid=25857] ppid=25855 vsize=28233776 memory=18146236 CPUtime=890.63 cores=0-7
/proc/25857/stat : 25857 (java) S 25855 25855 18490 0 -1 1077944320 491020 0 0 0 83428 5635 0 0 20 0 20 0 510886078 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140727330447392 140194270215927 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
/proc/25857/statm: 7058444 4536559 3507 1 0 7019544 0
[pid=25857/tid=25858] ppid=25855 vsize=28233776 memory=1398722017469774279 CPUtime=39.24 cores=0-7
/proc/25857/task/25858/stat : 25858 (java) S 25855 25855 18490 0 -1 1077944384 19641 0 0 0 3909 15 0 0 20 0 20 0 510886078 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194274453536 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25859] ppid=25855 vsize=28233776 memory=4872558044660077418 CPUtime=101.31 cores=0-7
/proc/25857/task/25859/stat : 25859 (java) S 25855 25855 18490 0 -1 1077944384 33376 0 0 0 9393 738 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194190068752 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 27 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25860] ppid=25855 vsize=28233776 memory=7822038051842261661 CPUtime=101.26 cores=0-7
/proc/25857/task/25860/stat : 25860 (java) S 25855 25855 18490 0 -1 1077944384 53449 0 0 0 9409 717 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194189016208 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 25 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25861] ppid=25855 vsize=28233776 memory=4715433313220523562 CPUtime=101.14 cores=0-7
/proc/25857/task/25861/stat : 25861 (java) S 25855 25855 18490 0 -1 1077944384 35069 0 0 0 9423 691 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194187963152 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 30 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25862] ppid=25855 vsize=28233776 memory=18146224 CPUtime=101.28 cores=0-7
/proc/25857/task/25862/stat : 25862 (java) S 25855 25855 18490 0 -1 1077944384 40416 0 0 0 9425 703 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194186910608 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 25 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25863] ppid=25855 vsize=28233776 memory=1452 CPUtime=101.74 cores=0-7
/proc/25857/task/25863/stat : 25863 (java) S 25855 25855 18490 0 -1 1077944384 39005 0 0 0 9453 721 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194185857552 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 24 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25864] ppid=25855 vsize=28233776 memory=-3622645143214314312 CPUtime=101.99 cores=0-7
/proc/25857/task/25864/stat : 25864 (java) S 25855 25855 18490 0 -1 1077944384 99212 0 0 0 9520 679 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194184805008 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 19 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25865] ppid=25855 vsize=28233776 memory=2012 CPUtime=102 cores=0-7
/proc/25857/task/25865/stat : 25865 (java) S 25855 25855 18490 0 -1 1077944384 37367 0 0 0 9542 658 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194183751952 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 20 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25866] ppid=25855 vsize=28233776 memory=1424 CPUtime=101.64 cores=0-7
/proc/25857/task/25866/stat : 25866 (java) S 25855 25855 18490 0 -1 1077944384 35997 0 0 0 9477 687 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194182699408 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 22 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25867] ppid=25855 vsize=28233776 memory=580 CPUtime=37.48 cores=0-7
/proc/25857/task/25867/stat : 25867 (java) R 25855 25855 18490 0 -1 4202560 80680 0 0 0 3735 13 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193653966048 140194255212272 0 0 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25868] ppid=25855 vsize=28233776 memory=1452 CPUtime=0 cores=0-7
/proc/25857/task/25868/stat : 25868 (java) S 25855 25855 18490 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193652913888 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25869] ppid=25855 vsize=28233776 memory=18146124 CPUtime=0 cores=0-7
/proc/25857/task/25869/stat : 25869 (java) S 25855 25855 18490 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193651860736 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25870] ppid=25855 vsize=28233776 memory=7548 CPUtime=0 cores=0-7
/proc/25857/task/25870/stat : 25870 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193650809296 140194270234523 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25871] ppid=25855 vsize=28233776 memory=2832 CPUtime=0.33 cores=0-7
/proc/25857/task/25871/stat : 25871 (java) S 25855 25855 18490 0 -1 1077944384 4524 0 0 0 31 2 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193649756448 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25872] ppid=25855 vsize=28233776 memory=1452 CPUtime=0.24 cores=0-7
/proc/25857/task/25872/stat : 25872 (java) S 25855 25855 18490 0 -1 1077944384 2680 0 0 0 23 1 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193648703904 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25873] ppid=25855 vsize=28233776 memory=1452 CPUtime=0.24 cores=0-7
/proc/25857/task/25873/stat : 25873 (java) S 25855 25855 18490 0 -1 1077944384 2268 0 0 0 24 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193647650560 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25874] ppid=25855 vsize=28233776 memory=18146120 CPUtime=0.51 cores=0-7
/proc/25857/task/25874/stat : 25874 (java) S 25855 25855 18490 0 -1 1077944384 5327 0 0 0 50 1 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193646598304 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25875] ppid=25855 vsize=28233776 memory=6791534058613427641 CPUtime=0 cores=0-7
/proc/25857/task/25875/stat : 25875 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193645546464 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25876] ppid=25855 vsize=28233776 memory=2648 CPUtime=0.07 cores=0-7
/proc/25857/task/25876/stat : 25876 (java) S 25855 25855 18490 0 -1 1077944384 687 0 0 0 1 6 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193644494000 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
Current children cumulated CPU time: 890.63 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 18147688 KiB

[startup+180.201 s]
/proc/loadavg: 5.47 6.68 7.54 2/212 25896
/proc/meminfo: memFree=3950240/32770624 swapFree=67002364/67108860
[pid=25855] ppid=25852 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/25855/stat : 25855 (xcsp3-exec) S 25852 25855 18490 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 510886078 115843072 363 33554432000 4194304 5098028 140721432457728 140721432455832 139640903430780 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 25571328 140721432462168 140721432462426 140721432462426 140721432465350 0
/proc/25855/statm: 28282 363 304 221 0 87 0
[pid=25857] ppid=25855 vsize=28233776 memory=18146236 CPUtime=890.82 cores=0-7
/proc/25857/stat : 25857 (java) S 25855 25855 18490 0 -1 1077944320 497262 0 0 0 83447 5635 0 0 20 0 20 0 510886078 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140727330447392 140194270215927 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
/proc/25857/statm: 7058444 4536559 3507 1 0 7019544 0
[pid=25857/tid=25858] ppid=25855 vsize=28233776 memory=1768 CPUtime=39.24 cores=0-7
/proc/25857/task/25858/stat : 25858 (java) R 25855 25855 18490 0 -1 1077944384 19641 0 0 0 3909 15 0 0 20 0 20 0 510886078 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194274453536 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25859] ppid=25855 vsize=28233776 memory=6791534058613427641 CPUtime=101.31 cores=0-7
/proc/25857/task/25859/stat : 25859 (java) S 25855 25855 18490 0 -1 1077944384 33376 0 0 0 9393 738 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194190068752 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 27 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25860] ppid=25855 vsize=28233776 memory=18146236 CPUtime=101.26 cores=0-7
/proc/25857/task/25860/stat : 25860 (java) S 25855 25855 18490 0 -1 1077944384 53449 0 0 0 9409 717 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194189016208 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 25 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25861] ppid=25855 vsize=28233776 memory=1096 CPUtime=101.14 cores=0-7
/proc/25857/task/25861/stat : 25861 (java) S 25855 25855 18490 0 -1 1077944384 35069 0 0 0 9423 691 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194187963152 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 30 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25862] ppid=25855 vsize=28233776 memory=14008 CPUtime=101.28 cores=0-7
/proc/25857/task/25862/stat : 25862 (java) R 25855 25855 18490 0 -1 1077944384 40416 0 0 0 9425 703 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194186910608 140194270226133 0 4 0 16800975 0 0 0 -1 3 0 0 25 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25863] ppid=25855 vsize=28233776 memory=3616 CPUtime=101.74 cores=0-7
/proc/25857/task/25863/stat : 25863 (java) S 25855 25855 18490 0 -1 1077944384 39005 0 0 0 9453 721 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194185857552 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 24 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25864] ppid=25855 vsize=28233776 memory=63160 CPUtime=101.99 cores=0-7
/proc/25857/task/25864/stat : 25864 (java) S 25855 25855 18490 0 -1 1077944384 99212 0 0 0 9520 679 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194184805008 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 19 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25865] ppid=25855 vsize=28233776 memory=992 CPUtime=102 cores=0-7
/proc/25857/task/25865/stat : 25865 (java) S 25855 25855 18490 0 -1 1077944384 37367 0 0 0 9542 658 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194183751952 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 20 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25866] ppid=25855 vsize=28233776 memory=2012 CPUtime=101.64 cores=0-7
/proc/25857/task/25866/stat : 25866 (java) S 25855 25855 18490 0 -1 1077944384 35997 0 0 0 9477 687 0 0 20 0 20 0 510886079 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140194182699408 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 22 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25867] ppid=25855 vsize=28233776 memory=1224 CPUtime=37.68 cores=0-7
/proc/25857/task/25867/stat : 25867 (java) S 25855 25855 18490 0 -1 1077944384 86945 0 0 0 3755 13 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193653967600 140194270227074 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25868] ppid=25855 vsize=28233776 memory=6164 CPUtime=0 cores=0-7
/proc/25857/task/25868/stat : 25868 (java) S 25855 25855 18490 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193652913888 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25869] ppid=25855 vsize=28233776 memory=772 CPUtime=0 cores=0-7
/proc/25857/task/25869/stat : 25869 (java) S 25855 25855 18490 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 20 0 510886081 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193651860736 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25870] ppid=25855 vsize=28233776 memory=1556 CPUtime=0 cores=0-7
/proc/25857/task/25870/stat : 25870 (java) S 25855 25855 18490 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193650809296 140194270234523 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25871] ppid=25855 vsize=28233776 memory=1424 CPUtime=0.33 cores=0-7
/proc/25857/task/25871/stat : 25871 (java) S 25855 25855 18490 0 -1 1077944384 4526 0 0 0 31 2 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193649756400 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25872] ppid=25855 vsize=28233776 memory=580 CPUtime=0.24 cores=0-7
/proc/25857/task/25872/stat : 25872 (java) S 25855 25855 18490 0 -1 1077944384 2682 0 0 0 23 1 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193648703856 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25873] ppid=25855 vsize=28233776 memory=1692 CPUtime=0.24 cores=0-7
/proc/25857/task/25873/stat : 25873 (java) S 25855 25855 18490 0 -1 1077944384 2272 0 0 0 24 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193647650800 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25874] ppid=25855 vsize=28233776 memory=3616 CPUtime=0.51 cores=0-7
/proc/25857/task/25874/stat : 25874 (java) S 25855 25855 18490 0 -1 1077944384 5331 0 0 0 50 1 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193646598256 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25875] ppid=25855 vsize=28233776 memory=7548 CPUtime=0 cores=0-7
/proc/25857/task/25875/stat : 25875 (java) S 25855 25855 18490 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193645546464 140194270226133 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
[pid=25857/tid=25876] ppid=25855 vsize=28233776 memory=33 CPUtime=0.07 cores=0-7
/proc/25857/task/25876/stat : 25876 (java) S 25855 25855 18490 0 -1 1077944384 687 0 0 0 1 6 0 0 20 0 20 0 510886084 28911386624 4536559 33554432000 4194304 4196468 140727330464848 140193644494000 140194270227074 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 9490432 140727330468828 140727330469003 140727330469003 140727330471887 0
Current children cumulated CPU time: 890.82 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 18147688 KiB

Child status: 1
Real time (s): 180.301
CPU time (s): 890.937
CPU user time (s): 834.485
CPU system time (s): 56.4517
CPU usage (%): 494.139
Max. virtual memory (cumulated for all children) (KiB): 28346904
Max. memory (cumulated for all children) (KiB): 18147688

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 834.485
system time used= 56.4517
maximum resident set size= 18146664
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 498817
page faults= 0
swaps= 0
block input operations= 8
block output operations= 384
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 29516
involuntary context switches= 17447


# summary of solver processes directly reported to runsolver:
#   pid: 25855
#   total CPU time (s): 890.937
#   total CPU user time (s): 834.485
#   total CPU system time (s): 56.4517

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.36073 second user time and 1.92412 second system time

The end

Launcher Data

Begin job on node146 at 2019-09-24 20:28:00
IDJOB=4407346
IDBENCH=140558
IDSOLVER=2872
FILE ID=node146/4407346-1569349722
RUNJOBID= node146-1569335937-18517
PBS_JOBID= 21705051
Free space on /var/tmp= 13508 MiB

SOLVER NAME= choco-solver 2019-09-24 parallel
BENCH NAME= XCSP17/Ramsey/Ramsey-int-s1/Ramsey-int-13.xml
COMMAND LINE= xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 24000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /var/tmp/evaluation-result-4407346-1569349722/watcher-4407346-1569349722 -o /var/tmp/evaluation-result-4407346-1569349722/solver-4407346-1569349722 -C 2016 -W 252 -M 31000 --bin-var /var/tmp/runsolver-exch-node146-1569335937-18517 --watchdog 312  xcsp3-exec -dir HOME -tl 2016 -p 8 -ml 24000 -tdir HOME -seed 966831040 HOME/instance-4407346-1569349722.xml

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

MD5SUM BENCH= f1adf00e8f8fa1741c0d4b74f691c684
RANDOM SEED=966831040

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

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

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

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

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

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

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

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

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

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


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        22112084 kB
MemAvailable:   31840236 kB
Buffers:          149200 kB
Cached:          9616544 kB
SwapCached:         3568 kB
Active:          4853980 kB
Inactive:        4916076 kB
Active(anon):       4088 kB
Inactive(anon):    56464 kB
Active(file):    4849892 kB
Inactive(file):  4859612 kB
Unevictable:      110892 kB
Mlocked:          110892 kB
SwapTotal:      67108860 kB
SwapFree:       67002364 kB
Dirty:             26408 kB
Writeback:             0 kB
AnonPages:        113448 kB
Mapped:            56824 kB
Shmem:             47620 kB
Slab:             475940 kB
SReclaimable:     447108 kB
SUnreclaim:        28832 kB
KernelStack:        3328 kB
PageTables:         5272 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     517132 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     67584 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      109952 kB
DirectMap2M:    33435648 kB

Free space on /var/tmp at the end= 13480 MiB
End job on node146 at 2019-09-24 20:31:00