Trace number 4272797

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)? 2302.71 724.414

General information on the benchmark

NameSuperSolutions/SuperSolutions-Taillard-js20-15/
SuperTaillard-js-20-15-15.xml
MD5SUM6d7e3033fdb5217c74d2816bb8c5b7b8
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables600
Number of constraints9690
Number of domains95
Minimum domain size1346
Maximum domain size1444
Distribution of domain sizes[{"size":1346,"count":6},{"size":1347,"count":4},{"size":1348,"count":4},{"size":1349,"count":2},{"size":1350,"count":2},{"size":1351,"count":6},{"size":1352,"count":2},{"size":1353,"count":6},{"size":1354,"count":4},{"size":1355,"count":2},{"size":1356,"count":12},{"size":1357,"count":8},{"size":1358,"count":8},{"size":1359,"count":8},{"size":1360,"count":8},{"size":1361,"count":4},{"size":1362,"count":10},{"size":1363,"count":8},{"size":1364,"count":2},{"size":1365,"count":14},{"size":1366,"count":6},{"size":1367,"count":14},{"size":1368,"count":6},{"size":1369,"count":10},{"size":1370,"count":14},"...",{"size":1419,"count":10}, {"size":1420,"count":8}, {"size":1421,"count":6}, {"size":1422,"count":4}, {"size":1423,"count":6}, {"size":1424,"count":2}, {"size":1425,"count":8}, {"size":1426,"count":4}, {"size":1427,"count":10}, {"size":1429,"count":4}, {"size":1430,"count":12}, {"size":1431,"count":6}, {"size":1432,"count":14}, {"size":1433,"count":6}, {"size":1434,"count":12}, {"size":1435,"count":8}, {"size":1436,"count":4}, {"size":1437,"count":4}, {"size":1438,"count":6}, {"size":1439,"count":10}, {"size":1440,"count":6}, {"size":1441,"count":8}, {"size":1442,"count":8}, {"size":1443,"count":2}, {"size":1444,"count":12}]
Minimum variable degree21
Maximum variable degree43
Distribution of variable degrees[{"degree":21,"count":40},{"degree":22,"count":260},{"degree":41,"count":40},{"degree":43,"count":260}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":9690}]
Number of extensional constraints0
Number of intensional constraints9690
Distribution of constraint types[{"type":"intension","count":9690}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.00	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4272797-1502848287.xml"  -tl '2520s' -p 1 -x 3
0.12/0.14	c [HOME/instance-4272797-1502848287.xml, -tl, 2520s, -p, 1, -x, 3]
0.12/0.20	c simple solver
0.34/0.26	c parse instance...
2302.58/724.34	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
2302.58/724.34		at java.util.Arrays.copyOf(Arrays.java:3181)
2302.58/724.34		at java.util.ArrayList.grow(ArrayList.java:261)
2302.58/724.34		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
2302.58/724.34		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
2302.58/724.34		at java.util.ArrayList.add(ArrayList.java:458)
2302.58/724.34		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:158)
2302.58/724.34		at org.chocosolver.solver.constraints.extension.TuplesFactory.generateTuples(TuplesFactory.java:88)
2302.58/724.34		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:148)
2302.58/724.34		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
2302.58/724.34		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
2302.58/724.34		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
2302.58/724.34		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
2302.58/724.34		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
2302.58/724.34		at org.xcsp.parser.XCallbacks$$Lambda$46/2007331442.accept(Unknown Source)
2302.58/724.34		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
2302.58/724.34		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
2302.58/724.34		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
2302.58/724.34		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
2302.58/724.34		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
2302.58/724.34		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
2302.58/724.34		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
2302.58/724.34		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
2302.58/724.34		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
2302.58/724.34		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
2302.58/724.34		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
2302.58/724.34	s UNKNOWN
2302.58/724.34	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 (7035 MiB free)
  memory of node 1: 16384 MiB (15562 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4272797-1502848287/watcher-4272797-1502848287 -o /tmp/evaluation-result-4272797-1502848287/solver-4272797-1502848287 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node103-1502842139-30799 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 566014979 HOME/instance-4272797-1502848287.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=31907, runsolver pid=31904

[startup+0.100089 s]*
/proc/loadavg: 1.92 1.74 1.70 3/217 31923
/proc/meminfo: memFree=23121096/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/statm: 2378 345 289 221 0 87 0
[pid=31909] ppid=31907 vsize=13978596 memory=29792 CPUtime=0.12 cores=1,3,5,7
/proc/31909/stat : 31909 (java) S 31907 31907 30767 0 -1 1077944320 5359 0 0 0 11 1 0 0 20 0 15 0 117916914 14314082304 7448 33554432000 4194304 4196468 140736109036592 140736109019136 140571723644663 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
/proc/31909/statm: 3494649 7448 2869 1 0 3482966 0
[pid=31909/tid=31910] ppid=31907 vsize=13978596 memory=8514701219881125282 CPUtime=0.09 cores=1,3,5,7
/proc/31909/task/31910/stat : 31910 (java) R 31907 31907 30767 0 -1 4202560 3321 0 0 0 8 1 0 0 20 0 15 0 117916914 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571727877184 140571343704903 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31911] ppid=31907 vsize=13978596 memory=3472468631603889360 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31911/stat : 31911 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571676264976 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31912] ppid=31907 vsize=13978596 memory=140502708737664 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31912/stat : 31912 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571675212432 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31913] ppid=31907 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31913/stat : 31913 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571674159376 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31914] ppid=31907 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31914/stat : 31914 (java) S 31907 31907 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117916915 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571673106832 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31915] ppid=31907 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31915/stat : 31915 (java) S 31907 31907 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117916916 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571265043184 140571723655810 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31916] ppid=31907 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31916/stat : 31916 (java) S 31907 31907 30767 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117916916 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571263989408 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31917] ppid=31907 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31917/stat : 31917 (java) S 31907 31907 30767 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117916917 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571262936304 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31918] ppid=31907 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31918/stat : 31918 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14314082304 7448 33554432000 4194304 4196468 140736109036592 140571261884880 140571723663259 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31919] ppid=31907 vsize=13978596 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31919/stat : 31919 (java) S 31907 31907 30767 0 -1 1077944384 309 0 0 0 0 0 0 0 20 0 15 0 117916919 14314082304 7514 33554432000 4194304 4196468 140736109036592 140571260831984 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31920] ppid=31907 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31920/stat : 31920 (java) S 31907 31907 30767 0 -1 1077944384 121 0 0 0 0 0 0 0 20 0 15 0 117916919 14314082304 7514 33554432000 4194304 4196468 140736109036592 140570697918832 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31921] ppid=31907 vsize=13978596 memory=140502708737664 CPUtime=0.01 cores=1,3,5,7
/proc/31909/task/31921/stat : 31921 (java) R 31907 31907 30767 0 -1 4202560 332 0 0 0 1 0 0 0 20 0 15 0 117916919 14314082304 7514 33554432000 4194304 4196468 140736109036592 140570696865776 140571702601001 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31922] ppid=31907 vsize=13978596 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31922/stat : 31922 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14314082304 7514 33554432000 4194304 4196468 140736109036592 140570695813472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31923] ppid=31907 vsize=13978596 memory=140502708737664 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31923/stat : 31923 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916919 14314082304 7514 33554432000 4194304 4196468 140736109036592 140570694761520 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 13988108 KiB
Current children cumulated memory: 31172 KiB

