Trace number 4282326

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 seq (2017-08-18)? 483.306 237.825

General information on the benchmark

NameMagicSquare/MagicSquare-table-s1/
MagicSquare-6-table.xml
MD5SUMcfc552cbb2ce3301e89528d2cd5bb011
Bench CategoryCSP (decision problem)
Best result obtained on this benchmarkSAT
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark481.45001
Satisfiable
(Un)Satisfiability was proved
Number of variables36
Number of constraints15
Number of domains1
Minimum domain size36
Maximum domain size36
Distribution of domain sizes[{"size":36,"count":36}]
Minimum variable degree3
Maximum variable degree4
Distribution of variable degrees[{"degree":3,"count":24},{"degree":4,"count":12}]
Minimum constraint arity6
Maximum constraint arity36
Distribution of constraint arities[{"arity":6,"count":14},{"arity":36,"count":1}]
Number of extensional constraints14
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":14},{"type":"allDifferent","count":1}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.07	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4282326-1503138175.xml"  -tl '2520s' -p 1 -x 0
0.14/0.24	c [HOME/instance-4282326-1503138175.xml, -tl, 2520s, -p, 1, -x, 0]
0.14/0.30	c simple solver
0.33/0.36	c parse instance...
483.17/237.74	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
483.17/237.74		at java.util.Arrays.copyOf(Arrays.java:3181)
483.17/237.74		at java.util.ArrayList.grow(ArrayList.java:261)
483.17/237.74		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
483.17/237.74		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
483.17/237.74		at java.util.ArrayList.add(ArrayList.java:458)
483.17/237.74		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:158)
483.17/237.74		at org.chocosolver.solver.constraints.extension.Tuples.<init>(Tuples.java:58)
483.17/237.74		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:305)
483.17/237.74		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
483.17/237.74		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
483.17/237.74		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
483.17/237.74		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
483.17/237.74		at org.xcsp.parser.XCallbacks$$Lambda$77/1447689627.accept(Unknown Source)
483.17/237.74		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
483.17/237.74		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
483.17/237.74		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
483.17/237.74		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
483.17/237.74		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
483.17/237.74		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
483.17/237.74		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
483.17/237.74		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
483.17/237.75		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
483.17/237.75		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
483.17/237.75		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
483.17/237.75	s UNKNOWN
483.17/237.75	c Unexpected resolution interruption!

Verifier Data


Watcher Data

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

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

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4282326-1503138175/watcher-4282326-1503138175 -o /tmp/evaluation-result-4282326-1503138175/solver-4282326-1503138175 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node131-1503095854-18172 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 157843086 HOME/instance-4282326-1503138175.xml 

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

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 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
Current StackSize limit: 8192 KiB

solver pid=27069, runsolver pid=27066

[startup+0.10087 s]*
/proc/loadavg: 1.77 1.40 1.44 3/204 27078
/proc/meminfo: memFree=30237508/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
[pid=27071] ppid=27069 vsize=13574484 memory=17724 CPUtime=0.02 cores=1,3,5,7
/proc/27071/stat : 27071 (java) S 27069 27069 18108 0 -1 1077944320 3760 0 0 0 2 0 0 0 20 0 9 0 12225836 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 140722759988768 139661684166391 0 0 1 16784584 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
/proc/27071/statm: 3393621 4431 2085 1 0 3383118 0
[pid=27071/tid=27072] ppid=27069 vsize=13574484 memory=-8713483618642457695 CPUtime=0.02 cores=1,3,5,7
/proc/27071/task/27072/stat : 27072 (java) R 27069 27069 18108 0 -1 4202560 2462 0 0 0 2 0 0 0 20 0 9 0 12225837 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 139661688402152 139661684188317 0 4 1 16784584 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27073] ppid=27069 vsize=13574484 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27073/stat : 27073 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 9 0 12225837 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 139661603580176 139661684176597 0 4 1 16784584 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27074] ppid=27069 vsize=13574484 memory=140004448515712 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27074/stat : 27074 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 9 0 12225837 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 139661602527632 139661684176597 0 4 1 16784584 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=13574484 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 9 0 12225837 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 139661601475088 139661684176597 0 4 1 16784584 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=13574484 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27076/stat : 27076 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 9 0 12225837 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 139661600422544 139661684176597 0 4 1 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27077] ppid=27069 vsize=13574484 memory=140004448515712 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27077/stat : 27077 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 9 0 12225839 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 139661162793456 139661684177538 0 0 1 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27078] ppid=27069 vsize=13574484 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27078/stat : 27078 (java) S 27069 27069 18108 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 9 0 12225839 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 139661161739680 139661684176597 0 4 1 16784584 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27079] ppid=27069 vsize=13574484 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27079/stat : 27079 (java) S 27069 27069 18108 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 9 0 12225839 13900271616 4431 18446744073709551615 4194304 4196468 140722760006224 139661160687152 139661684176597 0 4 1 16784584 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
Current children cumulated CPU time: 0.02 s
Current children cumulated vsize: 13583996 KiB
Current children cumulated memory: 19104 KiB

