Trace number 4281130

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
choco-solver 4.0.5 par (2017-08-18)? 5643.4702 842.83502

General information on the benchmark

NameSuperSolutions/SuperSolutions-Queens-s1/
SuperQueens-14.xml
MD5SUMe8698b72f1d598ed72051801219b61cc
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables160
Number of constraints9560
Number of domains1
Minimum domain size80
Maximum domain size80
Distribution of domain sizes[{"size":80,"count":160}]
Minimum variable degree80
Maximum variable degree159
Distribution of variable degrees[{"degree":80,"count":80},{"degree":159,"count":80}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":9560}]
Number of extensional constraints0
Number of intensional constraints9560
Distribution of constraint types[{"type":"intension","count":9560}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.00	c java -server -Xmx22000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4281130-1503170643.xml"  -tl '20160s' -p 8 -x 0
0.11/0.14	c [HOME/instance-4281130-1503170643.xml, -tl, 20160s, -p, 8, -x, 0]
0.11/0.20	c 8 solvers in parallel
0.32/0.27	c parse instance...
5517.92/826.39	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
5643.33/842.74		at java.util.Arrays.copyOf(Arrays.java:3181)
5643.33/842.74		at java.util.ArrayList.grow(ArrayList.java:261)
5643.33/842.74		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
5643.33/842.74		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
5643.33/842.74		at java.util.ArrayList.add(ArrayList.java:458)
5643.33/842.74		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:158)
5643.33/842.74		at org.chocosolver.solver.constraints.extension.TuplesFactory.generateTuples(TuplesFactory.java:88)
5643.33/842.74		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:148)
5643.33/842.74		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
5643.33/842.74		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
5643.33/842.74		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
5643.33/842.74		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
5643.33/842.74		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
5643.33/842.74		at org.xcsp.parser.XCallbacks$$Lambda$52/343965883.accept(Unknown Source)
5643.33/842.74		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
5643.33/842.74		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
5643.33/842.74		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
5643.33/842.74		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
5643.33/842.74		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
5643.33/842.74		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
5643.33/842.74		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
5643.33/842.74		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
5643.33/842.74		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
5643.33/842.74		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
5643.33/842.74		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
5643.33/842.74	s UNKNOWN
5643.33/842.75	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 (12783 MiB free)
  memory of node 1: 16384 MiB (12126 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4281130-1503170643/watcher-4281130-1503170643 -o /tmp/evaluation-result-4281130-1503170643/solver-4281130-1503170643 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node148-1503164239-4277 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 22000 -tdir HOME -seed 1311975280 HOME/instance-4281130-1503170643.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
Current StackSize limit: 8192 KiB

solver pid=4780, runsolver pid=4777

[startup+0.100139 s]*
/proc/loadavg: 2.03 3.06 5.55 2/199 4801
/proc/meminfo: memFree=25492328/32770624 swapFree=67108860/67108860
[pid=4780] ppid=4777 vsize=9512 memory=1380 CPUtime=0 cores=0-7
/proc/4780/stat : 4780 (xcsp3-exec) S 4777 4780 4250 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 150145192 9740288 345 33554432000 4194304 5098028 140729911704752 140729911702856 140365399523964 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 18935808 140729911706724 140729911706935 140729911706935 140729911709675 0
/proc/4780/statm: 2378 345 289 221 0 87 0
[pid=4782] ppid=4780 vsize=25999808 memory=26980 CPUtime=0.11 cores=0-7
/proc/4782/stat : 4782 (java) S 4780 4780 4250 0 -1 1077944320 5679 0 0 0 10 1 0 0 20 0 20 0 150145193 26623803392 6745 33554432000 4194304 4196468 140734220997328 140734220979872 140499882942199 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
/proc/4782/statm: 6499952 6745 2846 1 0 6488269 0
[pid=4782/tid=4783] ppid=4780 vsize=25999808 memory=4134692831991783777 CPUtime=0.09 cores=0-7
/proc/4782/task/4783/stat : 4783 (java) R 4780 4780 4250 0 -1 4202560 3688 0 0 0 8 1 0 0 20 0 20 0 150145193 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499887175472 140499882954134 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4784] ppid=4780 vsize=25999808 memory=4126316290023845779 CPUtime=0 cores=0-7
/proc/4782/task/4784/stat : 4784 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145194 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499790502288 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4785] ppid=4780 vsize=25999808 memory=139736864425600 CPUtime=0 cores=0-7
/proc/4782/task/4785/stat : 4785 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499439946000 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4786] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4786/stat : 4786 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499438893712 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4787] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4787/stat : 4787 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499437840912 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4788] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4788/stat : 4788 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499436788624 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4789] ppid=4780 vsize=25999808 memory=-1 CPUtime=0 cores=0-7
/proc/4782/task/4789/stat : 4789 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499435735824 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4790] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4790/stat : 4790 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145194 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499434683536 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4791] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4791/stat : 4791 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145194 26623803392 6745 33554432000 4194304 4196468 140734220997328 140499433630736 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4792] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4792/stat : 4792 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145195 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498557876336 140499882953346 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4793] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4793/stat : 4793 (java) S 4780 4780 4250 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 150145196 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498556822304 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4794] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4794/stat : 4794 (java) S 4780 4780 4250 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 150145196 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498555769968 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4795] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4795/stat : 4795 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145198 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498554718288 140499882960795 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4796] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4796/stat : 4796 (java) S 4780 4780 4250 0 -1 1077944384 304 0 0 0 0 0 0 0 20 0 20 0 150145198 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498553666160 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4797] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4797/stat : 4797 (java) S 4780 4780 4250 0 -1 1077944384 121 0 0 0 0 0 0 0 20 0 20 0 150145198 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498552613360 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4798] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4798/stat : 4798 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145199 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498551561072 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4799] ppid=4780 vsize=25999808 memory=0 CPUtime=0.01 cores=0-7
/proc/4782/task/4799/stat : 4799 (java) R 4780 4780 4250 0 -1 4202560 257 0 0 0 1 0 0 0 20 0 20 0 150145199 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498550508272 140499861568257 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4800] ppid=4780 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4800/stat : 4800 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145199 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498549455200 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4801] ppid=4780 vsize=25999808 memory=-1 CPUtime=0 cores=0-7
/proc/4782/task/4801/stat : 4801 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145199 26623803392 6745 33554432000 4194304 4196468 140734220997328 140498548402480 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
Current children cumulated CPU time: 0.11 s
Current children cumulated vsize: 26009320 KiB
Current children cumulated memory: 28360 KiB

