Trace number 4407155

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? 559.353 105.096

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-75.xml
MD5SUM9cdf82428becd6b5ad716031980a59d2
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark0
Best CPU time to get the best result obtained on this benchmark2520.02
Satisfiable
(Un)Satisfiability was proved
Number of variables133
Number of constraints25
Number of domains2
Minimum domain size23
Maximum domain size47
Distribution of domain sizes[{"size":23,"count":1},{"size":47,"count":132}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":110},{"degree":4,"count":22}]
Minimum constraint arity6
Maximum constraint arity132
Distribution of constraint arities[{"arity":6,"count":22},{"arity":23,"count":1},{"arity":132,"count":2}]
Number of extensional constraints22
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":22},{"type":"lex","count":1},{"type":"count","count":1},{"type":"cardinality","count":1}]
Optimization problemYES
Type of objectivemax VAR

Solver Data

0.00/0.00	c java -server -Xmx24000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4407155-1569356668.xml"  -tl '20160s' -p 8
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4407155-1569356668.xml, -tl, 20160s, -p, 8]
0.33/0.22	c 8 solvers in parallel
0.33/0.28	c parse instance...
559.05/104.89	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
559.05/104.89		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:101)
559.05/104.89		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
559.05/104.89		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2108)
559.05/104.89		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2055)
559.05/104.89		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:317)
559.05/104.89		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
559.05/104.89		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
559.05/104.89		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
559.05/104.89		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
559.05/104.89		at org.xcsp.parser.XCallbacks$$Lambda$110/961419791.accept(Unknown Source)
559.05/104.89		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
559.05/104.89		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
559.05/104.89		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
559.05/104.89		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
559.05/104.89		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
559.05/104.89		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
559.05/104.89		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
559.05/104.89		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
559.05/104.89		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
559.05/104.89		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
559.05/104.89		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
559.05/104.89		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
559.05/104.89	s UNKNOWN
559.05/104.89	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 (13513 MiB free)
  memory of node 1: 16384 MiB (11984 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /var/tmp/evaluation-result-4407155-1569356668/watcher-4407155-1569356668 -o /var/tmp/evaluation-result-4407155-1569356668/solver-4407155-1569356668 -C 20160 -W 2520 -M 31000 --bin-var /var/tmp/runsolver-exch-node105-1569352967-7589 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1062375216 HOME/instance-4407155-1569356668.xml 

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

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 20160 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 20190 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 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
solver pid=7606, runsolver pid=7603
Current StackSize limit: 8192 KiB


[startup+0.100152 s]*
/proc/loadavg: 7.45 8.00 8.13 2/211 7627
/proc/meminfo: memFree=26093504/32770624 swapFree=66956852/67108860
[pid=7606] ppid=7603 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/7606/stat : 7606 (xcsp3-exec) S 7603 7606 7562 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 511924612 115843072 362 33554432000 4194304 5098028 140733963334032 140733963332136 140378068103804 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15716352 140733963338577 140733963338837 140733963338837 140733963341766 0
/proc/7606/statm: 28282 362 304 221 0 87 0
[pid=7608] ppid=7606 vsize=28227396 memory=28948 CPUtime=0.12 cores=0-7
/proc/7608/stat : 7608 (java) S 7606 7606 7562 0 -1 1077944320 5718 0 0 0 11 1 0 0 20 0 20 0 511924612 28904853504 7237 33554432000 4194304 4196468 140734261823744 140734261806288 140022870744823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
/proc/7608/statm: 7056849 7237 3120 1 0 7019032 0
[pid=7608/tid=7609] ppid=7606 vsize=28227396 memory=8317482817917895235 CPUtime=0.08 cores=0-7
/proc/7608/task/7609/stat : 7609 (java) S 7606 7606 7562 0 -1 1077944384 3620 0 0 0 8 0 0 0 20 0 20 0 511924612 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022874974592 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7610] ppid=7606 vsize=28227396 memory=4872558044660077418 CPUtime=0 cores=0-7
/proc/7608/task/7610/stat : 7610 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022790597776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7611] ppid=7606 vsize=28227396 memory=140576632616576 CPUtime=0 cores=0-7
/proc/7608/task/7611/stat : 7611 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022789544976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7612] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7612/stat : 7612 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022788492176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7613] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7613/stat : 7613 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022787439376 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7614] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7614/stat : 7614 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022786386576 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7615] ppid=7606 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/7608/task/7615/stat : 7615 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022785333776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7616] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7616/stat : 7616 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022784280976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7617] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7617/stat : 7617 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022783228176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7618] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7618/stat : 7618 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924614 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022254771056 140022870755970 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7619] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7619/stat : 7619 (java) S 7606 7606 7562 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 511924615 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022253717024 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7620] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7620/stat : 7620 (java) S 7606 7606 7562 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 511924615 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022252664176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7621] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7621/stat : 7621 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924617 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022251612496 140022870763419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7622] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7622/stat : 7622 (java) S 7606 7606 7562 0 -1 1077944384 288 0 0 0 0 0 0 0 20 0 20 0 511924617 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022250559856 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7623] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7623/stat : 7623 (java) R 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924617 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022249507056 140022870755970 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7624] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7624/stat : 7624 (java) S 7606 7606 7562 0 -1 1077944384 124 0 0 0 0 0 0 0 20 0 20 0 511924618 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022248454256 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7625] ppid=7606 vsize=28227396 memory=0 CPUtime=0.02 cores=0-7
/proc/7608/task/7625/stat : 7625 (java) R 7606 7606 7562 0 -1 4202560 367 0 0 0 2 0 0 0 20 0 20 0 511924618 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022247401456 140022848736288 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7626] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7626/stat : 7626 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924618 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022246349920 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7627] ppid=7606 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/7608/task/7627/stat : 7627 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924618 28904853504 7237 33554432000 4194304 4196468 140734261823744 140022245297200 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 28340524 KiB
Current children cumulated memory: 30396 KiB