[startup+0.212038 s]*
/proc/loadavg: 1.77 1.40 1.44 3/211 27085
/proc/meminfo: memFree=30233940/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
[pid=27071] ppid=27069 vsize=13974352 memory=29248 CPUtime=0.14 cores=1,3,5,7
/proc/27071/stat : 27071 (java) S 27069 27069 18108 0 -1 1077944320 5259 0 0 0 13 1 0 0 20 0 15 0 12225836 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 140722759988768 139661684166391 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
/proc/27071/statm: 3493588 7312 2907 1 0 3482964 0
[pid=27071/tid=27072] ppid=27069 vsize=13974352 memory=-6871798056524144002 CPUtime=0.1 cores=1,3,5,7
/proc/27071/task/27072/stat : 27072 (java) R 27069 27069 18108 0 -1 4202560 3150 0 0 0 9 1 0 0 20 0 15 0 12225837 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661688394624 139661684178326 0 4 1 16800974 0 0 0 -1 1 0 0 3 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27073] ppid=27069 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27073/stat : 27073 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12225837 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661603580176 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27074] ppid=27069 vsize=13974352 memory=140004448515712 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27074/stat : 27074 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12225837 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661602527632 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12225837 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661601475088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27076/stat : 27076 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12225837 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661600422544 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27077] ppid=27069 vsize=13974352 memory=140004448515712 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27077/stat : 27077 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12225839 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661162793456 139661684177538 0 0 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27078] ppid=27069 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27078/stat : 27078 (java) S 27069 27069 18108 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 12225839 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661161739680 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27079] ppid=27069 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27079/stat : 27079 (java) S 27069 27069 18108 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 12225839 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661160687088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27080] ppid=27069 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27080/stat : 27080 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661159635664 139661684184987 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27081] ppid=27069 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27081/stat : 27081 (java) R 27069 27069 18108 0 -1 1077944384 301 0 0 0 0 0 0 0 20 0 15 0 12225842 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661158582256 139661684177538 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27082] ppid=27069 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27082/stat : 27082 (java) R 27069 27069 18108 0 -1 4202560 174 0 0 0 0 0 0 0 20 0 15 0 12225842 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661157529712 139661677151433 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27083] ppid=27069 vsize=13974352 memory=140004448515712 CPUtime=0.02 cores=1,3,5,7
/proc/27071/task/27083/stat : 27083 (java) R 27069 27069 18108 0 -1 4202560 328 0 0 0 2 0 0 0 20 0 15 0 12225842 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661156477168 139661662769996 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27084] ppid=27069 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27084/stat : 27084 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661155424864 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27085] ppid=27069 vsize=13974352 memory=140004448515712 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27085/stat : 27085 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12225845 14309736448 7312 18446744073709551615 4194304 4196468 140722760006224 139661154372400 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
Current children cumulated CPU time: 0.14 s
Current children cumulated vsize: 13983864 KiB
Current children cumulated memory: 30628 KiB