[startup+0.210213 s]*
/proc/loadavg: 2.03 3.06 5.55 2/199 4801
/proc/meminfo: memFree=25481800/32770624 swapFree=67108860/67108860
[pid=4780] ppid=4777 vsize=9512 memory=1380 CPUtime=0 cores=0-7
/proc/4780/stat : 4780 (xcsp3-exec) S 4777 4780 4250 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 150145192 9740288 345 33554432000 4194304 5098028 140729911704752 140729911702856 140365399523964 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 18935808 140729911706724 140729911706935 140729911706935 140729911709675 0
/proc/4780/statm: 2378 345 289 221 0 87 0
[pid=4782] ppid=4780 vsize=26004064 memory=38984 CPUtime=0.32 cores=0-7
/proc/4782/stat : 4782 (java) S 4780 4780 4250 0 -1 1077944320 8318 0 0 0 30 2 0 0 20 0 20 0 150145193 26628161536 9746 33554432000 4194304 4196468 140734220997328 140734220979872 140499882942199 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
/proc/4782/statm: 6501016 9746 3067 1 0 6488269 0
[pid=4782/tid=4783] ppid=4780 vsize=26004064 memory=8318255677412212789 CPUtime=0.19 cores=0-7
/proc/4782/task/4783/stat : 4783 (java) R 4780 4780 4250 0 -1 4202560 5425 0 0 0 18 1 0 0 20 0 20 0 150145193 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499887162400 140499875620213 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4784] ppid=4780 vsize=26004064 memory=330 CPUtime=0 cores=0-7
/proc/4782/task/4784/stat : 4784 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499790502288 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4785] ppid=4780 vsize=26004064 memory=4049213597575710368 CPUtime=0 cores=0-7
/proc/4782/task/4785/stat : 4785 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499439946000 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4786] ppid=4780 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/4782/task/4786/stat : 4786 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499438893712 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4787] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4787/stat : 4787 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499437840912 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4788] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4788/stat : 4788 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499436788624 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4789] ppid=4780 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/4782/task/4789/stat : 4789 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499435735824 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4790] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4790/stat : 4790 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499434683536 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4791] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4791/stat : 4791 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 9746 33554432000 4194304 4196468 140734220997328 140499433630736 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4792] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4792/stat : 4792 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145195 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498557876336 140499882953346 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4793] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4793/stat : 4793 (java) S 4780 4780 4250 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 150145196 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498556822304 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4794] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4794/stat : 4794 (java) S 4780 4780 4250 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 150145196 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498555769968 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4795] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4795/stat : 4795 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145198 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498554718288 140499882960795 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4796] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4796/stat : 4796 (java) S 4780 4780 4250 0 -1 1077944384 329 0 0 0 0 0 0 0 20 0 20 0 150145198 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498553666160 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4797] ppid=4780 vsize=26004064 memory=0 CPUtime=0.02 cores=0-7
/proc/4782/task/4797/stat : 4797 (java) S 4780 4780 4250 0 -1 1077944384 404 0 0 0 2 0 0 0 20 0 20 0 150145198 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498552613360 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4798] ppid=4780 vsize=26004064 memory=-1 CPUtime=0.01 cores=0-7
/proc/4782/task/4798/stat : 4798 (java) S 4780 4780 4250 0 -1 1077944384 109 0 0 0 1 0 0 0 20 0 20 0 150145199 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498551561072 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4799] ppid=4780 vsize=26004064 memory=-1 CPUtime=0.07 cores=0-7
/proc/4782/task/4799/stat : 4799 (java) S 4780 4780 4250 0 -1 1077944384 743 0 0 0 7 0 0 0 20 0 20 0 150145199 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498550508272 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4800] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4800/stat : 4800 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145199 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498549455200 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4801] ppid=4780 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/4782/task/4801/stat : 4801 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145199 26628161536 9746 33554432000 4194304 4196468 140734220997328 140498548402480 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
Current children cumulated CPU time: 0.32 s
Current children cumulated vsize: 26013576 KiB
Current children cumulated memory: 40364 KiB

