Trace number 4272416

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 5a (2017-07-26)? 78.462601 22.6978

General information on the benchmark

NameHanoi/Hanoi-m1-s1/
Hanoi-09.xml
MD5SUM974f0afcd706a93e2571fe02010426b6
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 benchmark19.367001
Satisfiable
(Un)Satisfiability was proved
Number of variables510
Number of constraints510
Number of domains1
Minimum domain size19683
Maximum domain size19683
Distribution of domain sizes[{"size":19683,"count":510}]
Minimum variable degree1
Maximum variable degree2
Distribution of variable degrees[{"degree":1,"count":509},{"degree":2,"count":1}]
Minimum constraint arity1
Maximum constraint arity2
Distribution of constraint arities[{"arity":1,"count":1},{"arity":2,"count":509}]
Number of extensional constraints509
Number of intensional constraints1
Distribution of constraint types[{"type":"extension","count":509},{"type":"intension","count":1}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.08	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4272416-1502848978.xml"  -tl '2520s' -p 1 -x 3
0.09/0.27	c [HOME/instance-4272416-1502848978.xml, -tl, 2520s, -p, 1, -x, 3]
0.28/0.33	c simple solver
0.28/0.40	c parse instance...
68.72/20.16	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
78.35/22.64		at java.util.BitSet.initWords(BitSet.java:166)
78.35/22.64		at java.util.BitSet.<init>(BitSet.java:161)
78.35/22.64		at org.chocosolver.solver.constraints.extension.binary.CouplesBitSetTable.<init>(CouplesBitSetTable.java:53)
78.35/22.64		at org.chocosolver.solver.constraints.extension.binary.PropBinAC3bitrm.<init>(PropBinAC3bitrm.java:41)
78.35/22.64		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:392)
78.35/22.64		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:366)
78.35/22.64		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1843)
78.35/22.64		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
78.35/22.64		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
78.35/22.64		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
78.35/22.64		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
78.35/22.64		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
78.35/22.64		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
78.35/22.64		at org.xcsp.parser.XCallbacks$$Lambda$71/786041152.accept(Unknown Source)
78.35/22.64		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
78.35/22.64		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
78.35/22.64		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
78.35/22.64		at org.xcsp.parser.XCallbacks.loadSlide(XCallbacks.java:421)
78.35/22.64		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:370)
78.35/22.64		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
78.35/22.64		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
78.35/22.64		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
78.35/22.64		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
78.35/22.64		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
78.35/22.64		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
78.35/22.64	s UNKNOWN
78.35/22.64	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 (11301 MiB free)
  memory of node 1: 16384 MiB (12199 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4272416-1502848978/watcher-4272416-1502848978 -o /tmp/evaluation-result-4272416-1502848978/solver-4272416-1502848978 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node128-1502649221-29001 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 855795859 HOME/instance-4272416-1502848978.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=9736, runsolver pid=9733

[startup+0.100178 s]*
/proc/loadavg: 2.49 1.88 1.72 4/204 9743
/proc/meminfo: memFree=24059568/32770624 swapFree=67108860/67108860
[pid=9736] ppid=9733 vsize=9512 memory=1376 CPUtime=0 cores=1,3,5,7
/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13441356 memory=15424 CPUtime=0.01 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 3654 0 0 0 1 0 0 0 20 0 7 0 38780327 13763948544 3856 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16784584 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3360339 3856 1962 1 0 3349836 0
[pid=9738/tid=9739] ppid=9736 vsize=13441356 memory=8508281356422317474 CPUtime=0.01 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) R 9736 9736 7968 0 -1 4202560 2444 0 0 0 1 0 0 0 20 0 7 0 38780327 13763948544 3922 18446744073709551615 4194304 4196468 140733411252032 139749382253328 139749359406077 0 4 1 16784584 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13441356 memory=3691042058319900680 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 7 0 38780328 13763948544 3922 18446744073709551615 4194304 4196468 140733411252032 139749312445328 139749378021077 0 4 1 16784584 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13441356 memory=140595093419648 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 7 0 38780328 13763948544 3922 18446744073709551615 4194304 4196468 140733411252032 139749311392528 139749378021077 0 4 1 16784584 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13441356 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 7 0 38780328 13763948544 3922 18446744073709551615 4194304 4196468 140733411252032 139748976540816 139749378021077 0 4 1 16784584 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13441356 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) S 9736 9736 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 7 0 38780328 13763948544 3922 18446744073709551615 4194304 4196468 140733411252032 139748975488016 139749378021077 0 4 1 16784584 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13441356 memory=140595093419648 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) S 9736 9736 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 7 0 38780329 13763948544 3922 18446744073709551615 4194304 4196468 140733411252032 139748923770992 139749378022018 0 0 1 16784584 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
Current children cumulated CPU time: 0.01 s
Current children cumulated vsize: 13450868 KiB
Current children cumulated memory: 16800 KiB