[startup+0.310284 s]*
/proc/loadavg: 1.77 1.40 1.44 3/211 27085
/proc/meminfo: memFree=30218616/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
[pid=27071] ppid=27069 vsize=13978608 memory=40428 CPUtime=0.33 cores=1,3,5,7
/proc/27071/stat : 27071 (java) S 27069 27069 18108 0 -1 1077944320 8821 0 0 0 31 2 0 0 20 0 15 0 12225836 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 140722759988768 139661684166391 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
/proc/27071/statm: 3494652 10107 3052 1 0 3482964 0
[pid=27071/tid=27072] ppid=27069 vsize=13978608 memory=-8774313645642428999 CPUtime=0.19 cores=1,3,5,7
/proc/27071/task/27072/stat : 27072 (java) R 27069 27069 18108 0 -1 4202560 5949 0 0 0 18 1 0 0 20 0 15 0 12225837 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661688387384 139661684188317 0 4 1 16800974 0 0 0 -1 3 0 0 3 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27073] ppid=27069 vsize=13978608 memory=4627853888499060086 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27073/stat : 27073 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12225837 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661603580176 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27074] ppid=27069 vsize=13978608 memory=7031125463459224206 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27074/stat : 27074 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12225837 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661602527632 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=13978608 memory=-7305533901252758645 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12225837 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661601475088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=13978608 memory=8248408006974860141 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27076/stat : 27076 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12225837 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661600422544 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27077] ppid=27069 vsize=13978608 memory=140004448522705 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27077/stat : 27077 (java) S 27069 27069 18108 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 12225839 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661162793456 139661684177538 0 0 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27078] ppid=27069 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27078/stat : 27078 (java) S 27069 27069 18108 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 12225839 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661161739680 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27079] ppid=27069 vsize=13978608 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27079/stat : 27079 (java) S 27069 27069 18108 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 12225839 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661160687088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27080] ppid=27069 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27080/stat : 27080 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661159635664 139661684184987 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27081] ppid=27069 vsize=13978608 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/27071/task/27081/stat : 27081 (java) S 27069 27069 18108 0 -1 1077944384 528 0 0 0 2 0 0 0 20 0 15 0 12225842 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661158582256 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27082] ppid=27069 vsize=13978608 memory=0 CPUtime=0.02 cores=1,3,5,7
/proc/27071/task/27082/stat : 27082 (java) S 27069 27069 18108 0 -1 1077944384 337 0 0 0 2 0 0 0 20 0 15 0 12225842 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661157529712 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27083] ppid=27069 vsize=13978608 memory=0 CPUtime=0.07 cores=1,3,5,7
/proc/27071/task/27083/stat : 27083 (java) S 27069 27069 18108 0 -1 1077944384 701 0 0 0 7 0 0 0 20 0 15 0 12225842 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661156477168 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27084] ppid=27069 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27084/stat : 27084 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661155424864 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27085] ppid=27069 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27085/stat : 27085 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12225845 14314094592 10107 18446744073709551615 4194304 4196468 140722760006224 139661154372400 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 13988120 KiB
Current children cumulated memory: 41808 KiB

[startup+0.700937 s]
/proc/loadavg: 1.77 1.40 1.44 3/211 27085
/proc/meminfo: memFree=30148964/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
[pid=27071] ppid=27069 vsize=13978608 memory=285528 CPUtime=1.04 cores=1,3,5,7
/proc/27071/stat : 27071 (java) S 27069 27069 18108 0 -1 1077944320 10615 0 0 0 82 22 0 0 20 0 15 0 12225836 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 140722759988768 139661684166391 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
/proc/27071/statm: 3494652 71382 3113 1 0 3482964 0
[pid=27071/tid=27072] ppid=27069 vsize=13978608 memory=7165352523810945333 CPUtime=0.51 cores=1,3,5,7
/proc/27071/task/27072/stat : 27072 (java) R 27069 27069 18108 0 -1 4202560 7128 0 0 0 45 6 0 0 20 0 15 0 12225837 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661688405232 139661684188317 0 4 1 16800974 0 0 0 -1 5 0 0 3 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27073] ppid=27069 vsize=13978608 memory=5787776866926477409 CPUtime=0.05 cores=1,3,5,7
/proc/27071/task/27073/stat : 27073 (java) S 27069 27069 18108 0 -1 1077944384 70 0 0 0 2 3 0 0 20 0 15 0 12225837 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661603580176 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27074] ppid=27069 vsize=13978608 memory=5865491479076426066 CPUtime=0.05 cores=1,3,5,7
/proc/27071/task/27074/stat : 27074 (java) S 27069 27069 18108 0 -1 1077944384 60 0 0 0 2 3 0 0 20 0 15 0 12225837 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661602527632 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=13978608 memory=-7812477184710932156 CPUtime=0.05 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) S 27069 27069 18108 0 -1 1077944384 64 0 0 0 2 3 0 0 20 0 15 0 12225837 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661601475088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=13978608 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/27071/task/27076/stat : 27076 (java) S 27069 27069 18108 0 -1 1077944384 63 0 0 0 2 3 0 0 20 0 15 0 12225837 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661600422544 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27077] ppid=27069 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27077/stat : 27077 (java) S 27069 27069 18108 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 12225839 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661162793456 139661684177538 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27078] ppid=27069 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27078/stat : 27078 (java) S 27069 27069 18108 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 15 0 12225839 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661161739680 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27079] ppid=27069 vsize=13978608 memory=4128 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27079/stat : 27079 (java) S 27069 27069 18108 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 15 0 12225839 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661160687088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27080] ppid=27069 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27080/stat : 27080 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661159635664 139661684184987 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27081] ppid=27069 vsize=13978608 memory=140004324024944 CPUtime=0.05 cores=1,3,5,7
/proc/27071/task/27081/stat : 27081 (java) S 27069 27069 18108 0 -1 1077944384 556 0 0 0 5 0 0 0 20 0 15 0 12225842 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661158582256 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27082] ppid=27069 vsize=13978608 memory=0 CPUtime=0.06 cores=1,3,5,7
/proc/27071/task/27082/stat : 27082 (java) S 27069 27069 18108 0 -1 1077944384 485 0 0 0 6 0 0 0 20 0 15 0 12225842 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661157529712 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27083] ppid=27069 vsize=13978608 memory=0 CPUtime=0.13 cores=1,3,5,7
/proc/27071/task/27083/stat : 27083 (java) S 27069 27069 18108 0 -1 1077944384 805 0 0 0 13 0 0 0 20 0 15 0 12225842 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661156477168 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27084] ppid=27069 vsize=13978608 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27084/stat : 27084 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661155424864 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27085] ppid=27069 vsize=13978608 memory=7809523229951467568 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27085/stat : 27085 (java) S 27069 27069 18108 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 12225845 14314094592 71382 18446744073709551615 4194304 4196468 140722760006224 139661154372400 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
Current children cumulated CPU time: 1.04 s
Current children cumulated vsize: 13988120 KiB
Current children cumulated memory: 286908 KiB