[startup+0.309321 s]*
/proc/loadavg: 2.03 3.06 5.55 3/199 4801
/proc/meminfo: memFree=25477132/32770624 swapFree=67108860/67108860
[pid=4780] ppid=4777 vsize=9512 memory=1380 CPUtime=0 cores=0-7
/proc/4780/stat : 4780 (xcsp3-exec) S 4777 4780 4250 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 150145192 9740288 345 33554432000 4194304 5098028 140729911704752 140729911702856 140365399523964 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 18935808 140729911706724 140729911706935 140729911706935 140729911709675 0
/proc/4780/statm: 2378 345 289 221 0 87 0
[pid=4782] ppid=4780 vsize=26004064 memory=43892 CPUtime=0.49 cores=0-7
/proc/4782/stat : 4782 (java) S 4780 4780 4250 0 -1 1077944320 9143 0 0 0 45 4 0 0 20 0 20 0 150145193 26628161536 10973 33554432000 4194304 4196468 140734220997328 140734220979872 140499882942199 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
/proc/4782/statm: 6501016 10973 3111 1 0 6488269 0
[pid=4782/tid=4783] ppid=4780 vsize=26004064 memory=8112282956445269571 CPUtime=0.28 cores=0-7
/proc/4782/task/4783/stat : 4783 (java) R 4780 4780 4250 0 -1 4202560 6099 0 0 0 26 2 0 0 20 0 20 0 150145193 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499887180464 140499882954134 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4784] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4784/stat : 4784 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499790502288 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4785] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4785/stat : 4785 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499439946000 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4786] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4786/stat : 4786 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499438893712 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4787] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4787/stat : 4787 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499437840912 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4788] ppid=4780 vsize=26004064 memory=2244 CPUtime=0 cores=0-7
/proc/4782/task/4788/stat : 4788 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499436788624 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4789] ppid=4780 vsize=26004064 memory=139736761070511 CPUtime=0 cores=0-7
/proc/4782/task/4789/stat : 4789 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499435735824 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4790] ppid=4780 vsize=26004064 memory=139736761072816 CPUtime=0 cores=0-7
/proc/4782/task/4790/stat : 4790 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499434683536 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4791] ppid=4780 vsize=26004064 memory=139736761075120 CPUtime=0 cores=0-7
/proc/4782/task/4791/stat : 4791 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145194 26628161536 10973 33554432000 4194304 4196468 140734220997328 140499433630736 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4792] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4792/stat : 4792 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145195 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498557876336 140499882953346 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4793] ppid=4780 vsize=26004064 memory=279473522157200 CPUtime=0 cores=0-7
/proc/4782/task/4793/stat : 4793 (java) S 4780 4780 4250 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 150145196 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498556822304 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4794] ppid=4780 vsize=26004064 memory=279473522164112 CPUtime=0 cores=0-7
/proc/4782/task/4794/stat : 4794 (java) S 4780 4780 4250 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 150145196 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498555769968 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4795] ppid=4780 vsize=26004064 memory=279473522105392 CPUtime=0 cores=0-7
/proc/4782/task/4795/stat : 4795 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145198 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498554718288 140499882960795 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4796] ppid=4780 vsize=26004064 memory=279473522177936 CPUtime=0 cores=0-7
/proc/4782/task/4796/stat : 4796 (java) S 4780 4780 4250 0 -1 1077944384 331 0 0 0 0 0 0 0 20 0 20 0 150145198 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498553666160 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4797] ppid=4780 vsize=26004064 memory=279473522184848 CPUtime=0.02 cores=0-7
/proc/4782/task/4797/stat : 4797 (java) S 4780 4780 4250 0 -1 1077944384 405 0 0 0 2 0 0 0 20 0 20 0 150145198 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498552613360 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4798] ppid=4780 vsize=26004064 memory=279473522182544 CPUtime=0.02 cores=0-7
/proc/4782/task/4798/stat : 4798 (java) S 4780 4780 4250 0 -1 1077944384 160 0 0 0 2 0 0 0 20 0 20 0 150145199 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498551561072 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4799] ppid=4780 vsize=26004064 memory=279473522198704 CPUtime=0.12 cores=0-7
/proc/4782/task/4799/stat : 4799 (java) R 4780 4780 4250 0 -1 4202560 843 0 0 0 12 0 0 0 20 0 20 0 150145199 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498550504640 140499861617392 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4800] ppid=4780 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4800/stat : 4800 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145199 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498549455200 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4801] ppid=4780 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/4782/task/4801/stat : 4801 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145199 26628161536 10973 33554432000 4194304 4196468 140734220997328 140498548402480 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
Current children cumulated CPU time: 0.49 s
Current children cumulated vsize: 26013576 KiB
Current children cumulated memory: 45272 KiB