[startup+0.210231 s]*
/proc/loadavg: 2.49 1.88 1.72 4/213 9752
/proc/meminfo: memFree=24050644/32770624 swapFree=67108860/67108860
[pid=9736] ppid=9733 vsize=9512 memory=1376 CPUtime=0 cores=1,3,5,7
/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13974352 memory=27712 CPUtime=0.09 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 5385 0 0 0 8 1 0 0 20 0 15 0 38780327 14309736448 6928 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3493588 6928 2728 1 0 3482964 0
[pid=9738/tid=9739] ppid=9736 vsize=13974352 memory=7022364594140610616 CPUtime=0.07 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) R 9736 9736 7968 0 -1 4202560 3538 0 0 0 7 0 0 0 20 0 15 0 38780327 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139749382224048 139749370688885 0 4 1 16800974 0 0 0 -1 1 0 0 4 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13974352 memory=4294978898 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139749312445328 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13974352 memory=140595093866420 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139749311392528 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748976540816 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) S 9736 9736 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 38780328 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748975488016 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13974352 memory=140595093419648 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) S 9736 9736 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 38780329 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748923770992 139749378022018 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9745] ppid=9736 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9745/stat : 9745 (java) S 9736 9736 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 38780330 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748922716960 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9746] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9746/stat : 9746 (java) S 9736 9736 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 38780330 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748921664624 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9747] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9747/stat : 9747 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780332 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748920612944 139749378029467 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9748] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9748/stat : 9748 (java) S 9736 9736 7968 0 -1 1077944384 307 0 0 0 0 0 0 0 20 0 15 0 38780332 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748919560816 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9749] ppid=9736 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9749/stat : 9749 (java) R 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780332 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748918508016 139749378022018 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9750] ppid=9736 vsize=13974352 memory=140595093419648 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9750/stat : 9750 (java) S 9736 9736 7968 0 -1 1077944384 240 0 0 0 0 0 0 0 20 0 15 0 38780332 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748917455728 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9751] ppid=9736 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9751/stat : 9751 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780333 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748916403168 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9752] ppid=9736 vsize=13974352 memory=140595093419648 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9752/stat : 9752 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780338 14309736448 6992 18446744073709551615 4194304 4196468 140733411252032 139748915349936 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
Current children cumulated CPU time: 0.09 s
Current children cumulated vsize: 13983864 KiB
Current children cumulated memory: 29088 KiB

