Trace number 4292231

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
Choco-solver 4.0.7 seq (493a269)? 347.512 306.392

General information on the benchmark

NameCrosswordDesign/
CrosswordDesign-09-4-rom_c18.xml
MD5SUM687e226d0bfa9953b2ddd48681aeb13c
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT
Best value of the objective obtained on this benchmark77
Best CPU time to get the best result obtained on this benchmark2520.58
Satisfiable
(Un)Satisfiability was proved
Number of variables297
Number of constraints72
Number of domains5
Minimum domain size2
Maximum domain size84486
Distribution of domain sizes[{"size":2,"count":18},{"size":10,"count":126},{"size":27,"count":81},{"size":84486,"count":72}]
Minimum variable degree1
Maximum variable degree8
Distribution of variable degrees[{"degree":1,"count":90},{"degree":2,"count":126},{"degree":8,"count":81}]
Minimum constraint arity12
Maximum constraint arity13
Distribution of constraint arities[{"arity":12,"count":18},{"arity":13,"count":54}]
Number of extensional constraints72
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":72}]
Optimization problemYES
Type of objectivemax SUM

Solver Data

0.00/0.00	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4292231-1532334045.xml"  -tl '2400s' -p 1 -x 0
0.11/0.17	c Choco 493a269
0.11/0.18	c [HOME/instance-4292231-1532334045.xml, -tl, 2400s, -p, 1, -x, 0]
0.11/0.21	c simple solver
0.33/0.28	c parse instance...
333.93/302.74	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
333.93/302.74		at org.chocosolver.solver.constraints.extension.nary.PropCompactTableStar.computeSupports(PropCompactTableStar.java:80)
333.93/302.74		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
333.93/302.74		at org.chocosolver.solver.constraints.extension.nary.PropCompactTableStar.<init>(PropCompactTableStar.java:45)
333.93/302.74		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2012)
333.93/302.74		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1970)
333.93/302.74		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:315)
333.93/302.74		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
333.93/302.74		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
341.64/304.75		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
341.64/304.75		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
341.64/304.75		at org.xcsp.parser.XCallbacks$$Lambda$98/1629911510.accept(Unknown Source)
341.64/304.75		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
341.64/304.75		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
341.64/304.75		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
341.64/304.75		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1414)
341.64/304.75		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
341.64/304.75		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
341.64/304.75		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
341.64/304.75		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
341.64/304.75		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
341.64/304.75		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:107)
341.64/304.75		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:94)
341.64/304.75		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
347.41/306.31	s UNKNOWN
347.41/306.31	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 (11359 MiB free)
  memory of node 1: 16384 MiB (13736 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4292231-1532334045/watcher-4292231-1532334045 -o /tmp/evaluation-result-4292231-1532334045/solver-4292231-1532334045 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node134-1532328652-14414 --watchdog 2560 HOME/xcsp3-exec -seed 1828007844 -dir HOME -tl 2400 -ml 11000 -p 1 HOME/instance-4292231-1532334045.xml 

running on 4 cores: 1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
solver pid=15401, runsolver pid=15398
Current StackSize limit: 8192 KiB


[startup+0.102043 s]*
/proc/loadavg: 2.04 2.09 2.05 3/221 15417
/proc/meminfo: memFree=25681420/32770624 swapFree=67108860/67108860
[pid=15401] ppid=15398 vsize=113128 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0
[pid=15403] ppid=15401 vsize=14082840 memory=28464 CPUtime=0.11 cores=1,3,5,7
/proc/15403/stat : 15403 (java) S 15401 15401 14382 0 -1 1077944320 5474 0 0 0 10 1 0 0 20 0 15 0 50967729 14420828160 7116 33554432000 4194304 4196468 140732636422288 140732636404832 139935919419127 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
/proc/15403/statm: 3520710 7116 3001 1 0 3483008 0
[pid=15403/tid=15404] ppid=15401 vsize=14082840 memory=-6962121287837372198 CPUtime=0.09 cores=1,3,5,7
/proc/15403/task/15404/stat : 15404 (java) R 15401 15401 14382 0 -1 4202560 3485 0 0 0 8 1 0 0 20 0 15 0 50967729 14420828160 7116 33554432000 4194304 4196468 140732636422288 139935923652400 139935919431062 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15405] ppid=15401 vsize=14082840 memory=-3689349214911541841 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15405/stat : 15405 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14420828160 7116 33554432000 4194304 4196468 140732636422288 139935875971856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15406] ppid=15401 vsize=14082840 memory=140626253190784 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15406/stat : 15406 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14420828160 7116 33554432000 4194304 4196468 140732636422288 139935874919312 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15407] ppid=15401 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15407/stat : 15407 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14420828160 7116 33554432000 4194304 4196468 140732636422288 139935512718352 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15408] ppid=15401 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15408/stat : 15408 (java) S 15401 15401 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 50967730 14420828160 7116 33554432000 4194304 4196468 140732636422288 139935511665808 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15409] ppid=15401 vsize=14082840 memory=140626253190784 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15409/stat : 15409 (java) S 15401 15401 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 50967731 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935393597424 139935919430274 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15410] ppid=15401 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15410/stat : 15410 (java) S 15401 15401 14382 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 50967731 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935392543648 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15411] ppid=15401 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15411/stat : 15411 (java) S 15401 15401 14382 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 50967732 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935391491056 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15412] ppid=15401 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15412/stat : 15412 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935390439632 139935919437723 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15413] ppid=15401 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15413/stat : 15413 (java) S 15401 15401 14382 0 -1 1077944384 421 0 0 0 0 0 0 0 20 0 15 0 50967734 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935389387248 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15414] ppid=15401 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15414/stat : 15414 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935388334704 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15415] ppid=15401 vsize=14082840 memory=140626253190784 CPUtime=0.01 cores=1,3,5,7
/proc/15403/task/15415/stat : 15415 (java) R 15401 15401 14382 0 -1 4202560 269 0 0 0 1 0 0 0 20 0 15 0 50967734 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935387282160 139935919431062 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15416] ppid=15401 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15416/stat : 15416 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935386229856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15417] ppid=15401 vsize=14082840 memory=140626253190784 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15417/stat : 15417 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967734 14420828160 7181 33554432000 4194304 4196468 140732636422288 139935385176368 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
Current children cumulated CPU time: 0.11 s
Current children cumulated vsize: 14195968 KiB
Current children cumulated memory: 29920 KiB