[startup+0.210678 s]*
/proc/loadavg: 1.92 1.74 1.70 3/217 31923
/proc/meminfo: memFree=23109312/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/statm: 2378 345 289 221 0 87 0
[pid=31909] ppid=31907 vsize=13982852 memory=42508 CPUtime=0.34 cores=1,3,5,7
/proc/31909/stat : 31909 (java) S 31907 31907 30767 0 -1 1077944320 8128 0 0 0 31 3 0 0 20 0 15 0 117916914 14318440448 10627 33554432000 4194304 4196468 140736109036592 140736109019136 140571723644663 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
/proc/31909/statm: 3495713 10627 3074 1 0 3482966 0
[pid=31909/tid=31910] ppid=31907 vsize=13982852 memory=5855082630820233377 CPUtime=0.2 cores=1,3,5,7
/proc/31909/task/31910/stat : 31910 (java) R 31907 31907 30767 0 -1 4202560 5239 0 0 0 18 2 0 0 20 0 15 0 117916914 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571727856368 140571707725150 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31911] ppid=31907 vsize=13982852 memory=3472468631603889360 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31911/stat : 31911 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571676264976 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31912] ppid=31907 vsize=13982852 memory=140502708737664 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31912/stat : 31912 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571675212432 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31913] ppid=31907 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31913/stat : 31913 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571674159376 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31914] ppid=31907 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31914/stat : 31914 (java) S 31907 31907 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117916915 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571673106832 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31915] ppid=31907 vsize=13982852 memory=140502708737664 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31915/stat : 31915 (java) S 31907 31907 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117916916 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571265043184 140571723655810 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31916] ppid=31907 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31916/stat : 31916 (java) S 31907 31907 30767 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117916916 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571263989408 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31917] ppid=31907 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31917/stat : 31917 (java) S 31907 31907 30767 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117916917 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571262936304 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31918] ppid=31907 vsize=13982852 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31918/stat : 31918 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571261884880 140571723663259 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31919] ppid=31907 vsize=13982852 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/31909/task/31919/stat : 31919 (java) S 31907 31907 30767 0 -1 1077944384 426 0 0 0 3 0 0 0 20 0 15 0 117916919 14318440448 10627 33554432000 4194304 4196468 140736109036592 140571260831984 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31920] ppid=31907 vsize=13982852 memory=-1 CPUtime=0.02 cores=1,3,5,7
/proc/31909/task/31920/stat : 31920 (java) S 31907 31907 30767 0 -1 1077944384 339 0 0 0 2 0 0 0 20 0 15 0 117916919 14318440448 10627 33554432000 4194304 4196468 140736109036592 140570697918832 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31921] ppid=31907 vsize=13982852 memory=140502708737664 CPUtime=0.08 cores=1,3,5,7
/proc/31909/task/31921/stat : 31921 (java) R 31907 31907 30767 0 -1 4202560 821 0 0 0 8 0 0 0 20 0 15 0 117916919 14318440448 10627 33554432000 4194304 4196468 140736109036592 140570696865776 140571702593121 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31922] ppid=31907 vsize=13982852 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31922/stat : 31922 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14318440448 10627 33554432000 4194304 4196468 140736109036592 140570695813472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31923] ppid=31907 vsize=13982852 memory=140502708737664 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31923/stat : 31923 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916919 14318440448 10627 33554432000 4194304 4196468 140736109036592 140570694761520 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 43888 KiB