[startup+0.310532 s]*
/proc/loadavg: 2.49 1.88 1.72 4/213 9752
/proc/meminfo: memFree=24037788/32770624 swapFree=67108860/67108860
[pid=9736] ppid=9733 vsize=9512 memory=1376 CPUtime=0 cores=1,3,5,7
/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13974352 memory=37104 CPUtime=0.28 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 8914 0 0 0 26 2 0 0 20 0 15 0 38780327 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3493588 9276 2972 1 0 3482964 0
[pid=9738/tid=9739] ppid=9736 vsize=13974352 memory=4278483708103473607 CPUtime=0.17 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) R 9736 9736 7968 0 -1 4202560 6156 0 0 0 16 1 0 0 20 0 15 0 38780327 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139749382242000 139749357600930 0 4 1 16800974 0 0 0 -1 1 0 0 4 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13974352 memory=4126316290023845779 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139749312445328 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139749311392528 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748976540816 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) S 9736 9736 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 38780328 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748975488016 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) S 9736 9736 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 38780329 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748923770992 139749378022018 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9745] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9745/stat : 9745 (java) S 9736 9736 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 38780330 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748922716960 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9746] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9746/stat : 9746 (java) S 9736 9736 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 38780330 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748921664624 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9747] ppid=9736 vsize=13974352 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9747/stat : 9747 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780332 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748920612944 139749378029467 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9748] ppid=9736 vsize=13974352 memory=140594949420992 CPUtime=0.01 cores=1,3,5,7
/proc/9738/task/9748/stat : 9748 (java) S 9736 9736 7968 0 -1 1077944384 388 0 0 0 1 0 0 0 20 0 15 0 38780332 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748919560816 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9749] ppid=9736 vsize=13974352 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/9738/task/9749/stat : 9749 (java) R 9736 9736 7968 0 -1 1077944384 349 0 0 0 1 0 0 0 20 0 15 0 38780332 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748918508016 139749378022018 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9750] ppid=9736 vsize=13974352 memory=140595093419648 CPUtime=0.06 cores=1,3,5,7
/proc/9738/task/9750/stat : 9750 (java) R 9736 9736 7968 0 -1 4202560 719 0 0 0 6 0 0 0 20 0 15 0 38780332 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748917455728 139749370247998 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9751] ppid=9736 vsize=13974352 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9751/stat : 9751 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780333 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748916403168 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9752] ppid=9736 vsize=13974352 memory=140595093419648 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9752/stat : 9752 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780338 14309736448 9276 18446744073709551615 4194304 4196468 140733411252032 139748915349936 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
Current children cumulated CPU time: 0.28 s
Current children cumulated vsize: 13983864 KiB
Current children cumulated memory: 38480 KiB

[startup+0.700848 s]
/proc/loadavg: 2.49 1.88 1.72 6/213 9752
/proc/meminfo: memFree=24018260/32770624 swapFree=67108860/67108860
[pid=9736] ppid=9733 vsize=9512 memory=1376 CPUtime=0 cores=1,3,5,7
/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13978684 memory=120032 CPUtime=1.14 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 12495 0 0 0 109 5 0 0 20 0 15 0 38780327 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3494671 30008 3152 1 0 3482964 0
[pid=9738/tid=9739] ppid=9736 vsize=13978684 memory=0 CPUtime=0.55 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) R 9736 9736 7968 0 -1 4202560 7854 0 0 0 52 3 0 0 20 0 15 0 38780327 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139749382246272 139748993876081 0 4 1 16800974 0 0 0 -1 5 0 0 4 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139749312445328 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139749311392528 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780328 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748976540816 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) S 9736 9736 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 38780328 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748975488016 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13978684 memory=9 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) S 9736 9736 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 38780329 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748923770992 139749378022018 0 0 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9745] ppid=9736 vsize=13978684 memory=36 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9745/stat : 9745 (java) S 9736 9736 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748922716960 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9746] ppid=9736 vsize=13978684 memory=2 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9746/stat : 9746 (java) S 9736 9736 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748921664624 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9747] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9747/stat : 9747 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780332 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748920612944 139749378029467 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9748] ppid=9736 vsize=13978684 memory=0 CPUtime=0.17 cores=1,3,5,7
/proc/9738/task/9748/stat : 9748 (java) R 9736 9736 7968 0 -1 4202560 1060 0 0 0 17 0 0 0 20 0 15 0 38780332 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748919541832 139749359554594 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9749] ppid=9736 vsize=13978684 memory=4124 CPUtime=0.2 cores=1,3,5,7
/proc/9738/task/9749/stat : 9749 (java) R 9736 9736 7968 0 -1 4202560 1095 0 0 0 20 0 0 0 20 0 15 0 38780332 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748918493896 139749359554988 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9750] ppid=9736 vsize=13978684 memory=0 CPUtime=0.18 cores=1,3,5,7
/proc/9738/task/9750/stat : 9750 (java) S 9736 9736 7968 0 -1 1077944384 1216 0 0 0 18 0 0 0 20 0 15 0 38780332 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748917455728 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9751] ppid=9736 vsize=13978684 memory=140594949137008 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9751/stat : 9751 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780333 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748916403168 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9752] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9752/stat : 9752 (java) S 9736 9736 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 38780338 14314172416 30008 18446744073709551615 4194304 4196468 140733411252032 139748915349936 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
Current children cumulated CPU time: 1.14 s
Current children cumulated vsize: 13988196 KiB
Current children cumulated memory: 121408 KiB