[startup+0.21086 s]*
/proc/loadavg: 2.04 2.09 2.05 3/221 15417
/proc/meminfo: memFree=25667464/32770624 swapFree=67108860/67108860
[pid=15401] ppid=15398 vsize=113128 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0
[pid=15403] ppid=15401 vsize=14082840 memory=40776 CPUtime=0.33 cores=1,3,5,7
/proc/15403/stat : 15403 (java) S 15401 15401 14382 0 -1 1077944320 8264 0 0 0 31 2 0 0 20 0 15 0 50967729 14420828160 10194 33554432000 4194304 4196468 140732636422288 140732636404832 139935919419127 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
/proc/15403/statm: 3520710 10194 3164 1 0 3483008 0
[pid=15403/tid=15404] ppid=15401 vsize=14082840 memory=7883960649037381690 CPUtime=0.19 cores=1,3,5,7
/proc/15403/task/15404/stat : 15404 (java) R 15401 15401 14382 0 -1 4202560 5392 0 0 0 18 1 0 0 20 0 15 0 50967729 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935923654112 139935903462757 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15405] ppid=15401 vsize=14082840 memory=13660 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15405/stat : 15405 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935875971856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15406] ppid=15401 vsize=14082840 memory=140626253205885 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15406/stat : 15406 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935874919312 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15407] ppid=15401 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15407/stat : 15407 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935512718352 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15408] ppid=15401 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15408/stat : 15408 (java) S 15401 15401 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 50967730 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935511665808 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15409] ppid=15401 vsize=14082840 memory=140626253190784 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15409/stat : 15409 (java) S 15401 15401 14382 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 15 0 50967731 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935393597424 139935919430274 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15410] ppid=15401 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15410/stat : 15410 (java) S 15401 15401 14382 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 50967731 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935392543648 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15411] ppid=15401 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15411/stat : 15411 (java) S 15401 15401 14382 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 50967732 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935391491056 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15412] ppid=15401 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15412/stat : 15412 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935390439632 139935919437723 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15413] ppid=15401 vsize=14082840 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/15403/task/15413/stat : 15413 (java) S 15401 15401 14382 0 -1 1077944384 447 0 0 0 1 0 0 0 20 0 15 0 50967734 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935389387248 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15414] ppid=15401 vsize=14082840 memory=-1 CPUtime=0.03 cores=1,3,5,7
/proc/15403/task/15414/stat : 15414 (java) S 15401 15401 14382 0 -1 1077944384 342 0 0 0 3 0 0 0 20 0 15 0 50967734 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935388334704 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15415] ppid=15401 vsize=14082840 memory=140626253190784 CPUtime=0.08 cores=1,3,5,7
/proc/15403/task/15415/stat : 15415 (java) S 15401 15401 14382 0 -1 1077944384 786 0 0 0 8 0 0 0 20 0 15 0 50967734 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935387282160 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15416] ppid=15401 vsize=14082840 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15416/stat : 15416 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935386229856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15417] ppid=15401 vsize=14082840 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15417/stat : 15417 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967734 14420828160 10194 33554432000 4194304 4196468 140732636422288 139935385176368 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 14195968 KiB
Current children cumulated memory: 42232 KiB