[startup+0.310514 s]*
/proc/loadavg: 1.92 1.74 1.70 4/217 31923
/proc/meminfo: memFree=23102612/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/statm: 2378 345 289 221 0 87 0
[pid=31909] ppid=31907 vsize=13982852 memory=49276 CPUtime=0.51 cores=1,3,5,7
/proc/31909/stat : 31909 (java) S 31907 31907 30767 0 -1 1077944320 8987 0 0 0 48 3 0 0 20 0 15 0 117916914 14318440448 12319 33554432000 4194304 4196468 140736109036592 140736109019136 140571723644663 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
/proc/31909/statm: 3495713 12319 3107 1 0 3482966 0
[pid=31909/tid=31910] ppid=31907 vsize=13982852 memory=-8540663193526752614 CPUtime=0.29 cores=1,3,5,7
/proc/31909/task/31910/stat : 31910 (java) R 31907 31907 30767 0 -1 4202560 5899 0 0 0 27 2 0 0 20 0 15 0 117916914 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571727880400 140571343686087 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31911] ppid=31907 vsize=13982852 memory=3472468631603889360 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31911/stat : 31911 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571676264976 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31912] ppid=31907 vsize=13982852 memory=140502708768431 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31912/stat : 31912 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571675212432 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31913] ppid=31907 vsize=13982852 memory=140502607473497 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31913/stat : 31913 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571674159376 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31914] ppid=31907 vsize=13982852 memory=140502607444943 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31914/stat : 31914 (java) S 31907 31907 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117916915 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571673106832 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31915] ppid=31907 vsize=13982852 memory=140502708768462 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31915/stat : 31915 (java) S 31907 31907 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117916916 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571265043184 140571723655810 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31916] ppid=31907 vsize=13982852 memory=140502607454159 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31916/stat : 31916 (java) S 31907 31907 30767 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117916916 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571263989408 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31917] ppid=31907 vsize=13982852 memory=281005214906000 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31917/stat : 31917 (java) S 31907 31907 30767 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117916917 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571262936304 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31918] ppid=31907 vsize=13982852 memory=281005214912880 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31918/stat : 31918 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571261884880 140571723663259 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31919] ppid=31907 vsize=13982852 memory=0 CPUtime=0.03 cores=1,3,5,7
/proc/31909/task/31919/stat : 31919 (java) S 31907 31907 30767 0 -1 1077944384 471 0 0 0 3 0 0 0 20 0 15 0 117916919 14318440448 12319 33554432000 4194304 4196468 140736109036592 140571260831984 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31920] ppid=31907 vsize=13982852 memory=2240 CPUtime=0.03 cores=1,3,5,7
/proc/31909/task/31920/stat : 31920 (java) S 31907 31907 30767 0 -1 1077944384 383 0 0 0 3 0 0 0 20 0 15 0 117916919 14318440448 12319 33554432000 4194304 4196468 140736109036592 140570697918832 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31921] ppid=31907 vsize=13982852 memory=140502708737664 CPUtime=0.13 cores=1,3,5,7
/proc/31909/task/31921/stat : 31921 (java) R 31907 31907 30767 0 -1 4202560 934 0 0 0 13 0 0 0 20 0 15 0 117916919 14318440448 12319 33554432000 4194304 4196468 140736109036592 140570696862144 140571716744510 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31922] ppid=31907 vsize=13982852 memory=2208 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31922/stat : 31922 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14318440448 12319 33554432000 4194304 4196468 140736109036592 140570695813472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31923] ppid=31907 vsize=13982852 memory=140502708737664 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31923/stat : 31923 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916919 14318440448 12319 33554432000 4194304 4196468 140736109036592 140570694761520 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
Current children cumulated CPU time: 0.51 s
Current children cumulated vsize: 13992364 KiB
Current children cumulated memory: 50656 KiB