[startup+0.211467 s]*
/proc/loadavg: 7.45 8.00 8.13 3/211 7627
/proc/meminfo: memFree=26080624/32770624 swapFree=66956852/67108860
[pid=7606] ppid=7603 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/7606/stat : 7606 (xcsp3-exec) S 7603 7606 7562 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 511924612 115843072 362 33554432000 4194304 5098028 140733963334032 140733963332136 140378068103804 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15716352 140733963338577 140733963338837 140733963338837 140733963341766 0
/proc/7606/statm: 28282 362 304 221 0 87 0
[pid=7608] ppid=7606 vsize=28227396 memory=40372 CPUtime=0.33 cores=0-7
/proc/7608/stat : 7608 (java) S 7606 7606 7562 0 -1 1077944320 9370 0 0 0 31 2 0 0 20 0 20 0 511924612 28904853504 10093 33554432000 4194304 4196468 140734261823744 140734261806288 140022870744823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
/proc/7608/statm: 7056849 10093 3287 1 0 7019032 0
[pid=7608/tid=7609] ppid=7606 vsize=28227396 memory=8318255677412212789 CPUtime=0.19 cores=0-7
/proc/7608/task/7609/stat : 7609 (java) R 7606 7606 7562 0 -1 4202560 6602 0 0 0 18 1 0 0 20 0 20 0 511924612 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022874974544 140022852327070 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7610] ppid=7606 vsize=28227396 memory=331 CPUtime=0 cores=0-7
/proc/7608/task/7610/stat : 7610 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022790597776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7611] ppid=7606 vsize=28227396 memory=288370952784328320 CPUtime=0 cores=0-7
/proc/7608/task/7611/stat : 7611 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022789544976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7612] ppid=7606 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/7608/task/7612/stat : 7612 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022788492176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7613] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7613/stat : 7613 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022787439376 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7614] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7614/stat : 7614 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022786386576 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7615] ppid=7606 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/7608/task/7615/stat : 7615 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022785333776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7616] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7616/stat : 7616 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022784280976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7617] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7617/stat : 7617 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924613 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022783228176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7618] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7618/stat : 7618 (java) S 7606 7606 7562 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 511924614 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022254771056 140022870755970 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7619] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7619/stat : 7619 (java) S 7606 7606 7562 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 511924615 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022253717024 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7620] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7620/stat : 7620 (java) S 7606 7606 7562 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 511924615 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022252664176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7621] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7621/stat : 7621 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924617 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022251612496 140022870763419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7622] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7622/stat : 7622 (java) S 7606 7606 7562 0 -1 1077944384 321 0 0 0 0 0 0 0 20 0 20 0 511924617 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022250559856 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7623] ppid=7606 vsize=28227396 memory=0 CPUtime=0.02 cores=0-7
/proc/7608/task/7623/stat : 7623 (java) S 7606 7606 7562 0 -1 1077944384 140 0 0 0 2 0 0 0 20 0 20 0 511924617 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022249507056 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7624] ppid=7606 vsize=28227396 memory=-1 CPUtime=0.01 cores=0-7
/proc/7608/task/7624/stat : 7624 (java) S 7606 7606 7562 0 -1 1077944384 193 0 0 0 1 0 0 0 20 0 20 0 511924618 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022248454256 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7625] ppid=7606 vsize=28227396 memory=-1 CPUtime=0.08 cores=0-7
/proc/7608/task/7625/stat : 7625 (java) R 7606 7606 7562 0 -1 4202560 797 0 0 0 8 0 0 0 20 0 20 0 511924618 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022247401456 140022870756758 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7626] ppid=7606 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7626/stat : 7626 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924618 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022246349920 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7627] ppid=7606 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/7608/task/7627/stat : 7627 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924618 28904853504 10093 33554432000 4194304 4196468 140734261823744 140022245297200 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 28340524 KiB
Current children cumulated memory: 41820 KiB