[startup+0.31083 s]*
/proc/loadavg: 2.04 2.09 2.05 3/221 15417
/proc/meminfo: memFree=25660756/32770624 swapFree=67108860/67108860
[pid=15401] ppid=15398 vsize=113128 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0
[pid=15403] ppid=15401 vsize=14087096 memory=47824 CPUtime=0.51 cores=1,3,5,7
/proc/15403/stat : 15403 (java) S 15401 15401 14382 0 -1 1077944320 9120 0 0 0 48 3 0 0 20 0 15 0 50967729 14425186304 11956 33554432000 4194304 4196468 140732636422288 140732636404832 139935919419127 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
/proc/15403/statm: 3521774 11956 3238 1 0 3483008 0
[pid=15403/tid=15404] ppid=15401 vsize=14087096 memory=6791534058613427641 CPUtime=0.29 cores=1,3,5,7
/proc/15403/task/15404/stat : 15404 (java) R 15401 15401 14382 0 -1 4202560 6108 0 0 0 27 2 0 0 20 0 15 0 50967729 14425186304 11956 33554432000 4194304 4196468 140732636422288 139935923652912 139935903499614 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15405] ppid=15401 vsize=14087096 memory=4126316290023845779 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15405/stat : 15405 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14425186304 11956 33554432000 4194304 4196468 140732636422288 139935875971856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15406] ppid=15401 vsize=14087096 memory=6944656575208382560 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15406/stat : 15406 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14425186304 11956 33554432000 4194304 4196468 140732636422288 139935874919312 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15407] ppid=15401 vsize=14087096 memory=-3258418265892434876 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15407/stat : 15407 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967730 14425186304 11956 33554432000 4194304 4196468 140732636422288 139935512718352 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15408] ppid=15401 vsize=14087096 memory=4572146066226452084 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15408/stat : 15408 (java) S 15401 15401 14382 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 50967730 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935511665808 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15409] ppid=15401 vsize=14087096 memory=6944613755495348631 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15409/stat : 15409 (java) S 15401 15401 14382 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 15 0 50967731 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935393597424 139935919430274 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15410] ppid=15401 vsize=14087096 memory=7893295687695687954 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15410/stat : 15410 (java) S 15401 15401 14382 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 50967731 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935392543648 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15411] ppid=15401 vsize=14087096 memory=-8813974798734826869 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15411/stat : 15411 (java) S 15401 15401 14382 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 50967732 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935391491056 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15412] ppid=15401 vsize=14087096 memory=-6664436420846797971 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15412/stat : 15412 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935390439632 139935919437723 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15413] ppid=15401 vsize=14087096 memory=4426078206164241782 CPUtime=0.03 cores=1,3,5,7
/proc/15403/task/15413/stat : 15413 (java) S 15401 15401 14382 0 -1 1077944384 474 0 0 0 3 0 0 0 20 0 15 0 50967734 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935389387248 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15414] ppid=15401 vsize=14087096 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/15403/task/15414/stat : 15414 (java) S 15401 15401 14382 0 -1 1077944384 359 0 0 0 5 0 0 0 20 0 15 0 50967734 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935388334704 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15415] ppid=15401 vsize=14087096 memory=0 CPUtime=0.12 cores=1,3,5,7
/proc/15403/task/15415/stat : 15415 (java) S 15401 15401 14382 0 -1 1077944384 881 0 0 0 12 0 0 0 20 0 15 0 50967734 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935387282160 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15416] ppid=15401 vsize=14087096 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15416/stat : 15416 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935386229856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15417] ppid=15401 vsize=14087096 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15417/stat : 15417 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967734 14425186304 12021 33554432000 4194304 4196468 140732636422288 139935385176368 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
Current children cumulated CPU time: 0.51 s
Current children cumulated vsize: 14200224 KiB
Current children cumulated memory: 49280 KiB