[startup+1.50098 s]
/proc/loadavg: 1.77 1.40 1.44 4/211 27085
/proc/meminfo: memFree=29796264/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
[pid=27071] ppid=27069 vsize=13978608 memory=868152 CPUtime=3.02 cores=1,3,5,7
/proc/27071/stat : 27071 (java) S 27069 27069 18108 0 -1 1077944320 14663 0 0 0 215 87 0 0 20 0 15 0 12225836 14314094592 217038 18446744073709551615 4194304 4196468 140722760006224 140722759988768 139661684166391 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
/proc/27071/statm: 3494652 217038 3156 1 0 3482964 0
[pid=27071/tid=27072] ppid=27069 vsize=13978608 memory=25959 CPUtime=0.94 cores=1,3,5,7
/proc/27071/task/27072/stat : 27072 (java) R 27069 27069 18108 0 -1 4202560 7183 0 0 0 83 11 0 0 20 0 15 0 12225837 14314094592 217038 18446744073709551615 4194304 4196468 140722760006224 139661688398128 139661282295200 0 4 1 16800974 0 0 0 -1 7 0 0 3 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27073] ppid=27069 vsize=13978608 memory=0 CPUtime=0.41 cores=1,3,5,7
/proc/27071/task/27073/stat : 27073 (java) S 27069 27069 18108 0 -1 1077944384 789 0 0 0 23 18 0 0 20 0 15 0 12225837 14314094592 217038 18446744073709551615 4194304 4196468 140722760006224 139661603580176 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27074] ppid=27069 vsize=13978608 memory=-3253322038155611931 CPUtime=0.41 cores=1,3,5,7
/proc/27071/task/27074/stat : 27074 (java) S 27069 27069 18108 0 -1 1077944384 575 0 0 0 23 18 0 0 20 0 15 0 12225837 14314094592 217038 18446744073709551615 4194304 4196468 140722760006224 139661602527632 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=13978608 memory=6944656592455360604 CPUtime=0.4 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) S 27069 27069 18108 0 -1 1077944384 444 0 0 0 22 18 0 0 20 0 15 0 12225837 14314094592 217038 18446744073709551615 4194304 4196468 140722760006224 139661601475088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=13978608 memory=140004324016537 CPUtime=0.4 cores=1,3,5,7

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