[startup+0.314901 s]*
/proc/loadavg: 7.45 8.00 8.13 3/211 7627
/proc/meminfo: memFree=26073712/32770624 swapFree=66956852/67108860
[pid=7606] ppid=7603 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/7606/stat : 7606 (xcsp3-exec) S 7603 7606 7562 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 511924612 115843072 362 33554432000 4194304 5098028 140733963334032 140733963332136 140378068103804 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15716352 140733963338577 140733963338837 140733963338837 140733963341766 0
/proc/7606/statm: 28282 362 304 221 0 87 0
[pid=7608] ppid=7606 vsize=28231652 memory=50032 CPUtime=0.54 cores=0-7
/proc/7608/stat : 7608 (java) S 7606 7606 7562 0 -1 1077944320 10849 0 0 0 50 4 0 0 20 0 20 0 511924612 28909211648 12508 33554432000 4194304 4196468 140734261823744 140734261806288 140022870744823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
/proc/7608/statm: 7057913 12508 3347 1 0 7019032 0
[pid=7608/tid=7609] ppid=7606 vsize=28231652 memory=8317482817917895235 CPUtime=0.3 cores=0-7
/proc/7608/task/7609/stat : 7609 (java) R 7606 7606 7562 0 -1 4202560 7831 0 0 0 28 2 0 0 20 0 20 0 511924612 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022874973024 140022854825310 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7610] ppid=7606 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7610/stat : 7610 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022790597776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7611] ppid=7606 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7611/stat : 7611 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022789544976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7612] ppid=7606 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7612/stat : 7612 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022788492176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7613] ppid=7606 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7613/stat : 7613 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022787439376 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7614] ppid=7606 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7614/stat : 7614 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022786386576 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7615] ppid=7606 vsize=28231652 memory=140576494283439 CPUtime=0 cores=0-7
/proc/7608/task/7615/stat : 7615 (java) S 7606 7606 7562 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511924613 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022785333776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7616] ppid=7606 vsize=28231652 memory=140576494285744 CPUtime=0 cores=0-7
/proc/7608/task/7616/stat : 7616 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924613 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022784280976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7617] ppid=7606 vsize=28231652 memory=140576494288048 CPUtime=0 cores=0-7
/proc/7608/task/7617/stat : 7617 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924613 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022783228176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7618] ppid=7606 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7618/stat : 7618 (java) S 7606 7606 7562 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 511924614 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022254771056 140022870755970 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7619] ppid=7606 vsize=28231652 memory=281152988589968 CPUtime=0 cores=0-7
/proc/7608/task/7619/stat : 7619 (java) S 7606 7606 7562 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 511924615 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022253717024 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7620] ppid=7606 vsize=28231652 memory=281152988587664 CPUtime=0 cores=0-7
/proc/7608/task/7620/stat : 7620 (java) S 7606 7606 7562 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 511924615 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022252664176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7621] ppid=7606 vsize=28231652 memory=281152988594576 CPUtime=0 cores=0-7
/proc/7608/task/7621/stat : 7621 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924617 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022251612496 140022870763419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7622] ppid=7606 vsize=28231652 memory=281152988535856 CPUtime=0.02 cores=0-7
/proc/7608/task/7622/stat : 7622 (java) S 7606 7606 7562 0 -1 1077944384 326 0 0 0 2 0 0 0 20 0 20 0 511924617 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022250559856 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7623] ppid=7606 vsize=28231652 memory=281152988608400 CPUtime=0.03 cores=0-7
/proc/7608/task/7623/stat : 7623 (java) S 7606 7606 7562 0 -1 1077944384 150 0 0 0 3 0 0 0 20 0 20 0 511924617 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022249507056 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7624] ppid=7606 vsize=28231652 memory=281152988615312 CPUtime=0.03 cores=0-7
/proc/7608/task/7624/stat : 7624 (java) S 7606 7606 7562 0 -1 1077944384 295 0 0 0 3 0 0 0 20 0 20 0 511924618 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022248454256 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7625] ppid=7606 vsize=28231652 memory=281152988613008 CPUtime=0.13 cores=0-7
/proc/7608/task/7625/stat : 7625 (java) S 7606 7606 7562 0 -1 1077944384 958 0 0 0 13 0 0 0 20 0 20 0 511924618 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022247401456 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7626] ppid=7606 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7626/stat : 7626 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924618 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022246349920 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7627] ppid=7606 vsize=28231652 memory=-1 CPUtime=0 cores=0-7
/proc/7608/task/7627/stat : 7627 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924618 28909211648 12508 33554432000 4194304 4196468 140734261823744 140022245297200 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
Current children cumulated CPU time: 0.54 s
Current children cumulated vsize: 28344780 KiB
Current children cumulated memory: 51480 KiB