[startup+0.701086 s]
/proc/loadavg: 2.04 2.09 2.05 6/221 15417
/proc/meminfo: memFree=25562956/32770624 swapFree=67108860/67108860
[pid=15401] ppid=15398 vsize=113128 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0
[pid=15403] ppid=15401 vsize=14089220 memory=250372 CPUtime=1.51 cores=1,3,5,7
/proc/15403/stat : 15403 (java) S 15401 15401 14382 0 -1 1077944320 11805 0 0 0 143 8 0 0 20 0 15 0 50967729 14427361280 62593 33554432000 4194304 4196468 140732636422288 140732636404832 139935919419127 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
/proc/15403/statm: 3522305 62593 3338 1 0 3483520 0
[pid=15403/tid=15404] ppid=15401 vsize=14089220 memory=33 CPUtime=0.64 cores=1,3,5,7
/proc/15403/task/15404/stat : 15404 (java) R 15401 15401 14382 0 -1 4202560 6550 0 0 0 60 4 0 0 20 0 15 0 50967729 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935923656496 139935557335490 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15405] ppid=15401 vsize=14089220 memory=-7816663703405220396 CPUtime=0.01 cores=1,3,5,7
/proc/15403/task/15405/stat : 15405 (java) S 15401 15401 14382 0 -1 1077944384 30 0 0 0 1 0 0 0 20 0 15 0 50967730 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935875971856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15406] ppid=15401 vsize=14089220 memory=0 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15406/stat : 15406 (java) S 15401 15401 14382 0 -1 1077944384 9 0 0 0 0 0 0 0 20 0 15 0 50967730 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935874919312 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15407] ppid=15401 vsize=14089220 memory=16744 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15407/stat : 15407 (java) S 15401 15401 14382 0 -1 1077944384 15 0 0 0 0 0 0 0 20 0 15 0 50967730 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935512718352 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15408] ppid=15401 vsize=14089220 memory=2396 CPUtime=0.02 cores=1,3,5,7
/proc/15403/task/15408/stat : 15408 (java) S 15401 15401 14382 0 -1 1077944384 37 0 0 0 1 1 0 0 20 0 15 0 50967730 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935511665808 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15409] ppid=15401 vsize=14089220 memory=1292 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15409/stat : 15409 (java) S 15401 15401 14382 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 50967731 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935393597424 139935919430274 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15410] ppid=15401 vsize=14089220 memory=1732 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15410/stat : 15410 (java) S 15401 15401 14382 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 50967731 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935392543648 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15411] ppid=15401 vsize=14089220 memory=1008 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15411/stat : 15411 (java) S 15401 15401 14382 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 50967732 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935391491056 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15412] ppid=15401 vsize=14089220 memory=5404 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15412/stat : 15412 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935390439632 139935919437723 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15413] ppid=15401 vsize=14089220 memory=796 CPUtime=0.23 cores=1,3,5,7
/proc/15403/task/15413/stat : 15413 (java) R 15401 15401 14382 0 -1 4202560 1096 0 0 0 23 0 0 0 20 0 15 0 50967734 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935389376240 139935897014529 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15414] ppid=15401 vsize=14089220 memory=4616 CPUtime=0.29 cores=1,3,5,7
/proc/15403/task/15414/stat : 15414 (java) R 15401 15401 14382 0 -1 4202560 1151 0 0 0 29 0 0 0 20 0 15 0 50967734 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935388326720 139935904544496 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15415] ppid=15401 vsize=14089220 memory=1424 CPUtime=0.24 cores=1,3,5,7
/proc/15403/task/15415/stat : 15415 (java) S 15401 15401 14382 0 -1 1077944384 1537 0 0 0 24 0 0 0 20 0 15 0 50967734 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935387282160 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15416] ppid=15401 vsize=14089220 memory=10940 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15416/stat : 15416 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935386229856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15417] ppid=15401 vsize=14089220 memory=1200 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15417/stat : 15417 (java) S 15401 15401 14382 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 50967734 14427361280 62593 33554432000 4194304 4196468 140732636422288 139935385176368 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
Current children cumulated CPU time: 1.51 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 251828 KiB

[startup+1.50085 s]
/proc/loadavg: 2.04 2.09 2.05 6/221 15417
/proc/meminfo: memFree=25428848/32770624 swapFree=67108860/67108860
[pid=15401] ppid=15398 vsize=113128 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0

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