[startup+0.700951 s]
/proc/loadavg: 2.03 3.06 5.55 6/199 4801
/proc/meminfo: memFree=25449776/32770624 swapFree=67108860/67108860
[pid=4780] ppid=4777 vsize=9512 memory=1380 CPUtime=0 cores=0-7
/proc/4780/stat : 4780 (xcsp3-exec) S 4777 4780 4250 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 150145192 9740288 345 33554432000 4194304 5098028 140729911704752 140729911702856 140365399523964 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 18935808 140729911706724 140729911706935 140729911706935 140729911709675 0
/proc/4780/statm: 2378 345 289 221 0 87 0
[pid=4782] ppid=4780 vsize=26004140 memory=141112 CPUtime=2.04 cores=0-7
/proc/4782/stat : 4782 (java) S 4780 4780 4250 0 -1 1077944320 13557 0 0 0 199 5 0 0 20 0 20 0 150145193 26628239360 35278 33554432000 4194304 4196468 140734220997328 140734220979872 140499882942199 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
/proc/4782/statm: 6501035 35278 3201 1 0 6488269 0
[pid=4782/tid=4783] ppid=4780 vsize=26004140 memory=279473522556592 CPUtime=0.67 cores=0-7
/proc/4782/task/4783/stat : 4783 (java) R 4780 4780 4250 0 -1 4202560 6473 0 0 0 63 4 0 0 20 0 20 0 150145193 26628239360 35278 33554432000 4194304 4196468 140734220997328 140499887180832 140499865405322 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4784] ppid=4780 vsize=26004140 memory=139736761279344 CPUtime=0 cores=0-7
/proc/4782/task/4784/stat : 4784 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145194 26628239360 35278 33554432000 4194304 4196468 140734220997328 140499790502288 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4785] ppid=4780 vsize=26004140 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4785/stat : 4785 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628239360 35278 33554432000 4194304 4196468 140734220997328 140499439946000 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4786] ppid=4780 vsize=26004140 memory=1204 CPUtime=0 cores=0-7
/proc/4782/task/4786/stat : 4786 (java) S 4780 4780 4250 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 150145194 26628239360 35278 33554432000 4194304 4196468 140734220997328 140499438893712 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0

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