[startup+0.700991 s]
/proc/loadavg: 7.45 8.00 8.13 7/211 7627
/proc/meminfo: memFree=25943864/32770624 swapFree=66956852/67108860
[pid=7606] ppid=7603 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/7606/stat : 7606 (xcsp3-exec) S 7603 7606 7562 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 511924612 115843072 362 33554432000 4194304 5098028 140733963334032 140733963332136 140378068103804 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15716352 140733963338577 140733963338837 140733963338837 140733963341766 0
/proc/7606/statm: 28282 362 304 221 0 87 0
[pid=7608] ppid=7606 vsize=28231728 memory=289048 CPUtime=1.45 cores=0-7
/proc/7608/stat : 7608 (java) S 7606 7606 7562 0 -1 1077944320 12281 0 0 0 108 37 0 0 20 0 20 0 511924612 28909289472 72262 33554432000 4194304 4196468 140734261823744 140734261806288 140022870744823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
/proc/7608/statm: 7057932 72262 3401 1 0 7019032 0
[pid=7608/tid=7609] ppid=7606 vsize=28231728 memory=0 CPUtime=0.61 cores=0-7
/proc/7608/task/7609/stat : 7609 (java) R 7606 7606 7562 0 -1 4202560 8351 0 0 0 55 6 0 0 20 0 20 0 511924612 28909289472 72262 33554432000 4194304 4196468 140734261823744 140022874978960 140022460523306 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7610] ppid=7606 vsize=28231728 memory=140576494494576 CPUtime=0.05 cores=0-7
/proc/7608/task/7610/stat : 7610 (java) S 7606 7606 7562 0 -1 1077944384 59 0 0 0 2 3 0 0 20 0 20 0 511924613 28909289472 72262 33554432000 4194304 4196468 140734261823744 140022790597776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7611] ppid=7606 vsize=28231728 memory=0 CPUtime=0.05 cores=0-7
/proc/7608/task/7611/stat : 7611 (java) S 7606 7606 7562 0 -1 1077944384 65 0 0 0 2 3 0 0 20 0 20 0 511924613 28909289472 72262 33554432000 4194304 4196468 140734261823744 140022789544976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7612] ppid=7606 vsize=28231728 memory=784 CPUtime=0.04 cores=0-7
/proc/7608/task/7612/stat : 7612 (java) S 7606 7606 7562 0 -1 1077944384 46 0 0 0 1 3 0 0 20 0 20 0 511924613 28909289472 72262 33554432000 4194304 4196468 140734261823744 140022788492176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0

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