/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0
[pid=15403] ppid=15401 vsize=14089220 memory=11717440 CPUtime=344.97 cores=1,3,5,7
/proc/15403/stat : 15403 (java) S 15401 15401 14382 0 -1 1077944320 464129 0 0 0 33264 1233 0 0 20 0 15 0 50967729 14427361280 2929360 33554432000 4194304 4196468 140732636422288 140732636404832 139935919419127 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
/proc/15403/statm: 3522305 2929360 3381 1 0 3483520 0
[pid=15403/tid=15404] ppid=15401 vsize=14089220 memory=11717380 CPUtime=291.73 cores=1,3,5,7
/proc/15403/task/15404/stat : 15404 (java) S 15401 15401 14382 0 -1 1077944384 43787 0 0 0 29149 24 0 0 20 0 15 0 50967729 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935923660720 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15405] ppid=15401 vsize=14089220 memory=15872 CPUtime=12.7 cores=1,3,5,7
/proc/15403/task/15405/stat : 15405 (java) R 15401 15401 14382 0 -1 4202560 185172 0 0 0 983 287 0 0 20 0 15 0 50967730 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935875972056 139935904119171 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15406] ppid=15401 vsize=14089220 memory=11717380 CPUtime=12.65 cores=1,3,5,7
/proc/15403/task/15406/stat : 15406 (java) R 15401 15401 14382 0 -1 4202560 49972 0 0 0 958 307 0 0 20 0 15 0 50967730 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935874919120 139935912047335 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15407] ppid=15401 vsize=14089220 memory=1732 CPUtime=12.73 cores=1,3,5,7
/proc/15403/task/15407/stat : 15407 (java) R 15401 15401 14382 0 -1 4202560 91144 0 0 0 999 274 0 0 20 0 15 0 50967730 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935512718160 139935912047335 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15408] ppid=15401 vsize=14089220 memory=1008 CPUtime=12.67 cores=1,3,5,7
/proc/15403/task/15408/stat : 15408 (java) R 15401 15401 14382 0 -1 4202560 57153 0 0 0 942 325 0 0 20 0 15 0 50967730 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935511665928 139935912047335 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15409] ppid=15401 vsize=14089220 memory=6791534058613427641 CPUtime=0.79 cores=1,3,5,7
/proc/15403/task/15409/stat : 15409 (java) S 15401 15401 14382 0 -1 1077944384 28016 0 0 0 77 2 0 0 20 0 15 0 50967731 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935393595968 139935919429333 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 18 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15410] ppid=15401 vsize=14089220 memory=11717200 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15410/stat : 15410 (java) S 15401 15401 14382 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 15 0 50967731 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935392543712 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15411] ppid=15401 vsize=14089220 memory=4616 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15411/stat : 15411 (java) S 15401 15401 14382 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 50967732 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935391491072 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15412] ppid=15401 vsize=14089220 memory=1424 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15412/stat : 15412 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935390439632 139935919437723 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15413] ppid=15401 vsize=14089220 memory=10940 CPUtime=0.53 cores=1,3,5,7
/proc/15403/task/15413/stat : 15413 (java) S 15401 15401 14382 0 -1 1077944384 2053 0 0 0 53 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935389387248 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15414] ppid=15401 vsize=14089220 memory=6791534058613427641 CPUtime=0.57 cores=1,3,5,7
/proc/15403/task/15414/stat : 15414 (java) S 15401 15401 14382 0 -1 1077944384 2659 0 0 0 57 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935388334704 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15415] ppid=15401 vsize=14089220 memory=796 CPUtime=0.33 cores=1,3,5,7
/proc/15403/task/15415/stat : 15415 (java) S 15401 15401 14382 0 -1 1077944384 2392 0 0 0 33 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935387281728 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15416] ppid=15401 vsize=14089220 memory=4616 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15416/stat : 15416 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935386229856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15417] ppid=15401 vsize=14089220 memory=1424 CPUtime=0.2 cores=1,3,5,7
/proc/15403/task/15417/stat : 15417 (java) S 15401 15401 14382 0 -1 1077944384 458 0 0 0 11 9 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935385176368 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 40 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
Current children cumulated CPU time: 344.97 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11718896 KiB

[startup+306.001 s]*
/proc/loadavg: 2.05 2.11 2.07 6/222 15425
/proc/meminfo: memFree=13716936/32770624 swapFree=67108860/67108860
[pid=15401] ppid=15398 vsize=113128 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0
[pid=15403] ppid=15401 vsize=14089220 memory=11717440 CPUtime=346.57 cores=1,3,5,7
/proc/15403/stat : 15403 (java) S 15401 15401 14382 0 -1 1077944320 464129 0 0 0 33423 1234 0 0 20 0 15 0 50967729 14427361280 2929360 33554432000 4194304 4196468 140732636422288 140732636404832 139935919419127 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
/proc/15403/statm: 3522305 2929360 3381 1 0 3483520 0
[pid=15403/tid=15404] ppid=15401 vsize=14089220 memory=6791534058613427641 CPUtime=291.73 cores=1,3,5,7
/proc/15403/task/15404/stat : 15404 (java) S 15401 15401 14382 0 -1 1077944384 43787 0 0 0 29149 24 0 0 20 0 15 0 50967729 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935923660720 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15405] ppid=15401 vsize=14089220 memory=4126316290023845779 CPUtime=13.11 cores=1,3,5,7
/proc/15403/task/15405/stat : 15405 (java) R 15401 15401 14382 0 -1 4202560 185172 0 0 0 1024 287 0 0 20 0 15 0 50967730 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935875972056 139935912522136 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15406] ppid=15401 vsize=14089220 memory=14977758669309581 CPUtime=13.04 cores=1,3,5,7
/proc/15403/task/15406/stat : 15406 (java) R 15401 15401 14382 0 -1 4202560 49972 0 0 0 997 307 0 0 20 0 15 0 50967730 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935874919120 139935912047335 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15407] ppid=15401 vsize=14089220 memory=7522819427562185832 CPUtime=13.13 cores=1,3,5,7
/proc/15403/task/15407/stat : 15407 (java) R 15401 15401 14382 0 -1 4202560 91144 0 0 0 1039 274 0 0 20 0 15 0 50967730 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935512718160 139935912047335 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15408] ppid=15401 vsize=14089220 memory=7522819427562185832 CPUtime=13.06 cores=1,3,5,7
/proc/15403/task/15408/stat : 15408 (java) R 15401 15401 14382 0 -1 4202560 57153 0 0 0 980 326 0 0 20 0 15 0 50967730 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935511665928 139935912047335 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15409] ppid=15401 vsize=14089220 memory=7236836440345766208 CPUtime=0.79 cores=1,3,5,7
/proc/15403/task/15409/stat : 15409 (java) S 15401 15401 14382 0 -1 1077944384 28016 0 0 0 77 2 0 0 20 0 15 0 50967731 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935393595968 139935919429333 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 18 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15410] ppid=15401 vsize=14089220 memory=7090750845492686440 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15410/stat : 15410 (java) S 15401 15401 14382 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 15 0 50967731 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935392543712 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15411] ppid=15401 vsize=14089220 memory=7090750845492686440 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15411/stat : 15411 (java) S 15401 15401 14382 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 50967732 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935391491072 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15412] ppid=15401 vsize=14089220 memory=7881975995624350830 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15412/stat : 15412 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935390439632 139935919437723 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15413] ppid=15401 vsize=14089220 memory=6005660528459279465 CPUtime=0.53 cores=1,3,5,7
/proc/15403/task/15413/stat : 15413 (java) S 15401 15401 14382 0 -1 1077944384 2053 0 0 0 53 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935389387248 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15414] ppid=15401 vsize=14089220 memory=6005660528459279465 CPUtime=0.57 cores=1,3,5,7
/proc/15403/task/15414/stat : 15414 (java) S 15401 15401 14382 0 -1 1077944384 2659 0 0 0 57 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935388334704 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15415] ppid=15401 vsize=14089220 memory=6005660528459279465 CPUtime=0.33 cores=1,3,5,7
/proc/15403/task/15415/stat : 15415 (java) S 15401 15401 14382 0 -1 1077944384 2392 0 0 0 33 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935387281728 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15416] ppid=15401 vsize=14089220 memory=7881975995624350830 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15416/stat : 15416 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935386229856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15417] ppid=15401 vsize=14089220 memory=6005660528459279465 CPUtime=0.2 cores=1,3,5,7
/proc/15403/task/15417/stat : 15417 (java) S 15401 15401 14382 0 -1 1077944384 458 0 0 0 11 9 0 0 20 0 15 0 50967734 14427361280 2929360 33554432000 4194304 4196468 140732636422288 139935385176368 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 40 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
Current children cumulated CPU time: 346.57 s
Current children cumulated vsize: 14202348 KiB
Current children cumulated memory: 11718896 KiB

