Trace number 4271315

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-09)? 1831.64 365.677

General information on the benchmark

NameSuperSolutions/SuperSolutions-Queens-s1/
SuperQueens-02.xml
MD5SUM80353dd8c937a5bb459a24b290639269
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables200
Number of constraints14950
Number of domains1
Minimum domain size100
Maximum domain size100
Distribution of domain sizes[{"size":100,"count":200}]
Minimum variable degree100
Maximum variable degree199
Distribution of variable degrees[{"degree":100,"count":100},{"degree":199,"count":100}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":14950}]
Number of extensional constraints0
Number of intensional constraints14950
Distribution of constraint types[{"type":"intension","count":14950}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.00	c java -server -Xmx22000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4271315-1502809880.xml"  -tl '20160s' -p 8 -x 0
0.12/0.15	c [HOME/instance-4271315-1502809880.xml, -tl, 20160s, -p, 8, -x, 0]
0.12/0.20	c 8 solvers in parallel
0.32/0.27	c parse instance...
1746.95/354.49	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
1746.95/354.50		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
1746.95/354.50		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
1746.95/354.50		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1857)
1746.95/354.50		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
1746.95/354.50		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
1746.95/354.50		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
1746.95/354.50		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
1746.95/354.50		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
1746.95/354.50		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
1746.95/354.50		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
1746.95/354.50		at org.xcsp.parser.XCallbacks$$Lambda$52/1668627309.accept(Unknown Source)
1746.95/354.50		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
1746.95/354.50		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
1746.95/354.50		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
1746.95/354.50		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
1746.95/354.50		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
1746.95/354.50		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
1746.95/354.50		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
1746.95/354.50		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
1746.95/354.50		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
1746.95/354.50		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
1746.95/354.50		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
1831.46/365.58	s UNKNOWN
1831.46/365.58	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 (13311 MiB free)
  memory of node 1: 16384 MiB (13781 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4271315-1502809880/watcher-4271315-1502809880 -o /tmp/evaluation-result-4271315-1502809880/solver-4271315-1502809880 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node149-1502796940-15499 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 22000 -tdir HOME -seed 1826993073 HOME/instance-4271315-1502809880.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=21560, runsolver pid=21557
Current StackSize limit: 8192 KiB


[startup+0.107748 s]*
/proc/loadavg: 3.73 3.70 2.95 2/199 21581
/proc/meminfo: memFree=27727892/32770624 swapFree=67108860/67108860
[pid=21560] ppid=21557 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/21560/stat : 21560 (xcsp3-exec) S 21557 21560 15472 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 114068851 9740288 346 33554432000 4194304 5098028 140728750867568 140728750865672 140440072020604 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26255360 140728750871652 140728750871863 140728750871863 140728750874603 0
/proc/21560/statm: 2378 346 289 221 0 87 0
[pid=21562] ppid=21560 vsize=25999808 memory=27032 CPUtime=0.12 cores=0-7
/proc/21562/stat : 21562 (java) S 21560 21560 15472 0 -1 1077944320 5706 0 0 0 11 1 0 0 20 0 20 0 114068852 26623803392 6758 33554432000 4194304 4196468 140726600130992 140726600113536 140517579943671 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
/proc/21562/statm: 6499952 6758 2845 1 0 6488269 0
[pid=21562/tid=21563] ppid=21560 vsize=25999808 memory=8040503617367481245 CPUtime=0.08 cores=0-7
/proc/21562/task/21563/stat : 21563 (java) R 21560 21560 15472 0 -1 4202560 3705 0 0 0 8 0 0 0 20 0 20 0 114068852 26623803392 6758 33554432000 4194304 4196468 140726600130992 140517584167448 140517579955606 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21564] ppid=21560 vsize=25999808 memory=732370010047790053 CPUtime=0 cores=0-7
/proc/21562/task/21564/stat : 21564 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26623803392 6758 33554432000 4194304 4196468 140726600130992 140517532564368 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21565] ppid=21560 vsize=25999808 memory=139871710336640 CPUtime=0 cores=0-7
/proc/21562/task/21565/stat : 21565 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068853 26623803392 6758 33554432000 4194304 4196468 140726600130992 140517531511568 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21566] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21566/stat : 21566 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26623803392 6758 33554432000 4194304 4196468 140726600130992 140517530459280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21567] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21567/stat : 21567 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26623803392 6823 33554432000 4194304 4196468 140726600130992 140517529406480 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21568] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21568/stat : 21568 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114068853 26623803392 6823 33554432000 4194304 4196468 140726600130992 140517528353168 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21569] ppid=21560 vsize=25999808 memory=-1 CPUtime=0 cores=0-7
/proc/21562/task/21569/stat : 21569 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26623803392 6823 33554432000 4194304 4196468 140726600130992 140517527300368 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21570] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21570/stat : 21570 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068853 26623803392 6823 33554432000 4194304 4196468 140726600130992 140517526248080 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21571] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21571/stat : 21571 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26623803392 6823 33554432000 4194304 4196468 140726600130992 140517525195280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21572] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21572/stat : 21572 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068855 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515852253808 140517579954818 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21573] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21573/stat : 21573 (java) S 21560 21560 15472 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 114068855 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515851199776 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21574] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21574/stat : 21574 (java) S 21560 21560 15472 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 114068855 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515850147440 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21575] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21575/stat : 21575 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068858 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515849095760 140517579962267 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21576] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21576/stat : 21576 (java) S 21560 21560 15472 0 -1 1077944384 310 0 0 0 0 0 0 0 20 0 20 0 114068858 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515848042608 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21577] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21577/stat : 21577 (java) S 21560 21560 15472 0 -1 1077944384 124 0 0 0 0 0 0 0 20 0 20 0 114068858 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515846989808 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21578] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21578/stat : 21578 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114068858 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515845937520 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21579] ppid=21560 vsize=25999808 memory=0 CPUtime=0.01 cores=0-7
/proc/21562/task/21579/stat : 21579 (java) R 21560 21560 15472 0 -1 4202560 304 0 0 0 1 0 0 0 20 0 20 0 114068858 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515844884720 140517558885147 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21580] ppid=21560 vsize=25999808 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21580/stat : 21580 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114068858 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515843832672 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21581] ppid=21560 vsize=25999808 memory=-1 CPUtime=0 cores=0-7
/proc/21562/task/21581/stat : 21581 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068858 26623803392 6823 33554432000 4194304 4196468 140726600130992 140515842779952 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 26009320 KiB
Current children cumulated memory: 28416 KiB