[pid=7606] ppid=7603 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/7606/stat : 7606 (xcsp3-exec) S 7603 7606 7562 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 511924612 115843072 362 33554432000 4194304 5098028 140733963334032 140733963332136 140378068103804 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15716352 140733963338577 140733963338837 140733963338837 140733963341766 0
/proc/7606/statm: 28282 362 304 221 0 87 0
[pid=7608] ppid=7606 vsize=28233776 memory=23422636 CPUtime=551.38 cores=0-7
/proc/7608/stat : 7608 (java) S 7606 7606 7562 0 -1 1077944320 1433520 0 0 0 51052 4086 0 0 20 0 20 0 511924612 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140734261806288 140022870744823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
/proc/7608/statm: 7058444 5855659 3508 1 0 7019544 0
[pid=7608/tid=7609] ppid=7606 vsize=28233776 memory=0 CPUtime=23.55 cores=0-7
/proc/7608/task/7609/stat : 7609 (java) S 7606 7606 7562 0 -1 1077944384 187668 0 0 0 2302 53 0 0 20 0 20 0 511924612 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022874982944 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7610] ppid=7606 vsize=28233776 memory=8112282956445269571 CPUtime=63.84 cores=0-7
/proc/7608/task/7610/stat : 7610 (java) R 7606 7606 7562 0 -1 4202560 163106 0 0 0 5830 554 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022790597896 140022863373031 0 4 0 16800975 0 0 0 -1 7 0 0 14 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7611] ppid=7606 vsize=28233776 memory=1620 CPUtime=64.2 cores=0-7
/proc/7608/task/7611/stat : 7611 (java) R 7606 7606 7562 0 -1 4202560 227886 0 0 0 5932 488 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022789545176 140022863847802 0 4 0 16800975 0 0 0 -1 1 0 0 10 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7612] ppid=7606 vsize=28233776 memory=1136 CPUtime=63.8 cores=0-7
/proc/7608/task/7612/stat : 7612 (java) R 7606 7606 7562 0 -1 4202560 118867 0 0 0 5889 491 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022788492296 140022863373031 0 4 0 16800975 0 0 0 -1 6 0 0 9 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7613] ppid=7606 vsize=28233776 memory=1072 CPUtime=63.67 cores=0-7
/proc/7608/task/7613/stat : 7613 (java) R 7606 7606 7562 0 -1 4202560 119711 0 0 0 5891 476 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022787439184 140022863373031 0 4 0 16800975 0 0 0 -1 5 0 0 11 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7614] ppid=7606 vsize=28233776 memory=8112282956445269571 CPUtime=63.75 cores=0-7
/proc/7608/task/7614/stat : 7614 (java) R 7606 7606 7562 0 -1 4202560 87779 0 0 0 5902 473 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022786386384 140022863373031 0 4 0 16800975 0 0 0 -1 0 0 0 19 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7615] ppid=7606 vsize=28233776 memory=1408 CPUtime=64.05 cores=0-7
/proc/7608/task/7615/stat : 7615 (java) R 7606 7606 7562 0 -1 4202560 105317 0 0 0 5854 551 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022785333584 140022863373031 0 4 0 16800975 0 0 0 -1 4 0 0 9 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7616] ppid=7606 vsize=28233776 memory=1548 CPUtime=63.91 cores=0-7
/proc/7608/task/7616/stat : 7616 (java) R 7606 7606 7562 0 -1 4202560 79069 0 0 0 5874 517 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022784280784 140022863373031 0 4 0 16800975 0 0 0 -1 2 0 0 14 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7617] ppid=7606 vsize=28233776 memory=7552 CPUtime=63.92 cores=0-7
/proc/7608/task/7617/stat : 7617 (java) R 7606 7606 7562 0 -1 4202560 240459 0 0 0 5937 455 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022783227984 140022863373031 0 4 0 16800975 0 0 0 -1 3 0 0 13 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7618] ppid=7606 vsize=28233776 memory=1976 CPUtime=14.53 cores=0-7
/proc/7608/task/7618/stat : 7618 (java) S 7606 7606 7562 0 -1 1077944384 87192 0 0 0 1437 16 0 0 20 0 20 0 511924614 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022254769616 140022870755029 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7619] ppid=7606 vsize=28233776 memory=2580 CPUtime=0 cores=0-7
/proc/7608/task/7619/stat : 7619 (java) S 7606 7606 7562 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 20 0 511924615 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022253717088 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7620] ppid=7606 vsize=28233776 memory=1760 CPUtime=0 cores=0-7
/proc/7608/task/7620/stat : 7620 (java) S 7606 7606 7562 0 -1 1077944384 110 0 0 0 0 0 0 0 20 0 20 0 511924615 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022252664192 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7621] ppid=7606 vsize=28233776 memory=111632 CPUtime=0 cores=0-7
/proc/7608/task/7621/stat : 7621 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022251612496 140022870763419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7622] ppid=7606 vsize=28233776 memory=804 CPUtime=0.56 cores=0-7
/proc/7608/task/7622/stat : 7622 (java) S 7606 7606 7562 0 -1 1077944384 3789 0 0 0 55 1 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022250559904 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7623] ppid=7606 vsize=28233776 memory=164 CPUtime=0.51 cores=0-7
/proc/7608/task/7623/stat : 7623 (java) S 7606 7606 7562 0 -1 1077944384 3271 0 0 0 51 0 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022249507104 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7624] ppid=7606 vsize=28233776 memory=0 CPUtime=0.52 cores=0-7
/proc/7608/task/7624/stat : 7624 (java) S 7606 7606 7562 0 -1 1077944384 3340 0 0 0 51 1 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022248454016 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7625] ppid=7606 vsize=28233776 memory=0 CPUtime=0.37 cores=0-7
/proc/7608/task/7625/stat : 7625 (java) S 7606 7606 7562 0 -1 1077944384 3825 0 0 0 37 0 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022247401504 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7626] ppid=7606 vsize=28233776 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7626/stat : 7626 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022246349920 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7627] ppid=7606 vsize=28233776 memory=0 CPUtime=0.04 cores=0-7
/proc/7608/task/7627/stat : 7627 (java) S 7606 7606 7562 0 -1 1077944384 823 0 0 0 2 2 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022245297200 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
Current children cumulated CPU time: 551.38 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 23424084 KiB