[pid=4780] ppid=4777 vsize=9512 memory=1380 CPUtime=0 cores=0-7
/proc/4780/stat : 4780 (xcsp3-exec) S 4777 4780 4250 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 150145192 9740288 345 33554432000 4194304 5098028 140729911704752 140729911702856 140365399523964 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 18935808 140729911706724 140729911706935 140729911706935 140729911709675 0
/proc/4780/statm: 2378 345 289 221 0 87 0
[pid=4782] ppid=4780 vsize=26006188 memory=16402816 CPUtime=5623.33 cores=0-7
/proc/4782/stat : 4782 (java) S 4780 4780 4250 0 -1 1077944320 1592265 0 0 0 556537 5796 0 0 20 0 20 0 150145193 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140734220979872 140499882942199 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
/proc/4782/statm: 6501547 4100704 3282 1 0 6488781 0
[pid=4782/tid=4783] ppid=4780 vsize=26006188 memory=8112282956445269571 CPUtime=131.98 cores=0-7
/proc/4782/task/4783/stat : 4783 (java) S 4780 4780 4250 0 -1 1077944384 17317 0 0 0 13173 25 0 0 20 0 20 0 150145193 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499887181696 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4784] ppid=4780 vsize=26006188 memory=4126316290023845779 CPUtime=682.14 cores=0-7
/proc/4782/task/4784/stat : 4784 (java) R 4780 4780 4250 0 -1 4202560 117681 0 0 0 67485 729 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499790502096 140499875570407 0 4 0 16800975 0 0 0 -1 6 0 0 33 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4785] ppid=4780 vsize=26006188 memory=12136 CPUtime=681.77 cores=0-7
/proc/4782/task/4785/stat : 4785 (java) R 4780 4780 4250 0 -1 4202560 125837 0 0 0 67459 718 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499439946120 140499875570407 0 4 0 16800975 0 0 0 -1 3 0 0 34 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4786] ppid=4780 vsize=26006188 memory=1004 CPUtime=683.56 cores=0-7
/proc/4782/task/4786/stat : 4786 (java) R 4780 4780 4250 0 -1 4202560 127310 0 0 0 67613 743 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499438893520 140499875570407 0 4 0 16800975 0 0 0 -1 2 0 0 25 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4787] ppid=4780 vsize=26006188 memory=1228 CPUtime=684.75 cores=0-7
/proc/4782/task/4787/stat : 4787 (java) R 4780 4780 4250 0 -1 4202560 118654 0 0 0 67791 684 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499437840720 140499866325234 0 4 0 16800975 0 0 0 -1 4 0 0 28 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4788] ppid=4780 vsize=26006188 memory=1952 CPUtime=683.2 cores=0-7
/proc/4782/task/4788/stat : 4788 (java) R 4780 4780 4250 0 -1 4202560 128965 0 0 0 67629 691 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499436788432 140499875570407 0 4 0 16800975 0 0 0 -1 1 0 0 34 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4789] ppid=4780 vsize=26006188 memory=1380 CPUtime=684.03 cores=0-7
/proc/4782/task/4789/stat : 4789 (java) R 4780 4780 4250 0 -1 4202560 98036 0 0 0 67717 686 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499435735632 140499875570407 0 4 0 16800975 0 0 0 -1 0 0 0 29 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4790] ppid=4780 vsize=26006188 memory=16402816 CPUtime=683.35 cores=0-7
/proc/4782/task/4790/stat : 4790 (java) R 4780 4780 4250 0 -1 4202560 130812 0 0 0 67636 699 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499434683656 140499875570407 0 4 0 16800975 0 0 0 -1 3 0 0 36 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4791] ppid=4780 vsize=26006188 memory=8112282956445269571 CPUtime=682.94 cores=0-7
/proc/4782/task/4791/stat : 4791 (java) R 4780 4780 4250 0 -1 4202560 130788 0 0 0 67546 748 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499433630936 140499867642012 0 4 0 16800975 0 0 0 -1 5 0 0 28 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4792] ppid=4780 vsize=26006188 memory=4126316290023845779 CPUtime=18.75 cores=0-7
/proc/4782/task/4792/stat : 4792 (java) S 4780 4780 4250 0 -1 1077944384 550339 0 0 0 1816 59 0 0 20 0 20 0 150145195 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498557874880 140499882952405 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4793] ppid=4780 vsize=26006188 memory=12136 CPUtime=0 cores=0-7
/proc/4782/task/4793/stat : 4793 (java) S 4780 4780 4250 0 -1 1077944384 80 0 0 0 0 0 0 0 20 0 20 0 150145196 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498556822368 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4794] ppid=4780 vsize=26006188 memory=8112282956445269571 CPUtime=0 cores=0-7
/proc/4782/task/4794/stat : 4794 (java) S 4780 4780 4250 0 -1 1077944384 149 0 0 0 0 0 0 0 20 0 20 0 150145196 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498555769984 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4795] ppid=4780 vsize=26006188 memory=1292 CPUtime=0 cores=0-7
/proc/4782/task/4795/stat : 4795 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498554718288 140499882960795 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4796] ppid=4780 vsize=26006188 memory=1728 CPUtime=2.43 cores=0-7
/proc/4782/task/4796/stat : 4796 (java) S 4780 4780 4250 0 -1 1077944384 15549 0 0 0 241 2 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498553666208 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4797] ppid=4780 vsize=26006188 memory=12136 CPUtime=1.58 cores=0-7
/proc/4782/task/4797/stat : 4797 (java) S 4780 4780 4250 0 -1 1077944384 8590 0 0 0 157 1 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498552613120 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4798] ppid=4780 vsize=26006188 memory=0 CPUtime=1.78 cores=0-7
/proc/4782/task/4798/stat : 4798 (java) S 4780 4780 4250 0 -1 1077944384 9493 0 0 0 177 1 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498551561120 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4799] ppid=4780 vsize=26006188 memory=0 CPUtime=0.62 cores=0-7
/proc/4782/task/4799/stat : 4799 (java) S 4780 4780 4250 0 -1 1077944384 9962 0 0 0 60 2 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498550508320 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4800] ppid=4780 vsize=26006188 memory=0 CPUtime=0 cores=0-7
/proc/4782/task/4800/stat : 4800 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498549455200 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4801] ppid=4780 vsize=26006188 memory=0 CPUtime=0.32 cores=0-7
/proc/4782/task/4801/stat : 4801 (java) S 4780 4780 4250 0 -1 1077944384 1463 0 0 0 17 15 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498548402480 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
Current children cumulated CPU time: 5623.33 s
Current children cumulated vsize: 26015700 KiB
Current children cumulated memory: 16404196 KiB