[startup+0.210685 s]*
/proc/loadavg: 3.73 3.70 2.95 1/199 21581
/proc/meminfo: memFree=27718576/32770624 swapFree=67108860/67108860
[pid=21560] ppid=21557 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/21560/stat : 21560 (xcsp3-exec) S 21557 21560 15472 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 114068851 9740288 346 33554432000 4194304 5098028 140728750867568 140728750865672 140440072020604 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26255360 140728750871652 140728750871863 140728750871863 140728750874603 0
/proc/21560/statm: 2378 346 289 221 0 87 0
[pid=21562] ppid=21560 vsize=26004064 memory=38332 CPUtime=0.32 cores=0-7
/proc/21562/stat : 21562 (java) S 21560 21560 15472 0 -1 1077944320 8211 0 0 0 30 2 0 0 20 0 20 0 114068852 26628161536 9583 33554432000 4194304 4196468 140726600130992 140726600113536 140517579943671 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
/proc/21562/statm: 6501016 9583 3036 1 0 6488269 0
[pid=21562/tid=21563] ppid=21560 vsize=26004064 memory=0 CPUtime=0.19 cores=0-7
/proc/21562/task/21563/stat : 21563 (java) R 21560 21560 15472 0 -1 4202560 5440 0 0 0 18 1 0 0 20 0 20 0 114068852 26628161536 9583 33554432000 4194304 4196468 140726600130992 140517584164664 140517564024158 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21564] ppid=21560 vsize=26004064 memory=279743293019896 CPUtime=0 cores=0-7
/proc/21562/task/21564/stat : 21564 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 9638 33554432000 4194304 4196468 140726600130992 140517532564368 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21565] ppid=21560 vsize=26004064 memory=139871710336640 CPUtime=0 cores=0-7
/proc/21562/task/21565/stat : 21565 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 9638 33554432000 4194304 4196468 140726600130992 140517531511568 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21566] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21566/stat : 21566 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 9638 33554432000 4194304 4196468 140726600130992 140517530459280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21567] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21567/stat : 21567 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 9638 33554432000 4194304 4196468 140726600130992 140517529406480 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21568] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21568/stat : 21568 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 9638 33554432000 4194304 4196468 140726600130992 140517528353168 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21569] ppid=21560 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/21562/task/21569/stat : 21569 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 9638 33554432000 4194304 4196468 140726600130992 140517527300368 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21570] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21570/stat : 21570 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 9638 33554432000 4194304 4196468 140726600130992 140517526248080 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21571] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21571/stat : 21571 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 9638 33554432000 4194304 4196468 140726600130992 140517525195280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21572] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21572/stat : 21572 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068855 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515852253808 140517579954818 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21573] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21573/stat : 21573 (java) S 21560 21560 15472 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 114068855 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515851199776 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21574] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21574/stat : 21574 (java) S 21560 21560 15472 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 114068855 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515850147440 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21575] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21575/stat : 21575 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068858 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515849095760 140517579962267 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21576] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21576/stat : 21576 (java) S 21560 21560 15472 0 -1 1077944384 383 0 0 0 0 0 0 0 20 0 20 0 114068858 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515848042608 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21577] ppid=21560 vsize=26004064 memory=0 CPUtime=0.01 cores=0-7
/proc/21562/task/21577/stat : 21577 (java) S 21560 21560 15472 0 -1 1077944384 211 0 0 0 1 0 0 0 20 0 20 0 114068858 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515846989808 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21578] ppid=21560 vsize=26004064 memory=0 CPUtime=0.02 cores=0-7
/proc/21562/task/21578/stat : 21578 (java) S 21560 21560 15472 0 -1 1077944384 132 0 0 0 2 0 0 0 20 0 20 0 114068858 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515845937520 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21579] ppid=21560 vsize=26004064 memory=0 CPUtime=0.07 cores=0-7
/proc/21562/task/21579/stat : 21579 (java) R 21560 21560 15472 0 -1 4202560 739 0 0 0 7 0 0 0 20 0 20 0 114068858 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515844884720 140517560283574 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21580] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21580/stat : 21580 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114068858 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515843832672 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21581] ppid=21560 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/21562/task/21581/stat : 21581 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068858 26628161536 9638 33554432000 4194304 4196468 140726600130992 140515842779952 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
Current children cumulated CPU time: 0.32 s
Current children cumulated vsize: 26013576 KiB
Current children cumulated memory: 39716 KiB