[startup+1.50724 s]
/proc/loadavg: 2.49 1.88 1.72 5/213 9752
/proc/meminfo: memFree=23887012/32770624 swapFree=67108860/67108860
[pid=9736] ppid=9733 vsize=9512 memory=1376 CPUtime=0 cores=1,3,5,7
/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13978684 memory=715092 CPUtime=3.72 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 16883 0 0 0 307 65 0 0 20 0 15 0 38780327 14314172416 178773 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3494671 178773 3218 1 0 3482964 0
[pid=9738/tid=9739] ppid=9736 vsize=13978684 memory=182407261080596 CPUtime=1 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) S 9736 9736 7968 0 -1 1077944384 8426 0 0 0 95 5 0 0 20 0 15 0 38780327 14314172416 178773 18446744073709551615 4194304 4196468 140733411252032 139749382248736 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 4 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13978684 memory=0 CPUtime=0.32 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) R 9736 9736 7968 0 -1 4202560 688 0 0 0 18 14 0 0 20 0 15 0 38780328 14314172416 178773 18446744073709551615 4194304 4196468 140733411252032 139749312445328 139749371110571 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13978684 memory=1376 CPUtime=0.31 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) R 9736 9736 7968 0 -1 4202560 607 0 0 0 17 14 0 0 20 0 15 0 38780328 14314172416 178773 18446744073709551615 4194304 4196468 140733411252032 139749311392728 139749371107596 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13978684 memory=120032 CPUtime=0.31 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) R 9736 9736 7968 0 -1 4202560 534 0 0 0 17 14 0 0 20 0 15 0 38780328 14314172416 178773 18446744073709551615 4194304 4196468 140733411252032 139748976540704 139749371110571 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13978684 memory=7014751519717677416 CPUtime=0.31 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) R 9736 9736 7968 0 -1 4202560 502 0 0 0 18 13 0 0 20 0 15 0 38780328 14314172416 178773 18446744073709551615 4194304 4196468 140733411252032 139748975488016 139749371110571 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13978684 memory=7378419362579376747 CPUtime=0.01 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) S 9736 9736 7968 0 -1 1077944384 294 0 0 0 1 0 0 0 20 0 15 0 38780329 14314172416 178773 18446744073709551615 4194304 4196468 140733411252032 139748923769504 139749378021077 0 0 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9745] ppid=9736 vsize=13978684 memory=23112 CPUtime=0 cores=1,3,5,7

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