[startup+841.601 s]
/proc/loadavg: 7.80 7.22 6.33 9/200 4816
/proc/meminfo: memFree=9087884/32770624 swapFree=67108860/67108860
[pid=4780] ppid=4777 vsize=9512 memory=1380 CPUtime=0 cores=0-7
/proc/4780/stat : 4780 (xcsp3-exec) S 4777 4780 4250 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 150145192 9740288 345 33554432000 4194304 5098028 140729911704752 140729911702856 140365399523964 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 18935808 140729911706724 140729911706935 140729911706935 140729911709675 0
/proc/4780/statm: 2378 345 289 221 0 87 0
[pid=4782] ppid=4780 vsize=26006188 memory=16402816 CPUtime=5635.63 cores=0-7
/proc/4782/stat : 4782 (java) S 4780 4780 4250 0 -1 1077944320 1592265 0 0 0 557762 5801 0 0 20 0 20 0 150145193 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140734220979872 140499882942199 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
/proc/4782/statm: 6501547 4100704 3282 1 0 6488781 0
[pid=4782/tid=4783] ppid=4780 vsize=26006188 memory=8112282956445269571 CPUtime=131.98 cores=0-7
/proc/4782/task/4783/stat : 4783 (java) S 4780 4780 4250 0 -1 1077944384 17317 0 0 0 13173 25 0 0 20 0 20 0 150145193 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499887181696 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4784] ppid=4780 vsize=26006188 memory=1380 CPUtime=683.68 cores=0-7
/proc/4782/task/4784/stat : 4784 (java) R 4780 4780 4250 0 -1 4202560 117681 0 0 0 67638 730 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499790502096 140499875570407 0 4 0 16800975 0 0 0 -1 6 0 0 33 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4785] ppid=4780 vsize=26006188 memory=1380 CPUtime=683.28 cores=0-7
/proc/4782/task/4785/stat : 4785 (java) R 4780 4780 4250 0 -1 4202560 125837 0 0 0 67610 718 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499439945808 140499875570407 0 4 0 16800975 0 0 0 -1 3 0 0 34 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4786] ppid=4780 vsize=26006188 memory=16402816 CPUtime=685.08 cores=0-7
/proc/4782/task/4786/stat : 4786 (java) R 4780 4780 4250 0 -1 4202560 127310 0 0 0 67765 743 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499438893520 140499875570407 0 4 0 16800975 0 0 0 -1 2 0 0 25 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4787] ppid=4780 vsize=26006188 memory=16402588 CPUtime=686.29 cores=0-7
/proc/4782/task/4787/stat : 4787 (java) R 4780 4780 4250 0 -1 4202560 118654 0 0 0 67944 685 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499437840720 140499875570407 0 4 0 16800975 0 0 0 -1 4 0 0 28 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4788] ppid=4780 vsize=26006188 memory=8112282956445269571 CPUtime=684.73 cores=0-7
/proc/4782/task/4788/stat : 4788 (java) R 4780 4780 4250 0 -1 4202560 128965 0 0 0 67781 692 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499436788744 140499875570407 0 4 0 16800975 0 0 0 -1 7 0 0 34 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4789] ppid=4780 vsize=26006188 memory=636 CPUtime=685.55 cores=0-7
/proc/4782/task/4789/stat : 4789 (java) R 4780 4780 4250 0 -1 4202560 98036 0 0 0 67869 686 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499435735632 140499875570407 0 4 0 16800975 0 0 0 -1 0 0 0 29 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4790] ppid=4780 vsize=26006188 memory=1236 CPUtime=684.87 cores=0-7
/proc/4782/task/4790/stat : 4790 (java) R 4780 4780 4250 0 -1 4202560 130812 0 0 0 67788 699 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499434683344 140499875570407 0 4 0 16800975 0 0 0 -1 1 0 0 36 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4791] ppid=4780 vsize=26006188 memory=960 CPUtime=684.53 cores=0-7
/proc/4782/task/4791/stat : 4791 (java) R 4780 4780 4250 0 -1 4202560 130788 0 0 0 67705 748 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499433630936 140499867931737 0 4 0 16800975 0 0 0 -1 5 0 0 28 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4792] ppid=4780 vsize=26006188 memory=2240 CPUtime=18.75 cores=0-7
/proc/4782/task/4792/stat : 4792 (java) S 4780 4780 4250 0 -1 1077944384 550339 0 0 0 1816 59 0 0 20 0 20 0 150145195 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498557874880 140499882952405 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4793] ppid=4780 vsize=26006188 memory=2424 CPUtime=0 cores=0-7
/proc/4782/task/4793/stat : 4793 (java) S 4780 4780 4250 0 -1 1077944384 80 0 0 0 0 0 0 0 20 0 20 0 150145196 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498556822368 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4794] ppid=4780 vsize=26006188 memory=4096 CPUtime=0 cores=0-7
/proc/4782/task/4794/stat : 4794 (java) S 4780 4780 4250 0 -1 1077944384 149 0 0 0 0 0 0 0 20 0 20 0 150145196 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498555769984 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4795] ppid=4780 vsize=26006188 memory=42208 CPUtime=0 cores=0-7
/proc/4782/task/4795/stat : 4795 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498554718288 140499882960795 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4796] ppid=4780 vsize=26006188 memory=2428 CPUtime=2.43 cores=0-7
/proc/4782/task/4796/stat : 4796 (java) S 4780 4780 4250 0 -1 1077944384 15549 0 0 0 241 2 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498553666208 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4797] ppid=4780 vsize=26006188 memory=1292 CPUtime=1.58 cores=0-7
/proc/4782/task/4797/stat : 4797 (java) S 4780 4780 4250 0 -1 1077944384 8590 0 0 0 157 1 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498552613120 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4798] ppid=4780 vsize=26006188 memory=1728 CPUtime=1.78 cores=0-7
/proc/4782/task/4798/stat : 4798 (java) S 4780 4780 4250 0 -1 1077944384 9493 0 0 0 177 1 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498551561120 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4799] ppid=4780 vsize=26006188 memory=12136 CPUtime=0.62 cores=0-7
/proc/4782/task/4799/stat : 4799 (java) S 4780 4780 4250 0 -1 1077944384 9962 0 0 0 60 2 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498550508320 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4800] ppid=4780 vsize=26006188 memory=8112282956445269571 CPUtime=0 cores=0-7
/proc/4782/task/4800/stat : 4800 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498549455200 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4801] ppid=4780 vsize=26006188 memory=42208 CPUtime=0.32 cores=0-7
/proc/4782/task/4801/stat : 4801 (java) S 4780 4780 4250 0 -1 1077944384 1463 0 0 0 17 15 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498548402480 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
Current children cumulated CPU time: 5635.63 s
Current children cumulated vsize: 26015700 KiB
Current children cumulated memory: 16404196 KiB