[startup+0.310424 s]*
/proc/loadavg: 3.73 3.70 2.95 2/199 21581
/proc/meminfo: memFree=27711380/32770624 swapFree=67108860/67108860
[pid=21560] ppid=21557 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/21560/stat : 21560 (xcsp3-exec) S 21557 21560 15472 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 114068851 9740288 346 33554432000 4194304 5098028 140728750867568 140728750865672 140440072020604 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26255360 140728750871652 140728750871863 140728750871863 140728750874603 0
/proc/21560/statm: 2378 346 289 221 0 87 0
[pid=21562] ppid=21560 vsize=26004064 memory=43784 CPUtime=0.48 cores=0-7
/proc/21562/stat : 21562 (java) S 21560 21560 15472 0 -1 1077944320 9187 0 0 0 45 3 0 0 20 0 20 0 114068852 26628161536 10946 33554432000 4194304 4196468 140726600130992 140726600113536 140517579943671 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
/proc/21562/statm: 6501016 10946 3109 1 0 6488269 0
[pid=21562/tid=21563] ppid=21560 vsize=26004064 memory=6791534058613427641 CPUtime=0.28 cores=0-7
/proc/21562/task/21563/stat : 21563 (java) R 21560 21560 15472 0 -1 4202560 6140 0 0 0 26 2 0 0 20 0 20 0 114068852 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517584181408 140517579965597 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21564] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21564/stat : 21564 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517532564368 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21565] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21565/stat : 21565 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517531511568 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21566] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21566/stat : 21566 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517530459280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21567] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21567/stat : 21567 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517529406480 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21568] ppid=21560 vsize=26004064 memory=2244 CPUtime=0 cores=0-7
/proc/21562/task/21568/stat : 21568 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517528353168 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21569] ppid=21560 vsize=26004064 memory=139871582778287 CPUtime=0 cores=0-7
/proc/21562/task/21569/stat : 21569 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517527300368 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21570] ppid=21560 vsize=26004064 memory=139871582780592 CPUtime=0 cores=0-7
/proc/21562/task/21570/stat : 21570 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517526248080 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21571] ppid=21560 vsize=26004064 memory=139871582782896 CPUtime=0 cores=0-7
/proc/21562/task/21571/stat : 21571 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628161536 10946 33554432000 4194304 4196468 140726600130992 140517525195280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21572] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21572/stat : 21572 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068855 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515852253808 140517579954818 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21573] ppid=21560 vsize=26004064 memory=279743165572752 CPUtime=0 cores=0-7
/proc/21562/task/21573/stat : 21573 (java) S 21560 21560 15472 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 114068855 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515851199776 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21574] ppid=21560 vsize=26004064 memory=279743165579664 CPUtime=0 cores=0-7
/proc/21562/task/21574/stat : 21574 (java) S 21560 21560 15472 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 114068855 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515850147440 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21575] ppid=21560 vsize=26004064 memory=279743165520944 CPUtime=0 cores=0-7
/proc/21562/task/21575/stat : 21575 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068858 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515849095760 140517579962267 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21576] ppid=21560 vsize=26004064 memory=279743165593488 CPUtime=0.01 cores=0-7
/proc/21562/task/21576/stat : 21576 (java) S 21560 21560 15472 0 -1 1077944384 460 0 0 0 1 0 0 0 20 0 20 0 114068858 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515848042608 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21577] ppid=21560 vsize=26004064 memory=279743165600400 CPUtime=0.02 cores=0-7
/proc/21562/task/21577/stat : 21577 (java) S 21560 21560 15472 0 -1 1077944384 244 0 0 0 2 0 0 0 20 0 20 0 114068858 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515846989808 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21578] ppid=21560 vsize=26004064 memory=279743165598096 CPUtime=0.02 cores=0-7
/proc/21562/task/21578/stat : 21578 (java) S 21560 21560 15472 0 -1 1077944384 142 0 0 0 2 0 0 0 20 0 20 0 114068858 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515845937520 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21579] ppid=21560 vsize=26004064 memory=279743165614256 CPUtime=0.12 cores=0-7
/proc/21562/task/21579/stat : 21579 (java) R 21560 21560 15472 0 -1 4202560 892 0 0 0 12 0 0 0 20 0 20 0 114068858 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515844881088 140517565109310 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21580] ppid=21560 vsize=26004064 memory=0 CPUtime=0 cores=0-7
/proc/21562/task/21580/stat : 21580 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 114068858 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515843832672 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21581] ppid=21560 vsize=26004064 memory=-1 CPUtime=0 cores=0-7
/proc/21562/task/21581/stat : 21581 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068858 26628161536 10946 33554432000 4194304 4196468 140726600130992 140515842779952 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
Current children cumulated CPU time: 0.48 s
Current children cumulated vsize: 26013576 KiB
Current children cumulated memory: 45168 KiB