/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13978684 memory=11428268 CPUtime=71.27 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 170168 0 0 0 5999 1128 0 0 20 0 15 0 38780327 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3494671 2857067 3223 1 0 3482964 0
[pid=9738/tid=9739] ppid=9736 vsize=13978684 memory=4124 CPUtime=3.07 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) S 9736 9736 7968 0 -1 1077944384 10679 0 0 0 300 7 0 0 20 0 15 0 38780327 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749382250368 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 4 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13978684 memory=1376 CPUtime=16.38 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) R 9736 9736 7968 0 -1 4202560 29746 0 0 0 1354 284 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749312445448 139749371110552 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13978684 memory=0 CPUtime=16.48 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) R 9736 9736 7968 0 -1 4202560 32095 0 0 0 1393 255 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749311392528 139749371110531 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13978684 memory=6609 CPUtime=16.39 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) R 9736 9736 7968 0 -1 4202560 33935 0 0 0 1348 291 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748976540624 139749371110531 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13978684 memory=307 CPUtime=16.41 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) R 9736 9736 7968 0 -1 4202560 33877 0 0 0 1359 282 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748975487824 139749371110557 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13978684 memory=7680170660397595203 CPUtime=0.96 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) S 9736 9736 7968 0 -1 1077944384 22795 0 0 0 94 2 0 0 20 0 15 0 38780329 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748923769536 139749378021077 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9745] ppid=9736 vsize=13978684 memory=6944656592455360569 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9745/stat : 9745 (java) S 9736 9736 7968 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748922717024 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9746] ppid=9736 vsize=13978684 memory=-7457052372387209120 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9746/stat : 9746 (java) S 9736 9736 7968 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748921664640 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9747] ppid=9736 vsize=13978684 memory=7679937539659563834 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9747/stat : 9747 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748920612944 139749378029467 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9748] ppid=9736 vsize=13978684 memory=6944613755328037015 CPUtime=0.57 cores=1,3,5,7
/proc/9738/task/9748/stat : 9748 (java) S 9736 9736 7968 0 -1 1077944384 2064 0 0 0 57 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748919560816 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9749] ppid=9736 vsize=13978684 memory=7679937539659563834 CPUtime=0.59 cores=1,3,5,7
/proc/9738/task/9749/stat : 9749 (java) S 9736 9736 7968 0 -1 1077944384 1774 0 0 0 59 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748918508016 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9750] ppid=9736 vsize=13978684 memory=6944656592455360569 CPUtime=0.3 cores=1,3,5,7
/proc/9738/task/9750/stat : 9750 (java) S 9736 9736 7968 0 -1 1077944384 1602 0 0 0 30 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748917455728 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9751] ppid=9736 vsize=13978684 memory=-7025448733113094249 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9751/stat : 9751 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780333 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748916403168 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9752] ppid=9736 vsize=13978684 memory=6944656592455360569 CPUtime=0.01 cores=1,3,5,7
/proc/9738/task/9752/stat : 9752 (java) R 9736 9736 7968 0 -1 1077944384 300 0 0 0 0 1 0 0 20 0 15 0 38780338 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748915349936 139749378022018 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
Current children cumulated CPU time: 71.27 s
Current children cumulated vsize: 13988196 KiB
Current children cumulated memory: 11429644 KiB

[startup+21.6013 s]
/proc/loadavg: 2.95 2.02 1.77 6/213 9755
/proc/meminfo: memFree=12631424/32770624 swapFree=67108860/67108860
[pid=9736] ppid=9733 vsize=9512 memory=1376 CPUtime=0 cores=1,3,5,7
/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13978684 memory=11428268 CPUtime=74.44 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 170896 0 0 0 6316 1128 0 0 20 0 15 0 38780327 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3494671 2857067 3223 1 0 3482964 0
[pid=9738/tid=9739] ppid=9736 vsize=13978684 memory=11428092 CPUtime=3.07 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) S 9736 9736 7968 0 -1 1077944384 10679 0 0 0 300 7 0 0 20 0 15 0 38780327 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749382250368 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 4 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13978684 memory=7680170660397595203 CPUtime=17.16 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) R 9736 9736 7968 0 -1 4202560 29879 0 0 0 1432 284 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749312445448 139749371115569 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13978684 memory=0 CPUtime=17.27 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) R 9736 9736 7968 0 -1 4202560 32148 0 0 0 1472 255 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749311392648 139749363007281 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13978684 memory=1376 CPUtime=17.18 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) R 9736 9736 7968 0 -1 4202560 33990 0 0 0 1427 291 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748976540936 139749371110539 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13978684 memory=11428268 CPUtime=17.21 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) R 9736 9736 7968 0 -1 4202560 34364 0 0 0 1439 282 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748975488136 139749362710787 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13978684 memory=310 CPUtime=0.96 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) S 9736 9736 7968 0 -1 1077944384 22795 0 0 0 94 2 0 0 20 0 15 0 38780329 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748923769536 139749378021077 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9745] ppid=9736 vsize=13978684 memory=111 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9745/stat : 9745 (java) S 9736 9736 7968 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748922717024 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9746] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9746/stat : 9746 (java) S 9736 9736 7968 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748921664640 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9747] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9747/stat : 9747 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748920612944 139749378029467 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9748] ppid=9736 vsize=13978684 memory=4580 CPUtime=0.57 cores=1,3,5,7
/proc/9738/task/9748/stat : 9748 (java) S 9736 9736 7968 0 -1 1077944384 2064 0 0 0 57 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748919560816 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9749] ppid=9736 vsize=13978684 memory=6656426216303648864 CPUtime=0.59 cores=1,3,5,7
/proc/9738/task/9749/stat : 9749 (java) S 9736 9736 7968 0 -1 1077944384 1774 0 0 0 59 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748918508016 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9750] ppid=9736 vsize=13978684 memory=6944656592455359580 CPUtime=0.3 cores=1,3,5,7
/proc/9738/task/9750/stat : 9750 (java) S 9736 9736 7968 0 -1 1077944384 1602 0 0 0 30 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748917455728 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9751] ppid=9736 vsize=13978684 memory=6944656575208382560 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9751/stat : 9751 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780333 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748916403168 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9752] ppid=9736 vsize=13978684 memory=6944652177228980320 CPUtime=0.01 cores=1,3,5,7
/proc/9738/task/9752/stat : 9752 (java) S 9736 9736 7968 0 -1 1077944384 300 0 0 0 0 1 0 0 20 0 15 0 38780338 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748915349936 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
Current children cumulated CPU time: 74.44 s
Current children cumulated vsize: 13988196 KiB
Current children cumulated memory: 11429644 KiB