/proc/27071/task/27074/stat : 27074 (java) R 27069 27069 18108 0 -1 4202560 95642 0 0 0 7669 171 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661602527216 139661676794599 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=14046268 memory=11814916 CPUtime=78.36 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) R 27069 27069 18108 0 -1 4202560 222483 0 0 0 7667 169 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661601474984 139661676794599 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=14046268 memory=2768 CPUtime=78.03 cores=1,3,5,7
/proc/27071/task/27076/stat : 27076 (java) R 27069 27069 18108 0 -1 4202560 114441 0 0 0 7628 175 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661600422744 139661669116996 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27077] ppid=27069 vsize=14046268 memory=-8774313645642428999 CPUtime=16.39 cores=1,3,5,7
/proc/27071/task/27077/stat : 27077 (java) S 27069 27069 18108 0 -1 1077944384 53933 0 0 0 1604 35 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661162791792 139661684176597 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27078] ppid=27069 vsize=14046268 memory=6944656592452807316 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27078/stat : 27078 (java) S 27069 27069 18108 0 -1 1077944384 61 0 0 0 0 0 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661161739744 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27079] ppid=27069 vsize=14046268 memory=7679937539659563795 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27079/stat : 27079 (java) S 27069 27069 18108 0 -1 1077944384 120 0 0 0 0 0 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661160687104 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27080] ppid=27069 vsize=14046268 memory=-8774313645642428999 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27080/stat : 27080 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661159635664 139661684184987 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27081] ppid=27069 vsize=14046268 memory=4064 CPUtime=0.79 cores=1,3,5,7
/proc/27071/task/27081/stat : 27081 (java) S 27069 27069 18108 0 -1 1077944384 6166 0 0 0 79 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661158582016 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27082] ppid=27069 vsize=14046268 memory=1156 CPUtime=0.91 cores=1,3,5,7
/proc/27071/task/27082/stat : 27082 (java) S 27069 27069 18108 0 -1 1077944384 6647 0 0 0 90 1 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661157529760 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27083] ppid=27069 vsize=14046268 memory=1380 CPUtime=0.35 cores=1,3,5,7
/proc/27071/task/27083/stat : 27083 (java) S 27069 27069 18108 0 -1 1077944384 3774 0 0 0 34 1 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661156477216 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27084] ppid=27069 vsize=14046268 memory=-8774313645642428999 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27084/stat : 27084 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661155424864 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27085] ppid=27069 vsize=14046268 memory=-8990767739041718176 CPUtime=0.15 cores=1,3,5,7
/proc/27071/task/27085/stat : 27085 (java) S 27069 27069 18108 0 -1 1077944384 475 0 0 0 6 9 0 0 20 0 15 0 12225845 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661154372400 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 4 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
Current children cumulated CPU time: 469.9 s
Current children cumulated vsize: 14055780 KiB
Current children cumulated memory: 11816296 KiB

[startup+235.201 s]
/proc/loadavg: 2.26 1.94 1.65 6/212 27108
/proc/meminfo: memFree=18448456/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
[pid=27071] ppid=27069 vsize=14046268 memory=11814916 CPUtime=476.08 cores=1,3,5,7
/proc/27071/stat : 27071 (java) S 27069 27069 18108 0 -1 1077944320 776959 0 0 0 46771 837 0 0 20 0 15 0 12225836 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 140722759988768 139661684166391 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
/proc/27071/statm: 3511567 2953729 3223 1 0 3499860 0
[pid=27071/tid=27072] ppid=27069 vsize=14046268 memory=6944656592455097440 CPUtime=138.15 cores=1,3,5,7
/proc/27071/task/27072/stat : 27072 (java) S 27069 27069 18108 0 -1 1077944384 31185 0 0 0 13726 89 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661688404992 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 3 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27073] ppid=27069 vsize=14046268 memory=1380 CPUtime=79.81 cores=1,3,5,7
/proc/27071/task/27073/stat : 27073 (java) R 27069 27069 18108 0 -1 4202560 239142 0 0 0 7797 184 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661603579984 139661676794599 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27074] ppid=27069 vsize=14046268 memory=11814820 CPUtime=79.92 cores=1,3,5,7
/proc/27071/task/27074/stat : 27074 (java) R 27069 27069 18108 0 -1 4202560 95642 0 0 0 7820 172 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661602527752 139661676794599 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=14046268 memory=1380 CPUtime=79.95 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) R 27069 27069 18108 0 -1 4202560 224125 0 0 0 7826 169 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661601475288 139661669164347 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=14046268 memory=11814916 CPUtime=79.55 cores=1,3,5,7
/proc/27071/task/27076/stat : 27076 (java) R 27069 27069 18108 0 -1 4202560 114441 0 0 0 7779 176 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661600422352 139661676794599 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27077] ppid=27069 vsize=14046268 memory=0 CPUtime=16.39 cores=1,3,5,7
/proc/27071/task/27077/stat : 27077 (java) S 27069 27069 18108 0 -1 1077944384 53939 0 0 0 1604 35 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661162792016 139661684176597 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27078] ppid=27069 vsize=14046268 memory=-8774313645642428999 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27078/stat : 27078 (java) S 27069 27069 18108 0 -1 1077944384 61 0 0 0 0 0 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661161739744 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27079] ppid=27069 vsize=14046268 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27079/stat : 27079 (java) S 27069 27069 18108 0 -1 1077944384 120 0 0 0 0 0 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661160687104 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27080] ppid=27069 vsize=14046268 memory=11814916 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27080/stat : 27080 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661159635664 139661684184987 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27081] ppid=27069 vsize=14046268 memory=952 CPUtime=0.79 cores=1,3,5,7
/proc/27071/task/27081/stat : 27081 (java) S 27069 27069 18108 0 -1 1077944384 6166 0 0 0 79 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661158582016 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27082] ppid=27069 vsize=14046268 memory=1236 CPUtime=0.91 cores=1,3,5,7
/proc/27071/task/27082/stat : 27082 (java) S 27069 27069 18108 0 -1 1077944384 6647 0 0 0 90 1 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661157529760 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27083] ppid=27069 vsize=14046268 memory=2244 CPUtime=0.35 cores=1,3,5,7
/proc/27071/task/27083/stat : 27083 (java) S 27069 27069 18108 0 -1 1077944384 3774 0 0 0 34 1 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661156477216 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27084] ppid=27069 vsize=14046268 memory=4300 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27084/stat : 27084 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661155424864 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27085] ppid=27069 vsize=14046268 memory=1292 CPUtime=0.16 cores=1,3,5,7
/proc/27071/task/27085/stat : 27085 (java) S 27069 27069 18108 0 -1 1077944384 475 0 0 0 7 9 0 0 20 0 15 0 12225845 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661154372400 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 4 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
Current children cumulated CPU time: 476.08 s
Current children cumulated vsize: 14055780 KiB
Current children cumulated memory: 11816296 KiB