[startup+0.700998 s]
/proc/loadavg: 3.73 3.70 2.95 4/199 21581
/proc/meminfo: memFree=27685188/32770624 swapFree=67108860/67108860
[pid=21560] ppid=21557 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/21560/stat : 21560 (xcsp3-exec) S 21557 21560 15472 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 114068851 9740288 346 33554432000 4194304 5098028 140728750867568 140728750865672 140440072020604 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26255360 140728750871652 140728750871863 140728750871863 140728750874603 0
/proc/21560/statm: 2378 346 289 221 0 87 0
[pid=21562] ppid=21560 vsize=26004140 memory=162764 CPUtime=1.99 cores=0-7
/proc/21562/stat : 21562 (java) S 21560 21560 15472 0 -1 1077944320 13356 0 0 0 193 6 0 0 20 0 20 0 114068852 26628239360 40691 33554432000 4194304 4196468 140726600130992 140726600113536 140517579943671 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
/proc/21562/statm: 6501035 40691 3199 1 0 6488269 0
[pid=21562/tid=21563] ppid=21560 vsize=26004140 memory=279743165909120 CPUtime=0.66 cores=0-7
/proc/21562/task/21563/stat : 21563 (java) R 21560 21560 15472 0 -1 4202560 6482 0 0 0 62 4 0 0 20 0 20 0 114068852 26628239360 40691 33554432000 4194304 4196468 140726600130992 140517584178192 140517190539244 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21564] ppid=21560 vsize=26004140 memory=1224 CPUtime=0 cores=0-7
/proc/21562/task/21564/stat : 21564 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628239360 40691 33554432000 4194304 4196468 140726600130992 140517532564368 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21565] ppid=21560 vsize=26004140 memory=12032 CPUtime=0 cores=0-7
/proc/21562/task/21565/stat : 21565 (java) S 21560 21560 15472 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 114068853 26628239360 40691 33554432000 4194304 4196468 140726600130992 140517531511568 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21566] ppid=21560 vsize=26004140 memory=5792 CPUtime=0 cores=0-7
/proc/21562/task/21566/stat : 21566 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 114068853 26628239360 40691 33554432000 4194304 4196468 140726600130992 140517530459280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0

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