[startup+22.4013 s]
/proc/loadavg: 2.95 2.02 1.77 6/213 9755
/proc/meminfo: memFree=12631300/32770624 swapFree=67108860/67108860
[pid=9736] ppid=9733 vsize=9512 memory=1376 CPUtime=0 cores=1,3,5,7
/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13978684 memory=11428268 CPUtime=77.62 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 170897 0 0 0 6634 1128 0 0 20 0 15 0 38780327 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3494671 2857067 3223 1 0 3482964 0
[pid=9738/tid=9739] ppid=9736 vsize=13978684 memory=0 CPUtime=3.07 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) S 9736 9736 7968 0 -1 1077944384 10679 0 0 0 300 7 0 0 20 0 15 0 38780327 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749382250368 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 4 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13978684 memory=66 CPUtime=17.94 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) R 9736 9736 7968 0 -1 4202560 29879 0 0 0 1510 284 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749312445448 139749371110531 0 4 1 16800974 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13978684 memory=1376 CPUtime=18.07 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) R 9736 9736 7968 0 -1 4202560 32148 0 0 0 1552 255 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139749311392648 139749371110539 0 4 1 16800974 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13978684 memory=11428092 CPUtime=17.98 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) R 9736 9736 7968 0 -1 4202560 33990 0 0 0 1507 291 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748976540936 139749363007227 0 4 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13978684 memory=1376 CPUtime=18.01 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) R 9736 9736 7968 0 -1 4202560 34365 0 0 0 1519 282 0 0 20 0 15 0 38780328 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748975488136 139749371110531 0 4 1 16800974 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13978684 memory=11428268 CPUtime=0.96 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) S 9736 9736 7968 0 -1 1077944384 22795 0 0 0 94 2 0 0 20 0 15 0 38780329 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748923769536 139749378021077 0 0 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9745] ppid=9736 vsize=13978684 memory=1700 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9745/stat : 9745 (java) S 9736 9736 7968 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748922717024 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9746] ppid=9736 vsize=13978684 memory=1228 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9746/stat : 9746 (java) S 9736 9736 7968 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748921664640 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9747] ppid=9736 vsize=13978684 memory=1000 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9747/stat : 9747 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748920612944 139749378029467 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9748] ppid=9736 vsize=13978684 memory=2012 CPUtime=0.57 cores=1,3,5,7
/proc/9738/task/9748/stat : 9748 (java) S 9736 9736 7968 0 -1 1077944384 2064 0 0 0 57 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748919560816 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9749] ppid=9736 vsize=13978684 memory=11428104 CPUtime=0.59 cores=1,3,5,7
/proc/9738/task/9749/stat : 9749 (java) S 9736 9736 7968 0 -1 1077944384 1774 0 0 0 59 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748918508016 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9750] ppid=9736 vsize=13978684 memory=1376 CPUtime=0.3 cores=1,3,5,7
/proc/9738/task/9750/stat : 9750 (java) S 9736 9736 7968 0 -1 1077944384 1602 0 0 0 30 0 0 0 20 0 15 0 38780332 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748917455728 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9751] ppid=9736 vsize=13978684 memory=11428092 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9751/stat : 9751 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780333 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748916403168 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9752] ppid=9736 vsize=13978684 memory=9992 CPUtime=0.01 cores=1,3,5,7
/proc/9738/task/9752/stat : 9752 (java) S 9736 9736 7968 0 -1 1077944384 300 0 0 0 0 1 0 0 20 0 15 0 38780338 14314172416 2857067 18446744073709551615 4194304 4196468 140733411252032 139748915349936 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
Current children cumulated CPU time: 77.62 s
Current children cumulated vsize: 13988196 KiB
Current children cumulated memory: 11429644 KiB