[startup+236.801 s]
/proc/loadavg: 2.26 1.94 1.65 6/212 27108
/proc/meminfo: memFree=18448456/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
[pid=27071] ppid=27069 vsize=14046268 memory=11814916 CPUtime=482.27 cores=1,3,5,7
/proc/27071/stat : 27071 (java) S 27069 27069 18108 0 -1 1077944320 777463 0 0 0 47388 839 0 0 20 0 15 0 12225836 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 140722759988768 139661684166391 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
/proc/27071/statm: 3511567 2953729 3223 1 0 3499860 0
[pid=27071/tid=27072] ppid=27069 vsize=14046268 memory=1380 CPUtime=138.15 cores=1,3,5,7
/proc/27071/task/27072/stat : 27072 (java) S 27069 27069 18108 0 -1 1077944384 31185 0 0 0 13726 89 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661688404992 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 3 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27073] ppid=27069 vsize=14046268 memory=4128 CPUtime=81.36 cores=1,3,5,7
/proc/27071/task/27073/stat : 27073 (java) S 27069 27069 18108 0 -1 1077944384 239240 0 0 0 7951 185 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661603580176 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27074] ppid=27069 vsize=14046268 memory=2004 CPUtime=81.44 cores=1,3,5,7
/proc/27071/task/27074/stat : 27074 (java) S 27069 27069 18108 0 -1 1077944384 95642 0 0 0 7971 173 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661602527632 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=14046268 memory=10936 CPUtime=81.53 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) S 27069 27069 18108 0 -1 1077944384 224512 0 0 0 7983 170 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661601475088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=14046268 memory=1700 CPUtime=81.07 cores=1,3,5,7
/proc/27071/task/27076/stat : 27076 (java) S 27069 27069 18108 0 -1 1077944384 114441 0 0 0 7931 176 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661600422544 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27077] ppid=27069 vsize=14046268 memory=1380 CPUtime=16.42 cores=1,3,5,7
/proc/27071/task/27077/stat : 27077 (java) R 27069 27069 18108 0 -1 4202560 53958 0 0 0 1607 35 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661162792016 139661669162900 0 0 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27078] ppid=27069 vsize=14046268 memory=200208 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27078/stat : 27078 (java) S 27069 27069 18108 0 -1 1077944384 61 0 0 0 0 0 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661161739744 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27079] ppid=27069 vsize=14046268 memory=1152 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27079/stat : 27079 (java) S 27069 27069 18108 0 -1 1077944384 120 0 0 0 0 0 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661160687104 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27080] ppid=27069 vsize=14046268 memory=-8774313645642428999 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27080/stat : 27080 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661159635664 139661684184987 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27081] ppid=27069 vsize=14046268 memory=4128 CPUtime=0.79 cores=1,3,5,7
/proc/27071/task/27081/stat : 27081 (java) S 27069 27069 18108 0 -1 1077944384 6166 0 0 0 79 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661158582016 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27082] ppid=27069 vsize=14046268 memory=10576 CPUtime=0.91 cores=1,3,5,7
/proc/27071/task/27082/stat : 27082 (java) S 27069 27069 18108 0 -1 1077944384 6647 0 0 0 90 1 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661157529760 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27083] ppid=27069 vsize=14046268 memory=1292 CPUtime=0.35 cores=1,3,5,7
/proc/27071/task/27083/stat : 27083 (java) S 27069 27069 18108 0 -1 1077944384 3774 0 0 0 34 1 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661156477216 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27084] ppid=27069 vsize=14046268 memory=5408 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27084/stat : 27084 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661155424864 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27085] ppid=27069 vsize=14046268 memory=8676 CPUtime=0.16 cores=1,3,5,7
/proc/27071/task/27085/stat : 27085 (java) S 27069 27069 18108 0 -1 1077944384 475 0 0 0 7 9 0 0 20 0 15 0 12225845 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661154372400 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 4 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
Current children cumulated CPU time: 482.27 s
Current children cumulated vsize: 14055780 KiB
Current children cumulated memory: 11816296 KiB