[startup+104.001 s]
/proc/loadavg: 6.71 7.48 7.93 8/211 7635
/proc/meminfo: memFree=2655812/32770624 swapFree=66956852/67108860
[pid=7606] ppid=7603 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/7606/stat : 7606 (xcsp3-exec) S 7603 7606 7562 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 511924612 115843072 362 33554432000 4194304 5098028 140733963334032 140733963332136 140378068103804 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15716352 140733963338577 140733963338837 140733963338837 140733963341766 0
/proc/7606/statm: 28282 362 304 221 0 87 0
[pid=7608] ppid=7606 vsize=28233776 memory=23422636 CPUtime=557.55 cores=0-7
/proc/7608/stat : 7608 (java) S 7606 7606 7562 0 -1 1077944320 1434236 0 0 0 51667 4088 0 0 20 0 20 0 511924612 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140734261806288 140022870744823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
/proc/7608/statm: 7058444 5855659 3508 1 0 7019544 0
[pid=7608/tid=7609] ppid=7606 vsize=28233776 memory=8112282956445269571 CPUtime=23.55 cores=0-7
/proc/7608/task/7609/stat : 7609 (java) S 7606 7606 7562 0 -1 1077944384 187668 0 0 0 2302 53 0 0 20 0 20 0 511924612 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022874982944 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7610] ppid=7606 vsize=28233776 memory=1060 CPUtime=64.6 cores=0-7
/proc/7608/task/7610/stat : 7610 (java) S 7606 7606 7562 0 -1 1077944384 163106 0 0 0 5905 555 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022790597584 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 14 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7611] ppid=7606 vsize=28233776 memory=14012 CPUtime=64.99 cores=0-7
/proc/7608/task/7611/stat : 7611 (java) R 7606 7606 7562 0 -1 4202560 228013 0 0 0 6011 488 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022789544784 140022863373031 0 4 0 16800975 0 0 0 -1 1 0 0 10 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7612] ppid=7606 vsize=28233776 memory=25292 CPUtime=64.57 cores=0-7
/proc/7608/task/7612/stat : 7612 (java) R 7606 7606 7562 0 -1 4202560 118867 0 0 0 5966 491 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022788492296 140022863373031 0 4 0 16800975 0 0 0 -1 6 0 0 9 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7613] ppid=7606 vsize=28233776 memory=14056 CPUtime=64.45 cores=0-7
/proc/7608/task/7613/stat : 7613 (java) R 7606 7606 7562 0 -1 4202560 119711 0 0 0 5968 477 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022787439184 140022863373031 0 4 0 16800975 0 0 0 -1 5 0 0 11 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7614] ppid=7606 vsize=28233776 memory=1448 CPUtime=64.53 cores=0-7
/proc/7608/task/7614/stat : 7614 (java) R 7606 7606 7562 0 -1 4202560 88368 0 0 0 5979 474 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022786386696 140022855742875 0 4 0 16800975 0 0 0 -1 0 0 0 19 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7615] ppid=7606 vsize=28233776 memory=23422636 CPUtime=64.83 cores=0-7
/proc/7608/task/7615/stat : 7615 (java) R 7606 7606 7562 0 -1 4202560 105317 0 0 0 5931 552 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022785333584 140022863373031 0 4 0 16800975 0 0 0 -1 4 0 0 9 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7616] ppid=7606 vsize=28233776 memory=1068 CPUtime=64.69 cores=0-7
/proc/7608/task/7616/stat : 7616 (java) R 7606 7606 7562 0 -1 4202560 79069 0 0 0 5951 518 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022784280784 140022863373031 0 4 0 16800975 0 0 0 -1 2 0 0 14 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7617] ppid=7606 vsize=28233776 memory=1051 CPUtime=64.7 cores=0-7
/proc/7608/task/7617/stat : 7617 (java) R 7606 7606 7562 0 -1 4202560 240459 0 0 0 6014 456 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022783227984 140022863373031 0 4 0 16800975 0 0 0 -1 3 0 0 13 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7618] ppid=7606 vsize=28233776 memory=1053 CPUtime=14.53 cores=0-7
/proc/7608/task/7618/stat : 7618 (java) S 7606 7606 7562 0 -1 1077944384 87192 0 0 0 1437 16 0 0 20 0 20 0 511924614 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022254769616 140022870755029 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7619] ppid=7606 vsize=28233776 memory=34851579235050 CPUtime=0 cores=0-7
/proc/7608/task/7619/stat : 7619 (java) S 7606 7606 7562 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 20 0 511924615 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022253717088 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7620] ppid=7606 vsize=28233776 memory=34851579235050 CPUtime=0 cores=0-7
/proc/7608/task/7620/stat : 7620 (java) S 7606 7606 7562 0 -1 1077944384 110 0 0 0 0 0 0 0 20 0 20 0 511924615 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022252664192 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7621] ppid=7606 vsize=28233776 memory=34851579234794 CPUtime=0 cores=0-7
/proc/7608/task/7621/stat : 7621 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022251612496 140022870763419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7622] ppid=7606 vsize=28233776 memory=34851579234794 CPUtime=0.56 cores=0-7
/proc/7608/task/7622/stat : 7622 (java) S 7606 7606 7562 0 -1 1077944384 3789 0 0 0 55 1 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022250559904 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7623] ppid=7606 vsize=28233776 memory=34851579234538 CPUtime=0.51 cores=0-7
/proc/7608/task/7623/stat : 7623 (java) S 7606 7606 7562 0 -1 1077944384 3271 0 0 0 51 0 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022249507104 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7624] ppid=7606 vsize=28233776 memory=11089 CPUtime=0.52 cores=0-7
/proc/7608/task/7624/stat : 7624 (java) S 7606 7606 7562 0 -1 1077944384 3340 0 0 0 51 1 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022248454016 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7625] ppid=7606 vsize=28233776 memory=4420 CPUtime=0.37 cores=0-7
/proc/7608/task/7625/stat : 7625 (java) S 7606 7606 7562 0 -1 1077944384 3825 0 0 0 37 0 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022247401504 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7626] ppid=7606 vsize=28233776 memory=6628 CPUtime=0 cores=0-7
/proc/7608/task/7626/stat : 7626 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022246349920 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7627] ppid=7606 vsize=28233776 memory=8836 CPUtime=0.04 cores=0-7
/proc/7608/task/7627/stat : 7627 (java) S 7606 7606 7562 0 -1 1077944384 823 0 0 0 2 2 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022245297200 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
Current children cumulated CPU time: 557.55 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 23424084 KiB