[startup+0.701347 s]
/proc/loadavg: 1.92 1.74 1.70 8/217 31923
/proc/meminfo: memFree=23065828/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/statm: 2378 345 289 221 0 87 0
[pid=31909] ppid=31907 vsize=13984976 memory=114664 CPUtime=1.81 cores=1,3,5,7
/proc/31909/stat : 31909 (java) S 31907 31907 30767 0 -1 1077944320 13005 0 0 0 176 5 0 0 20 0 15 0 117916914 14320615424 28666 33554432000 4194304 4196468 140736109036592 140736109019136 140571723644663 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
/proc/31909/statm: 3496244 28666 3195 1 0 3483478 0
[pid=31909/tid=31910] ppid=31907 vsize=13984976 memory=1420 CPUtime=0.67 cores=1,3,5,7
/proc/31909/task/31910/stat : 31910 (java) R 31907 31907 30767 0 -1 4202560 6376 0 0 0 64 3 0 0 20 0 15 0 117916914 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571727881696 140571343682256 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31911] ppid=31907 vsize=13984976 memory=13040 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31911/stat : 31911 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571676264976 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31912] ppid=31907 vsize=13984976 memory=1944 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31912/stat : 31912 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571675212432 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31913] ppid=31907 vsize=13984976 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31913/stat : 31913 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916915 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571674159376 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31914] ppid=31907 vsize=13984976 memory=281005214987584 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31914/stat : 31914 (java) S 31907 31907 30767 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 117916915 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571673106832 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31915] ppid=31907 vsize=13984976 memory=140502607504612 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31915/stat : 31915 (java) S 31907 31907 30767 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 117916916 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571265043184 140571723655810 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31916] ppid=31907 vsize=13984976 memory=1228 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31916/stat : 31916 (java) S 31907 31907 30767 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 117916916 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571263989408 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31917] ppid=31907 vsize=13984976 memory=15876 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31917/stat : 31917 (java) S 31907 31907 30767 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 117916917 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571262936304 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31918] ppid=31907 vsize=13984976 memory=6297835844906604903 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31918/stat : 31918 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571261884880 140571723663259 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31919] ppid=31907 vsize=13984976 memory=3801 CPUtime=0.4 cores=1,3,5,7
/proc/31909/task/31919/stat : 31919 (java) R 31907 31907 30767 0 -1 4202560 1975 0 0 0 40 0 0 0 20 0 15 0 117916919 14320615424 28666 33554432000 4194304 4196468 140736109036592 140571260819296 140571705164348 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31920] ppid=31907 vsize=13984976 memory=4 CPUtime=0.39 cores=1,3,5,7
/proc/31909/task/31920/stat : 31920 (java) R 31907 31907 30767 0 -1 4202560 1647 0 0 0 39 0 0 0 20 0 15 0 117916919 14320615424 28666 33554432000 4194304 4196468 140736109036592 140570697910160 140571708566445 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31921] ppid=31907 vsize=13984976 memory=7047 CPUtime=0.32 cores=1,3,5,7
/proc/31909/task/31921/stat : 31921 (java) R 31907 31907 30767 0 -1 1077944384 1700 0 0 0 32 0 0 0 20 0 15 0 117916919 14320615424 28666 33554432000 4194304 4196468 140736109036592 140570696865776 140571723655810 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31922] ppid=31907 vsize=13984976 memory=370 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31922/stat : 31922 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 28666 33554432000 4194304 4196468 140736109036592 140570695813472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31923] ppid=31907 vsize=13984976 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31923/stat : 31923 (java) S 31907 31907 30767 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 28666 33554432000 4194304 4196468 140736109036592 140570694761520 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
Current children cumulated CPU time: 1.81 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 116044 KiB

[startup+1.50183 s]
/proc/loadavg: 1.92 1.74 1.70 3/217 31923
/proc/meminfo: memFree=22785636/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/statm: 2378 345 289 221 0 87 0

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