[startup+237.601 s]
/proc/loadavg: 2.48 1.99 1.67 3/212 27108
/proc/meminfo: memFree=18448456/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
[pid=27071] ppid=27069 vsize=14046268 memory=11814916 CPUtime=483.07 cores=1,3,5,7
/proc/27071/stat : 27071 (java) S 27069 27069 18108 0 -1 1077944320 777463 0 0 0 47468 839 0 0 20 0 15 0 12225836 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 140722759988768 139661684166391 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
/proc/27071/statm: 3511567 2953729 3223 1 0 3499860 0
[pid=27071/tid=27072] ppid=27069 vsize=14046268 memory=1 CPUtime=138.15 cores=1,3,5,7
/proc/27071/task/27072/stat : 27072 (java) S 27069 27069 18108 0 -1 1077944384 31185 0 0 0 13726 89 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661688404992 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 3 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27073] ppid=27069 vsize=14046268 memory=8514726395714825349 CPUtime=81.36 cores=1,3,5,7
/proc/27071/task/27073/stat : 27073 (java) S 27069 27069 18108 0 -1 1077944384 239240 0 0 0 7951 185 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661603580176 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27074] ppid=27069 vsize=14046268 memory=1292 CPUtime=81.44 cores=1,3,5,7
/proc/27071/task/27074/stat : 27074 (java) S 27069 27069 18108 0 -1 1077944384 95642 0 0 0 7971 173 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661602527632 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27075] ppid=27069 vsize=14046268 memory=2436 CPUtime=81.53 cores=1,3,5,7
/proc/27071/task/27075/stat : 27075 (java) S 27069 27069 18108 0 -1 1077944384 224512 0 0 0 7983 170 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661601475088 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27076] ppid=27069 vsize=14046268 memory=1732 CPUtime=81.07 cores=1,3,5,7
/proc/27071/task/27076/stat : 27076 (java) S 27069 27069 18108 0 -1 1077944384 114441 0 0 0 7931 176 0 0 20 0 15 0 12225837 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661600422544 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27077] ppid=27069 vsize=14046268 memory=2004 CPUtime=17.22 cores=1,3,5,7
/proc/27071/task/27077/stat : 27077 (java) R 27069 27069 18108 0 -1 4202560 53958 0 0 0 1687 35 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661162792016 139661669162758 0 0 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27078] ppid=27069 vsize=14046268 memory=0 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27078/stat : 27078 (java) S 27069 27069 18108 0 -1 1077944384 61 0 0 0 0 0 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661161739744 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27079] ppid=27069 vsize=14046268 memory=3054156605651173440 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27079/stat : 27079 (java) S 27069 27069 18108 0 -1 1077944384 120 0 0 0 0 0 0 0 20 0 15 0 12225839 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661160687104 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27080] ppid=27069 vsize=14046268 memory=6944656592455360604 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27080/stat : 27080 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661159635664 139661684184987 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27081] ppid=27069 vsize=14046268 memory=6944656592385698452 CPUtime=0.79 cores=1,3,5,7
/proc/27071/task/27081/stat : 27081 (java) S 27069 27069 18108 0 -1 1077944384 6166 0 0 0 79 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661158582016 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27082] ppid=27069 vsize=14046268 memory=-8774313645642428999 CPUtime=0.91 cores=1,3,5,7
/proc/27071/task/27082/stat : 27082 (java) S 27069 27069 18108 0 -1 1077944384 6647 0 0 0 90 1 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661157529760 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27083] ppid=27069 vsize=14046268 memory=4064 CPUtime=0.35 cores=1,3,5,7
/proc/27071/task/27083/stat : 27083 (java) S 27069 27069 18108 0 -1 1077944384 3774 0 0 0 34 1 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661156477216 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27084] ppid=27069 vsize=14046268 memory=1156 CPUtime=0 cores=1,3,5,7
/proc/27071/task/27084/stat : 27084 (java) S 27069 27069 18108 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 12225842 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661155424864 139661684176597 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
[pid=27071/tid=27085] ppid=27069 vsize=14046268 memory=3148 CPUtime=0.16 cores=1,3,5,7
/proc/27071/task/27085/stat : 27085 (java) S 27069 27069 18108 0 -1 1077944384 475 0 0 0 7 9 0 0 20 0 15 0 12225845 14383378432 2953729 18446744073709551615 4194304 4196468 140722760006224 139661154372400 139661684177538 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 8052736 140722760012210 140722760012386 140722760012386 140722760015823 0
Current children cumulated CPU time: 483.07 s
Current children cumulated vsize: 14055780 KiB
Current children cumulated memory: 11816296 KiB