[pid=21562/tid=21563] ppid=21560 vsize=26072752 memory=32332 CPUtime=144.15 cores=0-7
/proc/21562/task/21563/stat : 21563 (java) S 21560 21560 15472 0 -1 1077944384 16092 0 0 0 14395 20 0 0 20 0 21 0 114068852 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517584184352 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21564] ppid=21560 vsize=26072752 memory=1296 CPUtime=207.54 cores=0-7
/proc/21562/task/21564/stat : 21564 (java) R 21560 21560 15472 0 -1 4202560 161932 0 0 0 20119 635 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517532564176 140517572571879 0 4 0 16800975 0 0 0 -1 2 0 0 41 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21565] ppid=21560 vsize=26072752 memory=6791534058613427641 CPUtime=208.2 cores=0-7
/proc/21562/task/21565/stat : 21565 (java) R 21560 21560 15472 0 -1 4202560 115120 0 0 0 20153 667 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517531511376 140517572571879 0 4 0 16800975 0 0 0 -1 4 0 0 35 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21566] ppid=21560 vsize=26072752 memory=960 CPUtime=207.23 cores=0-7
/proc/21562/task/21566/stat : 21566 (java) R 21560 21560 15472 0 -1 4202560 87171 0 0 0 20085 638 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517530459400 140517572571879 0 4 0 16800975 0 0 0 -1 0 0 0 38 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21567] ppid=21560 vsize=26072752 memory=2424 CPUtime=207.46 cores=0-7
/proc/21562/task/21567/stat : 21567 (java) R 21560 21560 15472 0 -1 4202560 109402 0 0 0 20140 606 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517529406288 140517572571879 0 4 0 16800975 0 0 0 -1 3 0 0 40 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21568] ppid=21560 vsize=26072752 memory=932 CPUtime=206.62 cores=0-7
/proc/21562/task/21568/stat : 21568 (java) R 21560 21560 15472 0 -1 4202560 76022 0 0 0 20053 609 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517528352976 140517572571879 0 4 0 16800975 0 0 0 -1 5 0 0 37 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21569] ppid=21560 vsize=26072752 memory=-7003737579269690708 CPUtime=206.75 cores=0-7
/proc/21562/task/21569/stat : 21569 (java) R 21560 21560 15472 0 -1 4202560 78090 0 0 0 20048 627 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517527300176 140517572571879 0 4 0 16800975 0 0 0 -1 1 0 0 35 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21570] ppid=21560 vsize=26072752 memory=15995080 CPUtime=207.86 cores=0-7
/proc/21562/task/21570/stat : 21570 (java) R 21560 21560 15472 0 -1 4202560 106271 0 0 0 20176 610 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517526248280 140517573040380 0 4 0 16800975 0 0 0 -1 6 0 0 36 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21571] ppid=21560 vsize=26072752 memory=2424 CPUtime=206.73 cores=0-7
/proc/21562/task/21571/stat : 21571 (java) R 21560 21560 15472 0 -1 4202560 100393 0 0 0 20064 609 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517525195400 140517572571879 0 4 0 16800975 0 0 0 -1 7 0 0 37 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21572] ppid=21560 vsize=26072752 memory=932 CPUtime=6.26 cores=0-7
/proc/21562/task/21572/stat : 21572 (java) S 21560 21560 15472 0 -1 1077944384 183003 0 0 0 603 23 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515852252352 140517579953877 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21573] ppid=21560 vsize=26072752 memory=6791534058613427641 CPUtime=0 cores=0-7
/proc/21562/task/21573/stat : 21573 (java) S 21560 21560 15472 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515851199840 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21574] ppid=21560 vsize=26072752 memory=1296 CPUtime=0 cores=0-7
/proc/21562/task/21574/stat : 21574 (java) S 21560 21560 15472 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515850147456 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21575] ppid=21560 vsize=26072752 memory=2408 CPUtime=0 cores=0-7
/proc/21562/task/21575/stat : 21575 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515849095760 140517579962267 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21576] ppid=21560 vsize=26072752 memory=1732 CPUtime=1.78 cores=0-7
/proc/21562/task/21576/stat : 21576 (java) S 21560 21560 15472 0 -1 1077944384 9223 0 0 0 176 2 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515848042656 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21577] ppid=21560 vsize=26072752 memory=1224 CPUtime=2.45 cores=0-7
/proc/21562/task/21577/stat : 21577 (java) S 21560 21560 15472 0 -1 1077944384 11540 0 0 0 243 2 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515846989856 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21578] ppid=21560 vsize=26072752 memory=12032 CPUtime=1.06 cores=0-7
/proc/21562/task/21578/stat : 21578 (java) S 21560 21560 15472 0 -1 1077944384 6879 0 0 0 105 1 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515845937280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21579] ppid=21560 vsize=26072752 memory=5792 CPUtime=0.56 cores=0-7
/proc/21562/task/21579/stat : 21579 (java) S 21560 21560 15472 0 -1 1077944384 4346 0 0 0 55 1 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515844884768 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21580] ppid=21560 vsize=26072752 memory=796 CPUtime=0 cores=0-7
/proc/21562/task/21580/stat : 21580 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515843832672 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21581] ppid=21560 vsize=26072752 memory=1436 CPUtime=0.12 cores=0-7
/proc/21562/task/21581/stat : 21581 (java) S 21560 21560 15472 0 -1 1077944384 1597 0 0 0 6 6 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515842779952 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21614] ppid=21560 vsize=26072752 memory=1012 CPUtime=0 cores=0-7
/proc/21562/task/21614/stat : 21614 (java) S 21560 21560 15472 0 -1 1077944384 25 0 0 0 0 0 0 0 20 0 21 0 114104302 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515834773440 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
Current children cumulated CPU time: 1814.93 s
Current children cumulated vsize: 26082264 KiB
Current children cumulated memory: 15996464 KiB