[startup+306.211 s]
/proc/loadavg: 2.05 2.11 2.07 6/222 15425
/proc/meminfo: memFree=13716936/32770624 swapFree=67108860/67108860
[pid=15401] ppid=15398 vsize=113128 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0
[pid=15403] ppid=15401 vsize=14155784 memory=11717456 CPUtime=347.18 cores=1,3,5,7
/proc/15403/stat : 15403 (java) S 15401 15401 14382 0 -1 1077944320 464298 0 0 0 33483 1235 0 0 20 0 16 0 50967729 14495522816 2929364 33554432000 4194304 4196468 140732636422288 140732636404832 139935919419127 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
/proc/15403/statm: 3538946 2929364 3381 1 0 3500161 0
[pid=15403/tid=15404] ppid=15401 vsize=14155784 memory=14977758669309581 CPUtime=291.73 cores=1,3,5,7
/proc/15403/task/15404/stat : 15404 (java) S 15401 15401 14382 0 -1 1077944384 43798 0 0 0 29149 24 0 0 20 0 16 0 50967729 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935923659808 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15405] ppid=15401 vsize=14155784 memory=0 CPUtime=13.25 cores=1,3,5,7
/proc/15403/task/15405/stat : 15405 (java) R 15401 15401 14382 0 -1 4202560 185172 0 0 0 1038 287 0 0 20 0 16 0 50967730 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935875971856 139935904116902 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15406] ppid=15401 vsize=14155784 memory=4715433313220523562 CPUtime=13.18 cores=1,3,5,7
/proc/15403/task/15406/stat : 15406 (java) R 15401 15401 14382 0 -1 4202560 49973 0 0 0 1011 307 0 0 20 0 16 0 50967730 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935874919312 139935904404423 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15407] ppid=15401 vsize=14155784 memory=7822038051842261661 CPUtime=13.26 cores=1,3,5,7
/proc/15403/task/15407/stat : 15407 (java) R 15401 15401 14382 0 -1 4202560 91144 0 0 0 1052 274 0 0 20 0 16 0 50967730 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935512718240 139935904370226 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15408] ppid=15401 vsize=14155784 memory=-6520471753822164382 CPUtime=13.19 cores=1,3,5,7
/proc/15403/task/15408/stat : 15408 (java) R 15401 15401 14382 0 -1 4202560 57155 0 0 0 993 326 0 0 20 0 16 0 50967730 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935511665808 139935904404423 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15409] ppid=15401 vsize=14155784 memory=9047017150487036575 CPUtime=0.85 cores=1,3,5,7
/proc/15403/task/15409/stat : 15409 (java) S 15401 15401 14382 0 -1 1077944384 28144 0 0 0 83 2 0 0 20 0 16 0 50967731 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935393595744 139935919429333 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 18 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15410] ppid=15401 vsize=14155784 memory=4427205132082312746 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15410/stat : 15410 (java) S 15401 15401 14382 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 16 0 50967731 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935392543712 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15411] ppid=15401 vsize=14155784 memory=-8486080722631693414 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15411/stat : 15411 (java) S 15401 15401 14382 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 16 0 50967732 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935391491072 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15412] ppid=15401 vsize=14155784 memory=4629546024076873078 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15412/stat : 15412 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935390439632 139935919437723 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15413] ppid=15401 vsize=14155784 memory=-8412652152092201843 CPUtime=0.53 cores=1,3,5,7
/proc/15403/task/15413/stat : 15413 (java) S 15401 15401 14382 0 -1 1077944384 2053 0 0 0 53 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935389387248 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15414] ppid=15401 vsize=14155784 memory=-7023579799431922829 CPUtime=0.57 cores=1,3,5,7
/proc/15403/task/15414/stat : 15414 (java) S 15401 15401 14382 0 -1 1077944384 2659 0 0 0 57 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935388334704 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15415] ppid=15401 vsize=14155784 memory=4426639978525455914 CPUtime=0.33 cores=1,3,5,7
/proc/15403/task/15415/stat : 15415 (java) S 15401 15401 14382 0 -1 1077944384 2394 0 0 0 33 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935387282160 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15416] ppid=15401 vsize=14155784 memory=7881975995624350830 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15416/stat : 15416 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935386229856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15417] ppid=15401 vsize=14155784 memory=9047017150487036575 CPUtime=0.2 cores=1,3,5,7
/proc/15403/task/15417/stat : 15417 (java) S 15401 15401 14382 0 -1 1077944384 458 0 0 0 11 9 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935385176368 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 40 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
Current children cumulated CPU time: 347.18 s
Current children cumulated vsize: 14268912 KiB
Current children cumulated memory: 11718912 KiB