[startup+237.801 s]
/proc/loadavg: 2.48 1.99 1.67 3/212 27108
/proc/meminfo: memFree=18448456/32770624 swapFree=67108860/67108860
[pid=27069] ppid=27066 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/27069/stat : 27069 (xcsp3-exec) S 27066 27069 18108 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 12225829 9740288 345 18446744073709551615 4194304 5098028 140724491292160 140724491290264 139843291325052 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 7 0 0 7196144 7232144 20156416 140724491297146 140724491297350 140724491297350 140724491300843 0
/proc/27069/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1380 KiB

Child status: 1
Real time (s): 237.825
CPU time (s): 483.306
CPU user time (s): 474.836
CPU system time (s): 8.47006
CPU usage (%): 203.219
Max. virtual memory (cumulated for all children) (KiB): 14055780
Max. memory (cumulated for all children) (KiB): 11818860

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 474.836
system time used= 8.47006
maximum resident set size= 11817480
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 778075
page faults= 0
swaps= 0
block input operations= 0
block output operations= 384
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 12151
involuntary context switches= 3562


# summary of solver processes directly reported to runsolver:
#   pid: 27069
#   total CPU time (s): 483.306
#   total CPU user time (s): 474.836
#   total CPU system time (s): 8.47006

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.38768 second user time and 2.49863 second system time

The end

Launcher Data

Begin job on node131 at 2017-08-19 12:09:28
IDJOB=4282326
IDBENCH=133254
IDSOLVER=2677
FILE ID=node131/4282326-1503138175
RUNJOBID= node131-1503095854-18172
PBS_JOBID= 
Free space on /tmp= 60860 MiB

SOLVER NAME= choco-solver 4.0.5 seq
BENCH NAME= XCSP17/MagicSquare/MagicSquare-table-s1/MagicSquare-6-table.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -ml 11000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4282326-1503138175/watcher-4282326-1503138175 -o /tmp/evaluation-result-4282326-1503138175/solver-4282326-1503138175 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node131-1503095854-18172 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 157843086 HOME/instance-4282326-1503138175.xml

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

MD5SUM BENCH= cfc552cbb2ce3301e89528d2cd5bb011
RANDOM SEED=157843086

node131.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.69
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.69
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.69
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.69
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:        30249828 kB
MemAvailable:   31790276 kB
Buffers:          171972 kB
Cached:          1639764 kB
SwapCached:            0 kB
Active:          1584176 kB
Inactive:         451196 kB
Active(anon):     223904 kB
Inactive(anon):    16748 kB
Active(file):    1360272 kB
Inactive(file):   434448 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:            452180 kB
Writeback:         74528 kB
AnonPages:        223336 kB
Mapped:            43764 kB
Shmem:             17060 kB
Slab:             190080 kB
SReclaimable:     123124 kB
SUnreclaim:        66956 kB
KernelStack:        3424 kB
PageTables:         5464 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1147440 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    147456 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      118144 kB
DirectMap2M:    33427456 kB

Free space on /tmp at the end= 60852 MiB
End job on node131 at 2017-08-19 12:13:26