[startup+364.801 s]
/proc/loadavg: 7.33 4.87 3.54 9/201 21614
/proc/meminfo: memFree=11734188/32770624 swapFree=67108860/67108860
[pid=21560] ppid=21557 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/21560/stat : 21560 (xcsp3-exec) S 21557 21560 15472 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 114068851 9740288 346 33554432000 4194304 5098028 140728750867568 140728750865672 140440072020604 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26255360 140728750871652 140728750871863 140728750871863 140728750874603 0
/proc/21560/statm: 2378 346 289 221 0 87 0
[pid=21562] ppid=21560 vsize=26072752 memory=15995080 CPUtime=1827.29 cores=0-7
/proc/21562/stat : 21562 (java) S 21560 21560 15472 0 -1 1077944320 1069672 0 0 0 177665 5064 0 0 20 0 21 0 114068852 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140726600113536 140517579943671 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
/proc/21562/statm: 6518188 3998770 3276 1 0 6505422 0
[pid=21562/tid=21563] ppid=21560 vsize=26072752 memory=15995032 CPUtime=144.15 cores=0-7
/proc/21562/task/21563/stat : 21563 (java) S 21560 21560 15472 0 -1 1077944384 16092 0 0 0 14395 20 0 0 20 0 21 0 114068852 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517584184352 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21564] ppid=21560 vsize=26072752 memory=1384 CPUtime=209.07 cores=0-7
/proc/21562/task/21564/stat : 21564 (java) R 21560 21560 15472 0 -1 4202560 161932 0 0 0 20272 635 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517532564176 140517572571879 0 4 0 16800975 0 0 0 -1 2 0 0 41 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21565] ppid=21560 vsize=26072752 memory=1792 CPUtime=209.74 cores=0-7
/proc/21562/task/21565/stat : 21565 (java) R 21560 21560 15472 0 -1 4202560 115120 0 0 0 20306 668 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517531511376 140517572571879 0 4 0 16800975 0 0 0 -1 4 0 0 35 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21566] ppid=21560 vsize=26072752 memory=648 CPUtime=208.77 cores=0-7
/proc/21562/task/21566/stat : 21566 (java) R 21560 21560 15472 0 -1 4202560 87171 0 0 0 20238 639 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517530459088 140517572571879 0 4 0 16800975 0 0 0 -1 0 0 0 38 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21567] ppid=21560 vsize=26072752 memory=1384 CPUtime=208.99 cores=0-7
/proc/21562/task/21567/stat : 21567 (java) R 21560 21560 15472 0 -1 4202560 109402 0 0 0 20293 606 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517529406288 140517572571879 0 4 0 16800975 0 0 0 -1 3 0 0 40 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21568] ppid=21560 vsize=26072752 memory=6791534058613427641 CPUtime=208.16 cores=0-7
/proc/21562/task/21568/stat : 21568 (java) R 21560 21560 15472 0 -1 4202560 76022 0 0 0 20206 610 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517528352976 140517572571879 0 4 0 16800975 0 0 0 -1 5 0 0 37 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21569] ppid=21560 vsize=26072752 memory=15995080 CPUtime=208.3 cores=0-7
/proc/21562/task/21569/stat : 21569 (java) R 21560 21560 15472 0 -1 4202560 78090 0 0 0 20202 628 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517527300176 140517572571879 0 4 0 16800975 0 0 0 -1 1 0 0 35 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21570] ppid=21560 vsize=26072752 memory=279743165366512 CPUtime=209.46 cores=0-7
/proc/21562/task/21570/stat : 21570 (java) R 21560 21560 15472 0 -1 4202560 107506 0 0 0 20336 610 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517526248280 140517564643502 0 4 0 16800975 0 0 0 -1 6 0 0 36 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21571] ppid=21560 vsize=26072752 memory=279743165366512 CPUtime=208.25 cores=0-7
/proc/21562/task/21571/stat : 21571 (java) R 21560 21560 15472 0 -1 4202560 100393 0 0 0 20216 609 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517525195400 140517572571879 0 4 0 16800975 0 0 0 -1 7 0 0 37 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21572] ppid=21560 vsize=26072752 memory=279743167430976 CPUtime=6.26 cores=0-7
/proc/21562/task/21572/stat : 21572 (java) S 21560 21560 15472 0 -1 1077944384 183003 0 0 0 603 23 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515852252352 140517579953877 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21573] ppid=21560 vsize=26072752 memory=6656426216303648864 CPUtime=0 cores=0-7
/proc/21562/task/21573/stat : 21573 (java) S 21560 21560 15472 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515851199840 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21574] ppid=21560 vsize=26072752 memory=4956 CPUtime=0 cores=0-7
/proc/21562/task/21574/stat : 21574 (java) S 21560 21560 15472 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515850147456 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21575] ppid=21560 vsize=26072752 memory=1152 CPUtime=0 cores=0-7
/proc/21562/task/21575/stat : 21575 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515849095760 140517579962267 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21576] ppid=21560 vsize=26072752 memory=12032 CPUtime=1.78 cores=0-7
/proc/21562/task/21576/stat : 21576 (java) S 21560 21560 15472 0 -1 1077944384 9223 0 0 0 176 2 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515848042656 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21577] ppid=21560 vsize=26072752 memory=5792 CPUtime=2.45 cores=0-7
/proc/21562/task/21577/stat : 21577 (java) S 21560 21560 15472 0 -1 1077944384 11540 0 0 0 243 2 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515846989856 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21578] ppid=21560 vsize=26072752 memory=796 CPUtime=1.06 cores=0-7
/proc/21562/task/21578/stat : 21578 (java) S 21560 21560 15472 0 -1 1077944384 6879 0 0 0 105 1 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515845937280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21579] ppid=21560 vsize=26072752 memory=1436 CPUtime=0.56 cores=0-7
/proc/21562/task/21579/stat : 21579 (java) S 21560 21560 15472 0 -1 1077944384 4346 0 0 0 55 1 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515844884768 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21580] ppid=21560 vsize=26072752 memory=1012 CPUtime=0 cores=0-7
/proc/21562/task/21580/stat : 21580 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515843832672 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21581] ppid=21560 vsize=26072752 memory=6791534058613427641 CPUtime=0.12 cores=0-7
/proc/21562/task/21581/stat : 21581 (java) S 21560 21560 15472 0 -1 1077944384 1597 0 0 0 6 6 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515842779952 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21614] ppid=21560 vsize=26072752 memory=15995032 CPUtime=0 cores=0-7
/proc/21562/task/21614/stat : 21614 (java) S 21560 21560 15472 0 -1 1077944384 25 0 0 0 0 0 0 0 20 0 21 0 114104302 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515834773440 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
Current children cumulated CPU time: 1827.29 s
Current children cumulated vsize: 26082264 KiB
Current children cumulated memory: 15996464 KiB