/proc/31909/task/31912/stat : 31912 (java) R 31907 31907 30767 0 -1 4202560 201630 0 0 0 52144 200 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571675212552 140571716272871 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31913] ppid=31907 vsize=13984976 memory=-7880843606118635149 CPUtime=522.77 cores=1,3,5,7
/proc/31909/task/31913/stat : 31913 (java) R 31907 31907 30767 0 -1 4202560 131598 0 0 0 52117 160 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571674159576 140571708344528 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31914] ppid=31907 vsize=13984976 memory=4140 CPUtime=524.18 cores=1,3,5,7
/proc/31909/task/31914/stat : 31914 (java) R 31907 31907 30767 0 -1 4202560 157419 0 0 0 52228 190 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571673106640 140571716272871 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31915] ppid=31907 vsize=13984976 memory=32956 CPUtime=58.08 cores=1,3,5,7
/proc/31909/task/31915/stat : 31915 (java) S 31907 31907 30767 0 -1 1077944384 119213 0 0 0 5801 7 0 0 20 0 15 0 117916916 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571265041744 140571723654869 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31916] ppid=31907 vsize=13984976 memory=1296 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31916/stat : 31916 (java) S 31907 31907 30767 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 15 0 117916916 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571263989472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31917] ppid=31907 vsize=13984976 memory=2336 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31917/stat : 31917 (java) S 31907 31907 30767 0 -1 1077944384 28 0 0 0 0 0 0 0 20 0 15 0 117916917 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571262936320 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31918] ppid=31907 vsize=13984976 memory=1724 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31918/stat : 31918 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571261884880 140571723663259 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31919] ppid=31907 vsize=13984976 memory=1012 CPUtime=1.03 cores=1,3,5,7
/proc/31909/task/31919/stat : 31919 (java) S 31907 31907 30767 0 -1 1077944384 5257 0 0 0 103 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571260831744 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31920] ppid=31907 vsize=13984976 memory=1716 CPUtime=1.12 cores=1,3,5,7
/proc/31909/task/31920/stat : 31920 (java) S 31907 31907 30767 0 -1 1077944384 5994 0 0 0 111 1 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570697918880 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31921] ppid=31907 vsize=13984976 memory=5792 CPUtime=0.47 cores=1,3,5,7
/proc/31909/task/31921/stat : 31921 (java) S 31907 31907 30767 0 -1 1077944384 6253 0 0 0 47 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570696865824 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31922] ppid=31907 vsize=13984976 memory=4616 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31922/stat : 31922 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570695813472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31923] ppid=31907 vsize=13984976 memory=792 CPUtime=0.38 cores=1,3,5,7
/proc/31909/task/31923/stat : 31923 (java) S 31907 31907 30767 0 -1 1077944384 705 0 0 0 22 16 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570694761520 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 9 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
Current children cumulated CPU time: 2290.58 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11531028 KiB

[startup+721.601 s]
/proc/loadavg: 6.85 6.48 4.26 6/217 32636
/proc/meminfo: memFree=16075956/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/statm: 2378 345 289 221 0 87 0
[pid=31909] ppid=31907 vsize=13984976 memory=11529648 CPUtime=2296.74 cores=1,3,5,7
/proc/31909/stat : 31909 (java) S 31907 31907 30767 0 -1 1077944320 774764 0 0 0 228912 762 0 0 20 0 15 0 117916914 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140736109019136 140571723644663 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
/proc/31909/statm: 3496244 2882412 3249 1 0 3483478 0
[pid=31909/tid=31910] ppid=31907 vsize=13984976 memory=32956 CPUtime=135.22 cores=1,3,5,7
/proc/31909/task/31910/stat : 31910 (java) S 31907 31907 30767 0 -1 1077944384 31760 0 0 0 13478 44 0 0 20 0 15 0 117916914 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571727883104 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31911] ppid=31907 vsize=13984976 memory=1380 CPUtime=525.32 cores=1,3,5,7
/proc/31909/task/31911/stat : 31911 (java) R 31907 31907 30767 0 -1 4202560 113531 0 0 0 52382 150 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571676264784 140571716272871 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31912] ppid=31907 vsize=13984976 memory=11529648 CPUtime=524.95 cores=1,3,5,7
/proc/31909/task/31912/stat : 31912 (java) R 31907 31907 30767 0 -1 4202560 201630 0 0 0 52294 201 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571675212552 140571716272871 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31913] ppid=31907 vsize=13984976 memory=1196 CPUtime=524.36 cores=1,3,5,7
/proc/31909/task/31913/stat : 31913 (java) R 31907 31907 30767 0 -1 4202560 131696 0 0 0 52276 160 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571674159576 140571700869472 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31914] ppid=31907 vsize=13984976 memory=8564 CPUtime=525.71 cores=1,3,5,7
/proc/31909/task/31914/stat : 31914 (java) R 31907 31907 30767 0 -1 4202560 157419 0 0 0 52380 191 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571673106640 140571716272871 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31915] ppid=31907 vsize=13984976 memory=1228 CPUtime=58.08 cores=1,3,5,7
/proc/31909/task/31915/stat : 31915 (java) S 31907 31907 30767 0 -1 1077944384 119213 0 0 0 5801 7 0 0 20 0 15 0 117916916 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571265041744 140571723654869 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31916] ppid=31907 vsize=13984976 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31916/stat : 31916 (java) S 31907 31907 30767 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 15 0 117916916 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571263989472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31917] ppid=31907 vsize=13984976 memory=11529648 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31917/stat : 31917 (java) S 31907 31907 30767 0 -1 1077944384 28 0 0 0 0 0 0 0 20 0 15 0 117916917 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571262936320 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31918] ppid=31907 vsize=13984976 memory=6791534058613427641 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31918/stat : 31918 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571261884880 140571723663259 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31919] ppid=31907 vsize=13984976 memory=1724 CPUtime=1.03 cores=1,3,5,7
/proc/31909/task/31919/stat : 31919 (java) S 31907 31907 30767 0 -1 1077944384 5257 0 0 0 103 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571260831744 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31920] ppid=31907 vsize=13984976 memory=1012 CPUtime=1.12 cores=1,3,5,7
/proc/31909/task/31920/stat : 31920 (java) S 31907 31907 30767 0 -1 1077944384 5994 0 0 0 111 1 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570697918880 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31921] ppid=31907 vsize=13984976 memory=1716 CPUtime=0.47 cores=1,3,5,7
/proc/31909/task/31921/stat : 31921 (java) S 31907 31907 30767 0 -1 1077944384 6253 0 0 0 47 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570696865824 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31922] ppid=31907 vsize=13984976 memory=1420 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31922/stat : 31922 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570695813472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31923] ppid=31907 vsize=13984976 memory=13040 CPUtime=0.38 cores=1,3,5,7
/proc/31909/task/31923/stat : 31923 (java) S 31907 31907 30767 0 -1 1077944384 705 0 0 0 22 16 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570694761520 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 9 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
Current children cumulated CPU time: 2296.74 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11531028 KiB