[startup+22.601 s]
/proc/loadavg: 2.95 2.02 1.77 6/213 9755
/proc/meminfo: memFree=12631300/32770624 swapFree=67108860/67108860
[pid=9736] ppid=9733 vsize=9512 memory=1376 CPUtime=0 cores=1,3,5,7
/proc/9736/stat : 9736 (xcsp3-exec) S 9733 9736 7968 0 -1 4202496 514 0 0 0 0 0 0 0 20 0 1 0 38780318 9740288 344 18446744073709551615 4194304 5098028 140730639305856 140730639303960 140103467766396 0 65536 5 65538 18446744071579417331 0 0 17 1 0 0 8 0 0 7196144 7232144 25280512 140730639311226 140730639311430 140730639311430 140730639314923 0
/proc/9736/statm: 2378 344 289 221 0 87 0
[pid=9738] ppid=9736 vsize=13978684 memory=11428272 CPUtime=78.35 cores=1,3,5,7
/proc/9738/stat : 9738 (java) S 9736 9736 7968 0 -1 1077944320 171540 0 0 0 6707 1128 0 0 20 0 15 0 38780327 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 140733411234576 139749378010871 0 0 1 16800974 18446744073709551615 0 0 17 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
/proc/9738/statm: 3494671 2857068 3223 1 0 3482964 0
[pid=9738/tid=9739] ppid=9736 vsize=13978684 memory=4040 CPUtime=3.07 cores=1,3,5,7
/proc/9738/task/9739/stat : 9739 (java) S 9736 9736 7968 0 -1 1077944384 10679 0 0 0 300 7 0 0 20 0 15 0 38780327 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139749382250368 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 4 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9740] ppid=9736 vsize=13978684 memory=7680170660397595203 CPUtime=18.12 cores=1,3,5,7
/proc/9738/task/9740/stat : 9740 (java) S 9736 9736 7968 0 -1 1077944384 29879 0 0 0 1528 284 0 0 20 0 15 0 38780328 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139749312445328 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9741] ppid=9736 vsize=13978684 memory=111 CPUtime=18.25 cores=1,3,5,7
/proc/9738/task/9741/stat : 9741 (java) S 9736 9736 7968 0 -1 1077944384 32148 0 0 0 1570 255 0 0 20 0 15 0 38780328 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139749311392528 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9742] ppid=9736 vsize=13978684 memory=0 CPUtime=18.16 cores=1,3,5,7
/proc/9738/task/9742/stat : 9742 (java) S 9736 9736 7968 0 -1 1077944384 33990 0 0 0 1525 291 0 0 20 0 15 0 38780328 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748976540816 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9743] ppid=9736 vsize=13978684 memory=66 CPUtime=18.19 cores=1,3,5,7
/proc/9738/task/9743/stat : 9743 (java) S 9736 9736 7968 0 -1 1077944384 34365 0 0 0 1537 282 0 0 20 0 15 0 38780328 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748975488016 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9744] ppid=9736 vsize=13978684 memory=254 CPUtime=0.99 cores=1,3,5,7
/proc/9738/task/9744/stat : 9744 (java) R 9736 9736 7968 0 -1 4202560 23438 0 0 0 96 3 0 0 20 0 15 0 38780329 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748923769536 139749356381051 0 0 1 16800974 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9745] ppid=9736 vsize=13978684 memory=1366 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9745/stat : 9745 (java) S 9736 9736 7968 0 -1 1077944384 37 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748922717024 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9746] ppid=9736 vsize=13978684 memory=0 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9746/stat : 9746 (java) S 9736 9736 7968 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 38780330 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748921664640 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9747] ppid=9736 vsize=13978684 memory=510 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9747/stat : 9747 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780332 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748920612944 139749378029467 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9748] ppid=9736 vsize=13978684 memory=5520 CPUtime=0.57 cores=1,3,5,7
/proc/9738/task/9748/stat : 9748 (java) S 9736 9736 7968 0 -1 1077944384 2064 0 0 0 57 0 0 0 20 0 15 0 38780332 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748919560816 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9749] ppid=9736 vsize=13978684 memory=4612 CPUtime=0.59 cores=1,3,5,7
/proc/9738/task/9749/stat : 9749 (java) S 9736 9736 7968 0 -1 1077944384 1774 0 0 0 59 0 0 0 20 0 15 0 38780332 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748918508016 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9750] ppid=9736 vsize=13978684 memory=792 CPUtime=0.3 cores=1,3,5,7
/proc/9738/task/9750/stat : 9750 (java) S 9736 9736 7968 0 -1 1077944384 1602 0 0 0 30 0 0 0 20 0 15 0 38780332 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748917455728 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9751] ppid=9736 vsize=13978684 memory=8712 CPUtime=0 cores=1,3,5,7
/proc/9738/task/9751/stat : 9751 (java) S 9736 9736 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 38780333 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748916403168 139749378021077 0 4 1 16800974 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
[pid=9738/tid=9752] ppid=9736 vsize=13978684 memory=1440 CPUtime=0.01 cores=1,3,5,7
/proc/9738/task/9752/stat : 9752 (java) S 9736 9736 7968 0 -1 1077944384 300 0 0 0 0 1 0 0 20 0 15 0 38780338 14314172416 2857068 18446744073709551615 4194304 4196468 140733411252032 139748915349936 139749378022018 0 4 1 16800974 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17215488 140733411258802 140733411258978 140733411258978 140733411262415 0
Current children cumulated CPU time: 78.35 s
Current children cumulated vsize: 13988196 KiB
Current children cumulated memory: 11429648 KiB