[startup+365.201 s]
/proc/loadavg: 7.39 4.92 3.56 8/201 21614
/proc/meminfo: memFree=11734188/32770624 swapFree=67108860/67108860
[pid=21560] ppid=21557 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/21560/stat : 21560 (xcsp3-exec) S 21557 21560 15472 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 114068851 9740288 346 33554432000 4194304 5098028 140728750867568 140728750865672 140440072020604 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26255360 140728750871652 140728750871863 140728750871863 140728750874603 0
/proc/21560/statm: 2378 346 289 221 0 87 0
[pid=21562] ppid=21560 vsize=26072752 memory=15995080 CPUtime=1830.38 cores=0-7
/proc/21562/stat : 21562 (java) S 21560 21560 15472 0 -1 1077944320 1069847 0 0 0 177972 5066 0 0 20 0 21 0 114068852 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140726600113536 140517579943671 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
/proc/21562/statm: 6518188 3998770 3276 1 0 6505422 0
[pid=21562/tid=21563] ppid=21560 vsize=26072752 memory=6508 CPUtime=144.15 cores=0-7
/proc/21562/task/21563/stat : 21563 (java) S 21560 21560 15472 0 -1 1077944384 16092 0 0 0 14395 20 0 0 20 0 21 0 114068852 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517584184352 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21564] ppid=21560 vsize=26072752 memory=844 CPUtime=209.47 cores=0-7
/proc/21562/task/21564/stat : 21564 (java) R 21560 21560 15472 0 -1 4202560 161932 0 0 0 20311 636 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517532564176 140517572571879 0 4 0 16800975 0 0 0 -1 2 0 0 41 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21565] ppid=21560 vsize=26072752 memory=1692 CPUtime=210.13 cores=0-7
/proc/21562/task/21565/stat : 21565 (java) R 21560 21560 15472 0 -1 4202560 115120 0 0 0 20345 668 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517531511376 140517572571879 0 4 0 16800975 0 0 0 -1 4 0 0 35 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21566] ppid=21560 vsize=26072752 memory=1384 CPUtime=209.16 cores=0-7
/proc/21562/task/21566/stat : 21566 (java) R 21560 21560 15472 0 -1 4202560 87171 0 0 0 20277 639 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517530459088 140517572571879 0 4 0 16800975 0 0 0 -1 0 0 0 38 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21567] ppid=21560 vsize=26072752 memory=1384 CPUtime=209.38 cores=0-7
/proc/21562/task/21567/stat : 21567 (java) R 21560 21560 15472 0 -1 4202560 109402 0 0 0 20331 607 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517529406600 140517572571879 0 4 0 16800975 0 0 0 -1 7 0 0 40 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21568] ppid=21560 vsize=26072752 memory=1384 CPUtime=208.55 cores=0-7
/proc/21562/task/21568/stat : 21568 (java) R 21560 21560 15472 0 -1 4202560 76022 0 0 0 20245 610 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517528352976 140517572571879 0 4 0 16800975 0 0 0 -1 5 0 0 37 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21569] ppid=21560 vsize=26072752 memory=1692 CPUtime=208.68 cores=0-7
/proc/21562/task/21569/stat : 21569 (java) R 21560 21560 15472 0 -1 4202560 78090 0 0 0 20240 628 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517527300176 140517572571879 0 4 0 16800975 0 0 0 -1 1 0 0 35 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21570] ppid=21560 vsize=26072752 memory=916 CPUtime=209.86 cores=0-7
/proc/21562/task/21570/stat : 21570 (java) R 21560 21560 15472 0 -1 4202560 107681 0 0 0 20376 610 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517526248280 140517573040132 0 4 0 16800975 0 0 0 -1 6 0 0 36 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21571] ppid=21560 vsize=26072752 memory=4956 CPUtime=208.62 cores=0-7
/proc/21562/task/21571/stat : 21571 (java) R 21560 21560 15472 0 -1 4202560 100393 0 0 0 20253 609 0 0 20 0 21 0 114068853 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140517525195088 140517572571879 0 4 0 16800975 0 0 0 -1 3 0 0 37 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21572] ppid=21560 vsize=26072752 memory=1152 CPUtime=6.26 cores=0-7
/proc/21562/task/21572/stat : 21572 (java) S 21560 21560 15472 0 -1 1077944384 183003 0 0 0 603 23 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515852252352 140517579953877 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21573] ppid=21560 vsize=26072752 memory=5372 CPUtime=0 cores=0-7
/proc/21562/task/21573/stat : 21573 (java) S 21560 21560 15472 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515851199840 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21574] ppid=21560 vsize=26072752 memory=1384 CPUtime=0 cores=0-7
/proc/21562/task/21574/stat : 21574 (java) S 21560 21560 15472 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 21 0 114068855 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515850147456 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21575] ppid=21560 vsize=26072752 memory=15995080 CPUtime=0 cores=0-7
/proc/21562/task/21575/stat : 21575 (java) S 21560 21560 15472 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515849095760 140517579962267 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21576] ppid=21560 vsize=26072752 memory=4104 CPUtime=1.78 cores=0-7
/proc/21562/task/21576/stat : 21576 (java) S 21560 21560 15472 0 -1 1077944384 9223 0 0 0 176 2 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515848042656 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21577] ppid=21560 vsize=26072752 memory=15994820 CPUtime=2.45 cores=0-7
/proc/21562/task/21577/stat : 21577 (java) S 21560 21560 15472 0 -1 1077944384 11540 0 0 0 243 2 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515846989856 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21578] ppid=21560 vsize=26072752 memory=15994800 CPUtime=1.06 cores=0-7
/proc/21562/task/21578/stat : 21578 (java) S 21560 21560 15472 0 -1 1077944384 6879 0 0 0 105 1 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515845937280 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21579] ppid=21560 vsize=26072752 memory=932 CPUtime=0.56 cores=0-7
/proc/21562/task/21579/stat : 21579 (java) S 21560 21560 15472 0 -1 1077944384 4346 0 0 0 55 1 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515844884768 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21580] ppid=21560 vsize=26072752 memory=288230574492221466 CPUtime=0 cores=0-7
/proc/21562/task/21580/stat : 21580 (java) S 21560 21560 15472 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515843832672 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21581] ppid=21560 vsize=26072752 memory=288230621803970871 CPUtime=0.12 cores=0-7
/proc/21562/task/21581/stat : 21581 (java) S 21560 21560 15472 0 -1 1077944384 1597 0 0 0 6 6 0 0 20 0 21 0 114068858 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515842779952 140517579954818 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
[pid=21562/tid=21614] ppid=21560 vsize=26072752 memory=-7003737579269690708 CPUtime=0 cores=0-7
/proc/21562/task/21614/stat : 21614 (java) S 21560 21560 15472 0 -1 1077944384 25 0 0 0 0 0 0 0 20 0 21 0 114104302 26698498048 3998770 33554432000 4194304 4196468 140726600130992 140515834773440 140517579953877 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 11120640 140726600135826 140726600136003 140726600136003 140726600138703 0
Current children cumulated CPU time: 1830.38 s
Current children cumulated vsize: 26082264 KiB
Current children cumulated memory: 15996464 KiB