[startup+723.201 s]
/proc/loadavg: 6.71 6.46 4.26 3/217 32636
/proc/meminfo: memFree=16075956/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/statm: 2378 345 289 221 0 87 0
[pid=31909] ppid=31907 vsize=13984976 memory=11529648 CPUtime=2301.48 cores=1,3,5,7
/proc/31909/stat : 31909 (java) S 31907 31907 30767 0 -1 1077944320 775978 0 0 0 229385 763 0 0 20 0 15 0 117916914 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140736109019136 140571723644663 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
/proc/31909/statm: 3496244 2882412 3249 1 0 3483478 0
[pid=31909/tid=31910] ppid=31907 vsize=13984976 memory=1420 CPUtime=135.22 cores=1,3,5,7
/proc/31909/task/31910/stat : 31910 (java) S 31907 31907 30767 0 -1 1077944384 31760 0 0 0 13478 44 0 0 20 0 15 0 117916914 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571727883104 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31911] ppid=31907 vsize=13984976 memory=6791534058613427641 CPUtime=526.37 cores=1,3,5,7
/proc/31909/task/31911/stat : 31911 (java) S 31907 31907 30767 0 -1 1077944384 113531 0 0 0 52487 150 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571676264976 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31912] ppid=31907 vsize=13984976 memory=18660 CPUtime=525.98 cores=1,3,5,7
/proc/31909/task/31912/stat : 31912 (java) S 31907 31907 30767 0 -1 1077944384 201630 0 0 0 52397 201 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571675212432 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31913] ppid=31907 vsize=13984976 memory=4040 CPUtime=525.45 cores=1,3,5,7
/proc/31909/task/31913/stat : 31913 (java) S 31907 31907 30767 0 -1 1077944384 132910 0 0 0 52385 160 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571674159376 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31914] ppid=31907 vsize=13984976 memory=1236 CPUtime=526.76 cores=1,3,5,7
/proc/31909/task/31914/stat : 31914 (java) S 31907 31907 30767 0 -1 1077944384 157419 0 0 0 52485 191 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571673106832 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31915] ppid=31907 vsize=13984976 memory=644 CPUtime=58.58 cores=1,3,5,7
/proc/31909/task/31915/stat : 31915 (java) R 31907 31907 30767 0 -1 4202560 119213 0 0 0 5851 7 0 0 20 0 15 0 117916916 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571265041632 140571708641030 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31916] ppid=31907 vsize=13984976 memory=1788 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31916/stat : 31916 (java) S 31907 31907 30767 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 15 0 117916916 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571263989472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31917] ppid=31907 vsize=13984976 memory=956 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31917/stat : 31917 (java) S 31907 31907 30767 0 -1 1077944384 28 0 0 0 0 0 0 0 20 0 15 0 117916917 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571262936320 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31918] ppid=31907 vsize=13984976 memory=11529648 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31918/stat : 31918 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571261884880 140571723663259 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31919] ppid=31907 vsize=13984976 memory=1380 CPUtime=1.03 cores=1,3,5,7
/proc/31909/task/31919/stat : 31919 (java) S 31907 31907 30767 0 -1 1077944384 5257 0 0 0 103 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571260831744 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31920] ppid=31907 vsize=13984976 memory=11529648 CPUtime=1.12 cores=1,3,5,7
/proc/31909/task/31920/stat : 31920 (java) S 31907 31907 30767 0 -1 1077944384 5994 0 0 0 111 1 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570697918880 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31921] ppid=31907 vsize=13984976 memory=2344 CPUtime=0.47 cores=1,3,5,7
/proc/31909/task/31921/stat : 31921 (java) S 31907 31907 30767 0 -1 1077944384 6253 0 0 0 47 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570696865824 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31922] ppid=31907 vsize=13984976 memory=928 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31922/stat : 31922 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570695813472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31923] ppid=31907 vsize=13984976 memory=1568 CPUtime=0.38 cores=1,3,5,7
/proc/31909/task/31923/stat : 31923 (java) S 31907 31907 30767 0 -1 1077944384 705 0 0 0 22 16 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570694761520 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 9 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
Current children cumulated CPU time: 2301.48 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11531028 KiB