Child status: 1
Real time (s): 22.6978
CPU time (s): 78.4626
CPU user time (s): 67.1246
CPU system time (s): 11.338
CPU usage (%): 345.684
Max. virtual memory (cumulated for all children) (KiB): 13988196
Max. memory (cumulated for all children) (KiB): 11429648

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 67.1246
system time used= 11.338
maximum resident set size= 11428672
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 172228
page faults= 0
swaps= 0
block input operations= 0
block output operations= 128
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 4238
involuntary context switches= 694


# summary of solver processes directly reported to runsolver:
#   pid: 9736
#   total CPU time (s): 78.4626
#   total CPU user time (s): 67.1246
#   total CPU system time (s): 11.338

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.181866 second user time and 0.292011 second system time

The end

Launcher Data

Begin job on node128 at 2017-08-16 03:48:59
IDJOB=4272416
IDBENCH=138764
IDSOLVER=2664
FILE ID=node128/4272416-1502848978
RUNJOBID= node128-1502649221-29001
PBS_JOBID= 
Free space on /tmp= 62024 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/Hanoi/Hanoi-m1-s1/Hanoi-09.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-4272416-1502848978/watcher-4272416-1502848978 -o /tmp/evaluation-result-4272416-1502848978/solver-4272416-1502848978 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node128-1502649221-29001 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 855795859 HOME/instance-4272416-1502848978.xml

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

MD5SUM BENCH= 974f0afcd706a93e2571fe02010426b6
RANDOM SEED=855795859

node128.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.94
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.94
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.94
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.94
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:        24065416 kB
MemAvailable:   25030756 kB
Buffers:          240508 kB
Cached:          1016060 kB
SwapCached:            0 kB
Active:          7363244 kB
Inactive:         908564 kB
Active(anon):    7015584 kB
Inactive(anon):    24956 kB
Active(file):     347660 kB
Inactive(file):   883608 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              8824 kB
Writeback:             4 kB
AnonPages:       7015036 kB
Mapped:            51456 kB
Shmem:             25308 kB
Slab:             125408 kB
SReclaimable:      99812 kB
SUnreclaim:        25596 kB
KernelStack:        3472 kB
PageTables:        18844 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    8609996 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   6879232 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      132480 kB
DirectMap2M:    33413120 kB

Free space on /tmp at the end= 62016 MiB
End job on node128 at 2017-08-16 03:49:22