[startup+365.601 s]
/proc/loadavg: 7.39 4.92 3.56 8/201 21614
/proc/meminfo: memFree=11734188/32770624 swapFree=67108860/67108860
[pid=21560] ppid=21557 vsize=9512 memory=1384 CPUtime=0 cores=0-7
/proc/21560/stat : 21560 (xcsp3-exec) S 21557 21560 15472 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 114068851 9740288 346 33554432000 4194304 5098028 140728750867568 140728750865672 140440072020604 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26255360 140728750871652 140728750871863 140728750871863 140728750874603 0
/proc/21560/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1384 KiB

Child status: 1
Real time (s): 365.677
CPU time (s): 1831.64
CPU user time (s): 1780.89
CPU system time (s): 50.752
CPU usage (%): 500.89
Max. virtual memory (cumulated for all children) (KiB): 26082264
Max. memory (cumulated for all children) (KiB): 15996464

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1780.89
system time used= 50.752
maximum resident set size= 15995436
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 1080544
page faults= 0
swaps= 0
block input operations= 0
block output operations= 640
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 63390
involuntary context switches= 55098


# summary of solver processes directly reported to runsolver:
#   pid: 21560
#   total CPU time (s): 1831.64
#   total CPU user time (s): 1780.89
#   total CPU system time (s): 50.752

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.54578 second user time and 3.76697 second system time

The end

Launcher Data

Begin job on node149 at 2017-08-15 16:57:01
IDJOB=4271315
IDBENCH=138396
IDSOLVER=2662
FILE ID=node149/4271315-1502809880
RUNJOBID= node149-1502796940-15499
PBS_JOBID= 20629816
Free space on /tmp= 61940 MiB

SOLVER NAME= choco-solver 4.0.5 par
BENCH NAME= XCSP17/SuperSolutions/SuperSolutions-Queens-s1/SuperQueens-02.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-4271315-1502809880/watcher-4271315-1502809880 -o /tmp/evaluation-result-4271315-1502809880/solver-4271315-1502809880 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node149-1502796940-15499 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 22000 -tdir HOME -seed 1826993073 HOME/instance-4271315-1502809880.xml

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

MD5SUM BENCH= 80353dd8c937a5bb459a24b290639269
RANDOM SEED=1826993073

node149.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.43
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.43
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.43
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.43
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:        27744124 kB
MemAvailable:   31965504 kB
Buffers:          324156 kB
Cached:          4169064 kB
SwapCached:            0 kB
Active:          1195256 kB
Inactive:        3353920 kB
Active(anon):      58468 kB
Inactive(anon):    24956 kB
Active(file):    1136788 kB
Inactive(file):  3328964 kB
Unevictable:        6348 kB
Mlocked:            6348 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              8860 kB
Writeback:             0 kB
AnonPages:         71760 kB
Mapped:            46220 kB
Shmem:             25224 kB
Slab:             170456 kB
SReclaimable:     142928 kB
SUnreclaim:        27528 kB
KernelStack:        3520 kB
PageTables:         5136 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     324320 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     16384 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:       97664 kB
DirectMap2M:    33447936 kB

Free space on /tmp at the end= 61932 MiB
End job on node149 at 2017-08-15 17:03:07