[startup+104.801 s]*
/proc/loadavg: 6.71 7.48 7.93 2/211 7635
/proc/meminfo: memFree=2656060/32770624 swapFree=66956852/67108860
[pid=7606] ppid=7603 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/7606/stat : 7606 (xcsp3-exec) S 7603 7606 7562 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 511924612 115843072 362 33554432000 4194304 5098028 140733963334032 140733963332136 140378068103804 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15716352 140733963338577 140733963338837 140733963338837 140733963341766 0
/proc/7606/statm: 28282 362 304 221 0 87 0
[pid=7608] ppid=7606 vsize=28233776 memory=23422636 CPUtime=559.05 cores=0-7
/proc/7608/stat : 7608 (java) S 7606 7606 7562 0 -1 1077944320 1435516 0 0 0 51816 4089 0 0 20 0 20 0 511924612 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140734261806288 140022870744823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
/proc/7608/statm: 7058444 5855659 3508 1 0 7019544 0
[pid=7608/tid=7609] ppid=7606 vsize=28233776 memory=8317482817917895235 CPUtime=23.55 cores=0-7
/proc/7608/task/7609/stat : 7609 (java) S 7606 7606 7562 0 -1 1077944384 187668 0 0 0 2302 53 0 0 20 0 20 0 511924612 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022874982944 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7610] ppid=7606 vsize=28233776 memory=4872558044660077418 CPUtime=64.7 cores=0-7
/proc/7608/task/7610/stat : 7610 (java) S 7606 7606 7562 0 -1 1077944384 163106 0 0 0 5915 555 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022790597776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 14 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7611] ppid=7606 vsize=28233776 memory=14056 CPUtime=65.09 cores=0-7
/proc/7608/task/7611/stat : 7611 (java) S 7606 7606 7562 0 -1 1077944384 228013 0 0 0 6021 488 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022789544976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 10 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7612] ppid=7606 vsize=28233776 memory=2116 CPUtime=64.66 cores=0-7
/proc/7608/task/7612/stat : 7612 (java) S 7606 7606 7562 0 -1 1077944384 118867 0 0 0 5975 491 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022788492176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 9 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7613] ppid=7606 vsize=28233776 memory=516 CPUtime=64.55 cores=0-7
/proc/7608/task/7613/stat : 7613 (java) S 7606 7606 7562 0 -1 1077944384 119711 0 0 0 5978 477 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022787439376 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 11 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7614] ppid=7606 vsize=28233776 memory=1556 CPUtime=64.63 cores=0-7
/proc/7608/task/7614/stat : 7614 (java) S 7606 7606 7562 0 -1 1077944384 88368 0 0 0 5989 474 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022786386576 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 19 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7615] ppid=7606 vsize=28233776 memory=928 CPUtime=64.92 cores=0-7
/proc/7608/task/7615/stat : 7615 (java) S 7606 7606 7562 0 -1 1077944384 105317 0 0 0 5940 552 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022785333776 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 9 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7616] ppid=7606 vsize=28233776 memory=1448 CPUtime=64.79 cores=0-7
/proc/7608/task/7616/stat : 7616 (java) S 7606 7606 7562 0 -1 1077944384 79069 0 0 0 5961 518 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022784280976 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 14 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7617] ppid=7606 vsize=28233776 memory=1448 CPUtime=64.8 cores=0-7
/proc/7608/task/7617/stat : 7617 (java) S 7606 7606 7562 0 -1 1077944384 240459 0 0 0 6024 456 0 0 20 0 20 0 511924613 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022783228176 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 13 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7618] ppid=7606 vsize=28233776 memory=23420564 CPUtime=15.24 cores=0-7
/proc/7608/task/7618/stat : 7618 (java) R 7606 7606 7562 0 -1 4202560 88472 0 0 0 1508 16 0 0 20 0 20 0 511924614 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022254769616 140022849115003 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7619] ppid=7606 vsize=28233776 memory=140576495273373 CPUtime=0 cores=0-7
/proc/7608/task/7619/stat : 7619 (java) S 7606 7606 7562 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 20 0 511924615 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022253717088 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7620] ppid=7606 vsize=28233776 memory=-1664385933527516014 CPUtime=0 cores=0-7
/proc/7608/task/7620/stat : 7620 (java) S 7606 7606 7562 0 -1 1077944384 110 0 0 0 0 0 0 0 20 0 20 0 511924615 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022252664192 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7621] ppid=7606 vsize=28233776 memory=-9174445032661854264 CPUtime=0 cores=0-7
/proc/7608/task/7621/stat : 7621 (java) S 7606 7606 7562 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022251612496 140022870763419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7622] ppid=7606 vsize=28233776 memory=-2026666227646606628 CPUtime=0.56 cores=0-7
/proc/7608/task/7622/stat : 7622 (java) S 7606 7606 7562 0 -1 1077944384 3789 0 0 0 55 1 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022250559904 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7623] ppid=7606 vsize=28233776 memory=-2893623298589923098 CPUtime=0.51 cores=0-7
/proc/7608/task/7623/stat : 7623 (java) S 7606 7606 7562 0 -1 1077944384 3271 0 0 0 51 0 0 0 20 0 20 0 511924617 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022249507104 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7624] ppid=7606 vsize=28233776 memory=-2746958450906831424 CPUtime=0.52 cores=0-7
/proc/7608/task/7624/stat : 7624 (java) S 7606 7606 7562 0 -1 1077944384 3340 0 0 0 51 1 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022248454016 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7625] ppid=7606 vsize=28233776 memory=281152990474112 CPUtime=0.37 cores=0-7
/proc/7608/task/7625/stat : 7625 (java) S 7606 7606 7562 0 -1 1077944384 3825 0 0 0 37 0 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022247401504 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7626] ppid=7606 vsize=28233776 memory=0 CPUtime=0 cores=0-7
/proc/7608/task/7626/stat : 7626 (java) S 7606 7606 7562 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022246349920 140022870755029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
[pid=7608/tid=7627] ppid=7606 vsize=28233776 memory=-2026666227646606628 CPUtime=0.04 cores=0-7
/proc/7608/task/7627/stat : 7627 (java) S 7606 7606 7562 0 -1 1077944384 823 0 0 0 2 2 0 0 20 0 20 0 511924618 28911386624 5855659 33554432000 4194304 4196468 140734261823744 140022245297200 140022870755970 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 26554368 140734261826518 140734261826694 140734261826694 140734261829583 0
Current children cumulated CPU time: 559.05 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 23424084 KiB