[startup+306.301 s]
/proc/loadavg: 2.05 2.11 2.07 6/222 15425
/proc/meminfo: memFree=13716936/32770624 swapFree=67108860/67108860
[pid=15401] ppid=15398 vsize=113128 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15401/stat : 15401 (xcsp3-exec) S 15398 15401 14382 0 -1 4202496 536 0 0 0 0 0 0 0 20 0 1 0 50967728 115843072 364 33554432000 4194304 5098028 140735905592592 140735905590696 140136927818364 0 65536 4100 65538 18446744071579417331 0 0 17 5 0 0 0 0 0 7196144 7232144 21643264 140735905600570 140735905600772 140735905600772 140735905603530 0
/proc/15401/statm: 28282 364 306 221 0 87 0
[pid=15403] ppid=15401 vsize=14155784 memory=11717456 CPUtime=347.41 cores=1,3,5,7
/proc/15403/stat : 15403 (java) S 15401 15401 14382 0 -1 1077944320 464299 0 0 0 33506 1235 0 0 20 0 16 0 50967729 14495522816 2929364 33554432000 4194304 4196468 140732636422288 140732636404832 139935919419127 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
/proc/15403/statm: 3538946 2929364 3381 1 0 3500161 0
[pid=15403/tid=15404] ppid=15401 vsize=14155784 memory=11717380 CPUtime=291.73 cores=1,3,5,7
/proc/15403/task/15404/stat : 15404 (java) S 15401 15401 14382 0 -1 1077944384 43798 0 0 0 29149 24 0 0 20 0 16 0 50967729 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935923659808 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15405] ppid=15401 vsize=14155784 memory=1456 CPUtime=13.3 cores=1,3,5,7
/proc/15403/task/15405/stat : 15405 (java) S 15401 15401 14382 0 -1 1077944384 185172 0 0 0 1043 287 0 0 20 0 16 0 50967730 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935875971856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15406] ppid=15401 vsize=14155784 memory=1456 CPUtime=13.22 cores=1,3,5,7
/proc/15403/task/15406/stat : 15406 (java) S 15401 15401 14382 0 -1 1077944384 49973 0 0 0 1015 307 0 0 20 0 16 0 50967730 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935874919312 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15407] ppid=15401 vsize=14155784 memory=11717440 CPUtime=13.31 cores=1,3,5,7
/proc/15403/task/15407/stat : 15407 (java) S 15401 15401 14382 0 -1 1077944384 91144 0 0 0 1057 274 0 0 20 0 16 0 50967730 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935512718352 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15408] ppid=15401 vsize=14155784 memory=1456 CPUtime=13.24 cores=1,3,5,7
/proc/15403/task/15408/stat : 15408 (java) S 15401 15401 14382 0 -1 1077944384 57155 0 0 0 998 326 0 0 20 0 16 0 50967730 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935511665808 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15409] ppid=15401 vsize=14155784 memory=1456 CPUtime=0.89 cores=1,3,5,7
/proc/15403/task/15409/stat : 15409 (java) R 15401 15401 14382 0 -1 4202560 28145 0 0 0 87 2 0 0 20 0 16 0 50967731 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935393595968 139935897789307 0 0 0 16800975 0 0 0 -1 5 0 0 18 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15410] ppid=15401 vsize=14155784 memory=1456 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15410/stat : 15410 (java) S 15401 15401 14382 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 16 0 50967731 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935392543712 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15411] ppid=15401 vsize=14155784 memory=16744 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15411/stat : 15411 (java) S 15401 15401 14382 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 16 0 50967732 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935391491072 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15412] ppid=15401 vsize=14155784 memory=2196 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15412/stat : 15412 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935390439632 139935919437723 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15413] ppid=15401 vsize=14155784 memory=7636 CPUtime=0.53 cores=1,3,5,7
/proc/15403/task/15413/stat : 15413 (java) S 15401 15401 14382 0 -1 1077944384 2053 0 0 0 53 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935389387248 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15414] ppid=15401 vsize=14155784 memory=1456 CPUtime=0.57 cores=1,3,5,7
/proc/15403/task/15414/stat : 15414 (java) S 15401 15401 14382 0 -1 1077944384 2659 0 0 0 57 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935388334704 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15415] ppid=15401 vsize=14155784 memory=1456 CPUtime=0.33 cores=1,3,5,7
/proc/15403/task/15415/stat : 15415 (java) S 15401 15401 14382 0 -1 1077944384 2394 0 0 0 33 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935387282160 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15416] ppid=15401 vsize=14155784 memory=57 CPUtime=0 cores=1,3,5,7
/proc/15403/task/15416/stat : 15416 (java) S 15401 15401 14382 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935386229856 139935919429333 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
[pid=15403/tid=15417] ppid=15401 vsize=14155784 memory=33 CPUtime=0.2 cores=1,3,5,7
/proc/15403/task/15417/stat : 15417 (java) S 15401 15401 14382 0 -1 1077944384 458 0 0 0 11 9 0 0 20 0 16 0 50967734 14495522816 2929364 33554432000 4194304 4196468 140732636422288 139935385176368 139935919430274 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 40 0 0 6293624 6294260 37326848 140732636423297 140732636423473 140732636423473 140732636426191 0
Current children cumulated CPU time: 347.41 s
Current children cumulated vsize: 14268912 KiB
Current children cumulated memory: 11718912 KiB