[startup+842.402 s]
/proc/loadavg: 7.80 7.22 6.33 8/200 4816
/proc/meminfo: memFree=9087884/32770624 swapFree=67108860/67108860
[pid=4780] ppid=4777 vsize=9512 memory=1380 CPUtime=0 cores=0-7
/proc/4780/stat : 4780 (xcsp3-exec) S 4777 4780 4250 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 150145192 9740288 345 33554432000 4194304 5098028 140729911704752 140729911702856 140365399523964 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 18935808 140729911706724 140729911706935 140729911706935 140729911709675 0
/proc/4780/statm: 2378 345 289 221 0 87 0
[pid=4782] ppid=4780 vsize=26006188 memory=16402816 CPUtime=5641.87 cores=0-7
/proc/4782/stat : 4782 (java) S 4780 4780 4250 0 -1 1077944320 1592265 0 0 0 558384 5803 0 0 20 0 20 0 150145193 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140734220979872 140499882942199 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
/proc/4782/statm: 6501547 4100704 3282 1 0 6488781 0
[pid=4782/tid=4783] ppid=4780 vsize=26006188 memory=1380 CPUtime=131.98 cores=0-7
/proc/4782/task/4783/stat : 4783 (java) S 4780 4780 4250 0 -1 1077944384 17317 0 0 0 13173 25 0 0 20 0 20 0 150145193 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499887181696 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4784] ppid=4780 vsize=26006188 memory=8112282956445269571 CPUtime=684.45 cores=0-7
/proc/4782/task/4784/stat : 4784 (java) R 4780 4780 4250 0 -1 4202560 117681 0 0 0 67715 730 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499790502096 140499876038916 0 4 0 16800975 0 0 0 -1 6 0 0 33 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4785] ppid=4780 vsize=26006188 memory=16402816 CPUtime=684.06 cores=0-7
/proc/4782/task/4785/stat : 4785 (java) R 4780 4780 4250 0 -1 4202560 125837 0 0 0 67687 719 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499439946120 140499867931759 0 4 0 16800975 0 0 0 -1 3 0 0 34 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4786] ppid=4780 vsize=26006188 memory=1728 CPUtime=685.87 cores=0-7
/proc/4782/task/4786/stat : 4786 (java) R 4780 4780 4250 0 -1 4202560 127310 0 0 0 67843 744 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499438893520 140499876045841 0 4 0 16800975 0 0 0 -1 2 0 0 25 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4787] ppid=4780 vsize=26006188 memory=16402816 CPUtime=687.06 cores=0-7
/proc/4782/task/4787/stat : 4787 (java) R 4780 4780 4250 0 -1 4202560 118654 0 0 0 68021 685 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499437841032 140499867931677 0 4 0 16800975 0 0 0 -1 4 0 0 28 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4788] ppid=4780 vsize=26006188 memory=1380 CPUtime=685.5 cores=0-7
/proc/4782/task/4788/stat : 4788 (java) R 4780 4780 4250 0 -1 4202560 128965 0 0 0 67858 692 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499436788744 140499876045841 0 4 0 16800975 0 0 0 -1 7 0 0 34 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4789] ppid=4780 vsize=26006188 memory=16402816 CPUtime=686.34 cores=0-7
/proc/4782/task/4789/stat : 4789 (java) R 4780 4780 4250 0 -1 4202560 98036 0 0 0 67947 687 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499435735632 140499876038908 0 4 0 16800975 0 0 0 -1 0 0 0 29 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4790] ppid=4780 vsize=26006188 memory=2428 CPUtime=685.64 cores=0-7
/proc/4782/task/4790/stat : 4790 (java) R 4780 4780 4250 0 -1 4202560 130812 0 0 0 67865 699 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499434683344 140499867931815 0 4 0 16800975 0 0 0 -1 1 0 0 36 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4791] ppid=4780 vsize=26006188 memory=1292 CPUtime=685.33 cores=0-7
/proc/4782/task/4791/stat : 4791 (java) R 4780 4780 4250 0 -1 4202560 130788 0 0 0 67785 748 0 0 20 0 20 0 150145194 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140499433630936 140499867931677 0 4 0 16800975 0 0 0 -1 5 0 0 28 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4792] ppid=4780 vsize=26006188 memory=1728 CPUtime=18.75 cores=0-7
/proc/4782/task/4792/stat : 4792 (java) S 4780 4780 4250 0 -1 1077944384 550339 0 0 0 1816 59 0 0 20 0 20 0 150145195 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498557874880 140499882952405 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4793] ppid=4780 vsize=26006188 memory=12136 CPUtime=0 cores=0-7
/proc/4782/task/4793/stat : 4793 (java) S 4780 4780 4250 0 -1 1077944384 80 0 0 0 0 0 0 0 20 0 20 0 150145196 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498556822368 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4794] ppid=4780 vsize=26006188 memory=1004 CPUtime=0 cores=0-7
/proc/4782/task/4794/stat : 4794 (java) S 4780 4780 4250 0 -1 1077944384 149 0 0 0 0 0 0 0 20 0 20 0 150145196 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498555769984 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4795] ppid=4780 vsize=26006188 memory=1228 CPUtime=0 cores=0-7
/proc/4782/task/4795/stat : 4795 (java) S 4780 4780 4250 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498554718288 140499882960795 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4796] ppid=4780 vsize=26006188 memory=1952 CPUtime=2.43 cores=0-7
/proc/4782/task/4796/stat : 4796 (java) S 4780 4780 4250 0 -1 1077944384 15549 0 0 0 241 2 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498553666208 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4797] ppid=4780 vsize=26006188 memory=5796 CPUtime=1.58 cores=0-7
/proc/4782/task/4797/stat : 4797 (java) S 4780 4780 4250 0 -1 1077944384 8590 0 0 0 157 1 0 0 20 0 20 0 150145198 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498552613120 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4798] ppid=4780 vsize=26006188 memory=4616 CPUtime=1.78 cores=0-7
/proc/4782/task/4798/stat : 4798 (java) S 4780 4780 4250 0 -1 1077944384 9493 0 0 0 177 1 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498551561120 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4799] ppid=4780 vsize=26006188 memory=8620 CPUtime=0.62 cores=0-7
/proc/4782/task/4799/stat : 4799 (java) S 4780 4780 4250 0 -1 1077944384 9962 0 0 0 60 2 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498550508320 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4800] ppid=4780 vsize=26006188 memory=8112282956445269571 CPUtime=0 cores=0-7
/proc/4782/task/4800/stat : 4800 (java) S 4780 4780 4250 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498549455200 140499882952405 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
[pid=4782/tid=4801] ppid=4780 vsize=26006188 memory=6944656592455359580 CPUtime=0.32 cores=0-7
/proc/4782/task/4801/stat : 4801 (java) S 4780 4780 4250 0 -1 1077944384 1463 0 0 0 17 15 0 0 20 0 20 0 150145199 26630336512 4100704 33554432000 4194304 4196468 140734220997328 140498548402480 140499882953346 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 30384128 140734221005970 140734221006147 140734221006147 140734221008847 0
Current children cumulated CPU time: 5641.87 s
Current children cumulated vsize: 26015700 KiB
Current children cumulated memory: 16404196 KiB