[startup+724.001 s]*
/proc/loadavg: 6.71 6.46 4.26 3/217 32636
/proc/meminfo: memFree=16075956/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/statm: 2378 345 289 221 0 87 0
[pid=31909] ppid=31907 vsize=13984976 memory=11529648 CPUtime=2302.29 cores=1,3,5,7
/proc/31909/stat : 31909 (java) S 31907 31907 30767 0 -1 1077944320 775978 0 0 0 229466 763 0 0 20 0 15 0 117916914 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140736109019136 140571723644663 0 0 0 16800975 18446744073709551615 0 0 17 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
/proc/31909/statm: 3496244 2882412 3249 1 0 3483478 0
[pid=31909/tid=31910] ppid=31907 vsize=13984976 memory=6791534058613427641 CPUtime=135.22 cores=1,3,5,7
/proc/31909/task/31910/stat : 31910 (java) S 31907 31907 30767 0 -1 1077944384 31760 0 0 0 13478 44 0 0 20 0 15 0 117916914 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571727883104 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31911] ppid=31907 vsize=13984976 memory=3200 CPUtime=526.37 cores=1,3,5,7
/proc/31909/task/31911/stat : 31911 (java) S 31907 31907 30767 0 -1 1077944384 113531 0 0 0 52487 150 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571676264976 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31912] ppid=31907 vsize=13984976 memory=1380 CPUtime=525.98 cores=1,3,5,7
/proc/31909/task/31912/stat : 31912 (java) S 31907 31907 30767 0 -1 1077944384 201630 0 0 0 52397 201 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571675212432 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31913] ppid=31907 vsize=13984976 memory=11529648 CPUtime=525.45 cores=1,3,5,7
/proc/31909/task/31913/stat : 31913 (java) S 31907 31907 30767 0 -1 1077944384 132910 0 0 0 52385 160 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571674159376 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31914] ppid=31907 vsize=13984976 memory=1156 CPUtime=526.76 cores=1,3,5,7
/proc/31909/task/31914/stat : 31914 (java) S 31907 31907 30767 0 -1 1077944384 157419 0 0 0 52485 191 0 0 20 0 15 0 117916915 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571673106832 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31915] ppid=31907 vsize=13984976 memory=2684 CPUtime=59.39 cores=1,3,5,7
/proc/31909/task/31915/stat : 31915 (java) R 31907 31907 30767 0 -1 4202560 119213 0 0 0 5932 7 0 0 20 0 15 0 117916916 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571265041632 140571708641008 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31916] ppid=31907 vsize=13984976 memory=1384 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31916/stat : 31916 (java) S 31907 31907 30767 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 15 0 117916916 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571263989472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31917] ppid=31907 vsize=13984976 memory=3848556 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31917/stat : 31917 (java) S 31907 31907 30767 0 -1 1077944384 28 0 0 0 0 0 0 0 20 0 15 0 117916917 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571262936320 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31918] ppid=31907 vsize=13984976 memory=0 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31918/stat : 31918 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571261884880 140571723663259 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31919] ppid=31907 vsize=13984976 memory=4140 CPUtime=1.03 cores=1,3,5,7
/proc/31909/task/31919/stat : 31919 (java) S 31907 31907 30767 0 -1 1077944384 5257 0 0 0 103 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140571260831744 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31920] ppid=31907 vsize=13984976 memory=32956 CPUtime=1.12 cores=1,3,5,7
/proc/31909/task/31920/stat : 31920 (java) S 31907 31907 30767 0 -1 1077944384 5994 0 0 0 111 1 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570697918880 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31921] ppid=31907 vsize=13984976 memory=1296 CPUtime=0.47 cores=1,3,5,7
/proc/31909/task/31921/stat : 31921 (java) S 31907 31907 30767 0 -1 1077944384 6253 0 0 0 47 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570696865824 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31922] ppid=31907 vsize=13984976 memory=288230574492221466 CPUtime=0 cores=1,3,5,7
/proc/31909/task/31922/stat : 31922 (java) S 31907 31907 30767 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570695813472 140571723654869 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
[pid=31909/tid=31923] ppid=31907 vsize=13984976 memory=288230613214036277 CPUtime=0.38 cores=1,3,5,7
/proc/31909/task/31923/stat : 31923 (java) S 31907 31907 30767 0 -1 1077944384 705 0 0 0 22 16 0 0 20 0 15 0 117916919 14320615424 2882412 33554432000 4194304 4196468 140736109036592 140570694761520 140571723655810 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 9 0 0 6293624 6294260 31330304 140736109040791 140736109040967 140736109040967 140736109043663 0
Current children cumulated CPU time: 2302.29 s
Current children cumulated vsize: 13994488 KiB
Current children cumulated memory: 11531028 KiB