Child status: 1
Real time (s): 306.392
CPU time (s): 347.512
CPU user time (s): 335.088
CPU system time (s): 12.4231
CPU usage (%): 113.421
Max. virtual memory (cumulated for all children) (KiB): 14268912
Max. memory (cumulated for all children) (KiB): 11718912

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 335.088
system time used= 12.4231
maximum resident set size= 11717720
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 464903
page faults= 0
swaps= 0
block input operations= 0
block output operations= 336
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 13396
involuntary context switches= 624


# summary of solver processes directly reported to runsolver:
#   pid: 15401
#   total CPU time (s): 347.512
#   total CPU user time (s): 335.088
#   total CPU system time (s): 12.4231

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.17483 second user time and 3.20779 second system time

The end

Launcher Data

Begin job on node134 at 2018-07-23 10:20:45
IDJOB=4292231
IDBENCH=141304
IDSOLVER=2747
FILE ID=node134/4292231-1532334045
RUNJOBID= node134-1532328652-14414
PBS_JOBID= 21018997
Free space on /tmp= 55920 MiB

SOLVER NAME= Choco-solver 4.0.7 seq (493a269)
BENCH NAME= XCSP18/CrosswordDesign/CrosswordDesign-09-4-rom_c18.xml
COMMAND LINE= HOME/xcsp3-exec -seed RANDOMSEED -dir DIR -tl TIMEOUT -ml 11000 -p 1 BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4292231-1532334045/watcher-4292231-1532334045 -o /tmp/evaluation-result-4292231-1532334045/solver-4292231-1532334045 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node134-1532328652-14414 --watchdog 2560  HOME/xcsp3-exec -seed 1828007844 -dir HOME -tl 2400 -ml 11000 -p 1 HOME/instance-4292231-1532334045.xml

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

MD5SUM BENCH= 687e226d0bfa9953b2ddd48681aeb13c
RANDOM SEED=1828007844

node134.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.68
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.68
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.68
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.68
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:        25698696 kB
MemAvailable:   30271744 kB
Buffers:          187616 kB
Cached:          4649192 kB
SwapCached:            0 kB
Active:          3191540 kB
Inactive:        3404120 kB
Active(anon):    1708080 kB
Inactive(anon):    70304 kB
Active(file):    1483460 kB
Inactive(file):  3333816 kB
Unevictable:        7396 kB
Mlocked:            7396 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             37756 kB
Writeback:             0 kB
AnonPages:       1985544 kB
Mapped:            49744 kB
Shmem:             17056 kB
Slab:             171272 kB
SReclaimable:     143212 kB
SUnreclaim:        28060 kB
KernelStack:        3904 kB
PageTables:         8212 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    3468492 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   1863680 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      120192 kB
DirectMap2M:    33425408 kB

Free space on /tmp at the end= 55900 MiB
End job on node134 at 2018-07-23 10:25:52