[startup+842.801 s]
/proc/loadavg: 7.80 7.22 6.33 8/200 4816
/proc/meminfo: memFree=9087884/32770624 swapFree=67108860/67108860
[pid=4780] ppid=4777 vsize=9512 memory=1380 CPUtime=0 cores=0-7
/proc/4780/stat : 4780 (xcsp3-exec) S 4777 4780 4250 0 -1 4202496 512 0 0 0 0 0 0 0 20 0 1 0 150145192 9740288 345 33554432000 4194304 5098028 140729911704752 140729911702856 140365399523964 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 18935808 140729911706724 140729911706935 140729911706935 140729911709675 0
/proc/4780/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1380 KiB

Child status: 1
Real time (s): 842.835
CPU time (s): 5643.47
CPU user time (s): 5585.35
CPU system time (s): 58.1173
CPU usage (%): 669.582
Max. virtual memory (cumulated for all children) (KiB): 26015700
Max. memory (cumulated for all children) (KiB): 16404196

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 5585.35
system time used= 58.1173
maximum resident set size= 16402956
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 1593372
page faults= 0
swaps= 0
block input operations= 0
block output operations= 1144
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 80567
involuntary context switches= 83061


# summary of solver processes directly reported to runsolver:
#   pid: 4780
#   total CPU time (s): 5643.47
#   total CPU user time (s): 5585.35
#   total CPU system time (s): 58.1173

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 5.62754 second user time and 9.19328 second system time

The end

Launcher Data

Begin job on node148 at 2017-08-19 21:09:43
IDJOB=4281130
IDBENCH=138399
IDSOLVER=2675
FILE ID=node148/4281130-1503170643
RUNJOBID= node148-1503164239-4277
PBS_JOBID= 20630830
Free space on /tmp= 61944 MiB

SOLVER NAME= choco-solver 4.0.5 par
BENCH NAME= XCSP17/SuperSolutions/SuperSolutions-Queens-s1/SuperQueens-14.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 22000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4281130-1503170643/watcher-4281130-1503170643 -o /tmp/evaluation-result-4281130-1503170643/solver-4281130-1503170643 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node148-1503164239-4277 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 22000 -tdir HOME -seed 1311975280 HOME/instance-4281130-1503170643.xml

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

MD5SUM BENCH= e8698b72f1d598ed72051801219b61cc
RANDOM SEED=1311975280

node148.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.19
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.19
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.19
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.19
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:        25508920 kB
MemAvailable:   31976468 kB
Buffers:          294136 kB
Cached:          6467216 kB
SwapCached:            0 kB
Active:          1165000 kB
Inactive:        5648720 kB
Active(anon):       3864 kB
Inactive(anon):    84704 kB
Active(file):    1161136 kB
Inactive(file):  5564016 kB
Unevictable:        7784 kB
Mlocked:            7784 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              8156 kB
Writeback:             0 kB
AnonPages:         60120 kB
Mapped:            51404 kB
Shmem:             33416 kB
Slab:             143444 kB
SReclaimable:     116460 kB
SUnreclaim:        26984 kB
KernelStack:        3136 kB
PageTables:         4712 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     333480 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:      6144 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      126336 kB
DirectMap2M:    33419264 kB

Free space on /tmp at the end= 61936 MiB
End job on node148 at 2017-08-19 21:23:46