[startup+724.401 s]
/proc/loadavg: 6.71 6.46 4.26 3/217 32636
/proc/meminfo: memFree=16075956/32770624 swapFree=67108860/67108860
[pid=31907] ppid=31904 vsize=9512 memory=1380 CPUtime=0 cores=1,3,5,7
/proc/31907/stat : 31907 (xcsp3-exec) S 31904 31907 30767 0 -1 4202496 513 0 0 0 0 0 0 0 20 0 1 0 117916913 9740288 345 33554432000 4194304 5098028 140733347671584 140733347669688 140470859502204 0 65536 4100 65538 18446744071579417331 0 0 17 7 0 0 0 0 0 7196144 7232144 8171520 140733347673199 140733347673403 140733347673403 140733347676139 0
/proc/31907/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): 724.414
CPU time (s): 2302.71
CPU user time (s): 2295
CPU system time (s): 7.70474
CPU usage (%): 317.872
Max. virtual memory (cumulated for all children) (KiB): 13994488
Max. memory (cumulated for all children) (KiB): 11531036

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2295
system time used= 7.70474
maximum resident set size= 11529980
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 776971
page faults= 0
swaps= 0
block input operations= 0
block output operations= 952
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 26652
involuntary context switches= 34806


# summary of solver processes directly reported to runsolver:
#   pid: 31907
#   total CPU time (s): 2302.71
#   total CPU user time (s): 2295
#   total CPU system time (s): 7.70474

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 4.39822 second user time and 7.894 second system time

The end

Launcher Data

Begin job on node103 at 2017-08-16 03:37:08
IDJOB=4272797
IDBENCH=138612
IDSOLVER=2664
FILE ID=node103/4272797-1502848287
RUNJOBID= node103-1502842139-30799
PBS_JOBID= 20629857
Free space on /tmp= 61788 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/SuperSolutions/SuperSolutions-Taillard-js20-15/SuperTaillard-js-20-15-15.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-4272797-1502848287/watcher-4272797-1502848287 -o /tmp/evaluation-result-4272797-1502848287/solver-4272797-1502848287 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node103-1502842139-30799 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 566014979 HOME/instance-4272797-1502848287.xml

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

MD5SUM BENCH= 6d7e3033fdb5217c74d2816bb8c5b7b8
RANDOM SEED=566014979

node103.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.56
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.56
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.56
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.56
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:        23139832 kB
MemAvailable:   23669200 kB
Buffers:          196964 kB
Cached:           618272 kB
SwapCached:            0 kB
Active:          8925468 kB
Inactive:         248268 kB
Active(anon):    8307600 kB
Inactive(anon):    78564 kB
Active(file):     617868 kB
Inactive(file):   169704 kB
Unevictable:        6448 kB
Mlocked:            6448 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              8184 kB
Writeback:             0 kB
AnonPages:       8257724 kB
Mapped:            59028 kB
Shmem:             25228 kB
Slab:             142088 kB
SReclaimable:     115260 kB
SUnreclaim:        26828 kB
KernelStack:        3840 kB
PageTables:        21824 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:   10316304 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   8050688 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      114048 kB
DirectMap2M:    33431552 kB

Free space on /tmp at the end= 61784 MiB
End job on node103 at 2017-08-16 03:49:13