[startup+105 s]
/proc/loadavg: 6.71 7.48 7.93 2/211 7635
/proc/meminfo: memFree=2656060/32770624 swapFree=66956852/67108860
[pid=7606] ppid=7603 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/7606/stat : 7606 (xcsp3-exec) S 7603 7606 7562 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 511924612 115843072 362 33554432000 4194304 5098028 140733963334032 140733963332136 140378068103804 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15716352 140733963338577 140733963338837 140733963338837 140733963341766 0
/proc/7606/statm: 28282 362 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1448 KiB

Child status: 1
Real time (s): 105.096
CPU time (s): 559.353
CPU user time (s): 518.26
CPU system time (s): 41.0934
CPU usage (%): 532.229
Max. virtual memory (cumulated for all children) (KiB): 28346904
Max. memory (cumulated for all children) (KiB): 23424084

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 518.26
system time used= 41.0934
maximum resident set size= 23422908
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 1436292
page faults= 0
swaps= 0
block input operations= 0
block output operations= 376
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 27797
involuntary context switches= 10962


# summary of solver processes directly reported to runsolver:
#   pid: 7606
#   total CPU time (s): 559.353
#   total CPU user time (s): 518.26
#   total CPU system time (s): 41.0934

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.775549 second user time and 1.19098 second system time

The end

Launcher Data

Begin job on node105 at 2019-09-24 21:22:47
IDJOB=4407155
IDBENCH=138083
IDSOLVER=2871
FILE ID=node105/4407155-1569356668
RUNJOBID= node105-1569352967-7589
PBS_JOBID= 21705104
Free space on /var/tmp= 13096 MiB

SOLVER NAME= choco-solver 2019-09-24 parallel
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-75.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-4407155-1569356668/watcher-4407155-1569356668 -o /var/tmp/evaluation-result-4407155-1569356668/solver-4407155-1569356668 -C 20160 -W 2520 -M 31000 --bin-var /var/tmp/runsolver-exch-node105-1569352967-7589 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1062375216 HOME/instance-4407155-1569356668.xml

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

MD5SUM BENCH= 9cdf82428becd6b5ad716031980a59d2
RANDOM SEED=1062375216

node105.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	: 5333.00
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	: 5333.00
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	: 5333.00
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	: 5333.00
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:        26110376 kB
MemAvailable:   31799556 kB
Buffers:          122996 kB
Cached:          5697884 kB
SwapCached:        48340 kB
Active:          2940952 kB
Inactive:        2928004 kB
Active(anon):       3308 kB
Inactive(anon):    99564 kB
Active(file):    2937644 kB
Inactive(file):  2828440 kB
Unevictable:      110936 kB
Mlocked:          110936 kB
SwapTotal:      67108860 kB
SwapFree:       66956852 kB
Dirty:            109144 kB
Writeback:             0 kB
AnonPages:        112452 kB
Mapped:            54300 kB
Shmem:             45928 kB
Slab:             380264 kB
SReclaimable:     351556 kB
SUnreclaim:        28708 kB
KernelStack:        3312 kB
PageTables:         5432 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     505572 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:      120192 kB
DirectMap2M:    33425408 kB

Free space on /var/tmp at the end= 13072 MiB
End job on node105 at 2019-09-24 21:24:33