Trace number 4393656

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 2019-06-14 parallel? 1444.5 220.463

General information on the benchmark

NameKnightTour/KnightTour-ext-s1/
KnightTour-15-ext06.xml
MD5SUMaf3f6bb9b1ca00becd13f0e7ebc5af3a
Bench CategoryCSP (decision problem)
Best result obtained on this benchmarkUNSAT
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark17.3587
Satisfiable
(Un)Satisfiability was proved
Number of variables225
Number of constraints47
Number of domains1
Minimum domain size225
Maximum domain size225
Distribution of domain sizes[{"size":225,"count":225}]
Minimum variable degree2
Maximum variable degree3
Distribution of variable degrees[{"degree":2,"count":223},{"degree":3,"count":2}]
Minimum constraint arity2
Maximum constraint arity225
Distribution of constraint arities[{"arity":2,"count":1},{"arity":6,"count":45},{"arity":225,"count":1}]
Number of extensional constraints45
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":45},{"type":"allDifferent","count":1},{"type":"instantiation","count":1}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.00	c java -server -Xmx24000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4393656-1568437255.xml"  -tl '20160s' -p 8
0.13/0.18	c Choco e747e1e
0.13/0.18	c [HOME/instance-4393656-1568437255.xml, -tl, 20160s, -p, 8]
0.34/0.22	c 8 solvers in parallel
0.34/0.28	c parse instance...
1390.91/212.76	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
1444.22/220.23		at java.util.Arrays.copyOf(Arrays.java:3181)
1444.22/220.23		at java.util.ArrayList.grow(ArrayList.java:261)
1444.22/220.23		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
1444.22/220.23		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
1444.22/220.23		at java.util.ArrayList.add(ArrayList.java:458)
1444.22/220.23		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:159)
1444.22/220.23		at org.chocosolver.solver.constraints.extension.Tuples.<init>(Tuples.java:59)
1444.22/220.23		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:309)
1444.22/220.23		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
1444.22/220.23		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
1444.22/220.23		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
1444.22/220.23		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
1444.22/220.23		at org.xcsp.parser.XCallbacks$$Lambda$121/1429880200.accept(Unknown Source)
1444.22/220.23		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
1444.22/220.23		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
1444.22/220.23		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
1444.22/220.23		at org.xcsp.parser.XCallbacks.loadSlide(XCallbacks.java:477)
1444.22/220.23		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:424)
1444.22/220.23		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
1444.22/220.23		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
1444.22/220.23		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
1444.22/220.23		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
1444.22/220.23		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
1444.22/220.23		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
1444.22/220.23		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
1444.22/220.23	s UNKNOWN
1444.22/220.23	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 (12404 MiB free)
  memory of node 1: 16384 MiB (11596 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4393656-1568437255/watcher-4393656-1568437255 -o /tmp/evaluation-result-4393656-1568437255/solver-4393656-1568437255 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node119-1568428810-25211 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1263642623 HOME/instance-4393656-1568437255.xml 

running on 8 cores: 0,2,4,6,1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 20160 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 20190 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 31744000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 31795200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
solver pid=27394, runsolver pid=27391
Current StackSize limit: 8192 KiB


[startup+0.100059 s]*
/proc/loadavg: 7.09 6.50 4.29 2/213 27415
/proc/meminfo: memFree=24558784/32770624 swapFree=66939852/67108860
[pid=27394] ppid=27391 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/27394/stat : 27394 (xcsp3-exec) S 27391 27394 25184 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 419640452 115843072 363 33554432000 4194304 5098028 140731528458480 140731528456584 140043510502012 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 33595392 140731528463221 140731528463465 140731528463465 140731528466378 0
/proc/27394/statm: 28282 363 304 221 0 87 0
[pid=27396] ppid=27394 vsize=28227388 memory=30244 CPUtime=0.13 cores=0-7
/proc/27396/stat : 27396 (java) S 27394 27394 25184 0 -1 1077944320 5519 0 0 0 12 1 0 0 20 0 20 0 419640452 28904845312 7561 33554432000 4194304 4196468 140737175433440 140737175415984 139658350251767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
/proc/27396/statm: 7056847 7561 3121 1 0 7019032 0
[pid=27396/tid=27397] ppid=27394 vsize=28227388 memory=8317482817917895235 CPUtime=0.08 cores=0-7
/proc/27396/task/27397/stat : 27397 (java) R 27394 27394 25184 0 -1 4202560 3435 0 0 0 8 0 0 0 20 0 20 0 419640452 28904845312 7561 33554432000 4194304 4196468 140737175433440 139658354484368 139658328696524 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27398] ppid=27394 vsize=28227388 memory=4872558044660077418 CPUtime=0 cores=0-7
/proc/27396/task/27398/stat : 27398 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657901677200 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27399] ppid=27394 vsize=28227388 memory=140230148122240 CPUtime=0 cores=0-7
/proc/27396/task/27399/stat : 27399 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657900624400 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27400] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27400/stat : 27400 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657899571600 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27401] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27401/stat : 27401 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657898518800 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27402] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27402/stat : 27402 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657897467024 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27403] ppid=27394 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/27396/task/27403/stat : 27403 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657896414224 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27404] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27404/stat : 27404 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657895361424 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27405] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27405/stat : 27405 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657894308624 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27406] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27406/stat : 27406 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640454 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657332406640 139658350262914 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27407] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27407/stat : 27407 (java) S 27394 27394 25184 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419640455 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657331352608 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27408] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27408/stat : 27408 (java) S 27394 27394 25184 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419640455 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657330299760 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27409] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27409/stat : 27409 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640457 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657329248080 139658350270363 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27410] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27410/stat : 27410 (java) S 27394 27394 25184 0 -1 1077944384 296 0 0 0 0 0 0 0 20 0 20 0 419640458 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657328196464 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27411] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27411/stat : 27411 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640458 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657327143664 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27412] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27412/stat : 27412 (java) S 27394 27394 25184 0 -1 1077944384 123 0 0 0 0 0 0 0 20 0 20 0 419640458 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657326090864 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27413] ppid=27394 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/27396/task/27413/stat : 27413 (java) S 27394 27394 25184 0 -1 1077944384 351 0 0 0 2 0 0 0 20 0 20 0 419640458 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657325038064 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27414] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27414/stat : 27414 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640458 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657323985504 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27415] ppid=27394 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/27396/task/27415/stat : 27415 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640458 28904845312 7561 33554432000 4194304 4196468 140737175433440 139657322932784 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 31696 KiB

[startup+0.210667 s]*
/proc/loadavg: 7.09 6.50 4.29 2/213 27415
/proc/meminfo: memFree=24547296/32770624 swapFree=66939852/67108860
[pid=27394] ppid=27391 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/27394/stat : 27394 (xcsp3-exec) S 27391 27394 25184 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 419640452 115843072 363 33554432000 4194304 5098028 140731528458480 140731528456584 140043510502012 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 33595392 140731528463221 140731528463465 140731528463465 140731528466378 0
/proc/27394/statm: 28282 363 304 221 0 87 0
[pid=27396] ppid=27394 vsize=28227388 memory=41344 CPUtime=0.34 cores=0-7
/proc/27396/stat : 27396 (java) S 27394 27394 25184 0 -1 1077944320 9065 0 0 0 31 3 0 0 20 0 20 0 419640452 28904845312 10336 33554432000 4194304 4196468 140737175433440 140737175415984 139658350251767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
/proc/27396/statm: 7056847 10336 3295 1 0 7019032 0
[pid=27396/tid=27397] ppid=27394 vsize=28227388 memory=8318255677412212789 CPUtime=0.19 cores=0-7
/proc/27396/task/27397/stat : 27397 (java) R 27394 27394 25184 0 -1 4202560 6245 0 0 0 17 2 0 0 20 0 20 0 419640452 28904845312 10336 33554432000 4194304 4196468 140737175433440 139658354483680 139658317836208 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27398] ppid=27394 vsize=28227388 memory=342 CPUtime=0 cores=0-7
/proc/27396/task/27398/stat : 27398 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657901677200 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27399] ppid=27394 vsize=28227388 memory=3978568248293484192 CPUtime=0 cores=0-7
/proc/27396/task/27399/stat : 27399 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657900624400 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27400] ppid=27394 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/27396/task/27400/stat : 27400 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657899571600 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27401] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27401/stat : 27401 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657898518800 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27402] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27402/stat : 27402 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657897467024 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27403] ppid=27394 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/27396/task/27403/stat : 27403 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657896414224 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27404] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27404/stat : 27404 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657895361424 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27405] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27405/stat : 27405 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657894308624 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27406] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27406/stat : 27406 (java) S 27394 27394 25184 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 419640454 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657332406640 139658350262914 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27407] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27407/stat : 27407 (java) S 27394 27394 25184 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419640455 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657331352608 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27408] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27408/stat : 27408 (java) S 27394 27394 25184 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419640455 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657330299760 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27409] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27409/stat : 27409 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640457 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657329248080 139658350270363 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27410] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27410/stat : 27410 (java) S 27394 27394 25184 0 -1 1077944384 335 0 0 0 0 0 0 0 20 0 20 0 419640458 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657328196464 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27411] ppid=27394 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/27396/task/27411/stat : 27411 (java) S 27394 27394 25184 0 -1 1077944384 187 0 0 0 1 0 0 0 20 0 20 0 419640458 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657327143664 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27412] ppid=27394 vsize=28227388 memory=-1 CPUtime=0.02 cores=0-7
/proc/27396/task/27412/stat : 27412 (java) S 27394 27394 25184 0 -1 1077944384 227 0 0 0 2 0 0 0 20 0 20 0 419640458 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657326090864 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27413] ppid=27394 vsize=28227388 memory=-1 CPUtime=0.08 cores=0-7
/proc/27396/task/27413/stat : 27413 (java) R 27394 27394 25184 0 -1 4202560 757 0 0 0 8 0 0 0 20 0 20 0 419640458 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657325037872 139658329219883 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27414] ppid=27394 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27414/stat : 27414 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640458 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657323985504 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27415] ppid=27394 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/27396/task/27415/stat : 27415 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640458 28904845312 10336 33554432000 4194304 4196468 140737175433440 139657322932784 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 42796 KiB

[startup+0.312416 s]*
/proc/loadavg: 7.09 6.50 4.29 4/213 27415
/proc/meminfo: memFree=24540656/32770624 swapFree=66939852/67108860
[pid=27394] ppid=27391 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/27394/stat : 27394 (xcsp3-exec) S 27391 27394 25184 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 419640452 115843072 363 33554432000 4194304 5098028 140731528458480 140731528456584 140043510502012 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 33595392 140731528463221 140731528463465 140731528463465 140731528466378 0
/proc/27394/statm: 28282 363 304 221 0 87 0
[pid=27396] ppid=27394 vsize=28231644 memory=50160 CPUtime=0.53 cores=0-7
/proc/27396/stat : 27396 (java) S 27394 27394 25184 0 -1 1077944320 10399 0 0 0 49 4 0 0 20 0 20 0 419640452 28909203456 12540 33554432000 4194304 4196468 140737175433440 140737175415984 139658350251767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
/proc/27396/statm: 7057911 12540 3360 1 0 7019032 0
[pid=27396/tid=27397] ppid=27394 vsize=28231644 memory=8317482817917895235 CPUtime=0.29 cores=0-7
/proc/27396/task/27397/stat : 27397 (java) R 27394 27394 25184 0 -1 4202560 7347 0 0 0 27 2 0 0 20 0 20 0 419640452 28909203456 12540 33554432000 4194304 4196468 140737175433440 139658354482880 139658350273693 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27398] ppid=27394 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27398/stat : 27398 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657901677200 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27399] ppid=27394 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27399/stat : 27399 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657900624400 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27400] ppid=27394 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27400/stat : 27400 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657899571600 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27401] ppid=27394 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27401/stat : 27401 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640453 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657898518800 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27402] ppid=27394 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27402/stat : 27402 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657897467024 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27403] ppid=27394 vsize=28231644 memory=140230011218607 CPUtime=0 cores=0-7
/proc/27396/task/27403/stat : 27403 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657896414224 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27404] ppid=27394 vsize=28231644 memory=140230011220912 CPUtime=0 cores=0-7
/proc/27396/task/27404/stat : 27404 (java) S 27394 27394 25184 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419640453 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657895361424 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27405] ppid=27394 vsize=28231644 memory=140230011223216 CPUtime=0 cores=0-7
/proc/27396/task/27405/stat : 27405 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640453 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657894308624 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27406] ppid=27394 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27406/stat : 27406 (java) S 27394 27394 25184 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 419640454 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657332406640 139658350262914 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27407] ppid=27394 vsize=28231644 memory=280460022460304 CPUtime=0 cores=0-7
/proc/27396/task/27407/stat : 27407 (java) S 27394 27394 25184 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419640455 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657331352608 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27408] ppid=27394 vsize=28231644 memory=280460022458000 CPUtime=0 cores=0-7
/proc/27396/task/27408/stat : 27408 (java) S 27394 27394 25184 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419640455 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657330299760 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27409] ppid=27394 vsize=28231644 memory=280460022464912 CPUtime=0 cores=0-7
/proc/27396/task/27409/stat : 27409 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640457 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657329248080 139658350270363 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27410] ppid=27394 vsize=28231644 memory=280460022406192 CPUtime=0.01 cores=0-7
/proc/27396/task/27410/stat : 27410 (java) S 27394 27394 25184 0 -1 1077944384 368 0 0 0 1 0 0 0 20 0 20 0 419640458 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657328196464 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27411] ppid=27394 vsize=28231644 memory=280460022478736 CPUtime=0.03 cores=0-7
/proc/27396/task/27411/stat : 27411 (java) S 27394 27394 25184 0 -1 1077944384 202 0 0 0 3 0 0 0 20 0 20 0 419640458 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657327143664 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27412] ppid=27394 vsize=28231644 memory=280460022485648 CPUtime=0.04 cores=0-7
/proc/27396/task/27412/stat : 27412 (java) R 27394 27394 25184 0 -1 4202560 339 0 0 0 4 0 0 0 20 0 20 0 419640458 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657326082320 139658335367039 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27413] ppid=27394 vsize=28231644 memory=280460022483344 CPUtime=0.12 cores=0-7
/proc/27396/task/27413/stat : 27413 (java) S 27394 27394 25184 0 -1 1077944384 834 0 0 0 12 0 0 0 20 0 20 0 419640458 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657325038064 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27414] ppid=27394 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/27396/task/27414/stat : 27414 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640458 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657323985504 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27415] ppid=27394 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/27396/task/27415/stat : 27415 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640458 28909203456 12540 33554432000 4194304 4196468 140737175433440 139657322932784 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51612 KiB

[startup+0.701126 s]
/proc/loadavg: 7.09 6.50 4.29 3/213 27415
/proc/meminfo: memFree=24451432/32770624 swapFree=66939852/67108860
[pid=27394] ppid=27391 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/27394/stat : 27394 (xcsp3-exec) S 27391 27394 25184 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 419640452 115843072 363 33554432000 4194304 5098028 140731528458480 140731528456584 140043510502012 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 33595392 140731528463221 140731528463465 140731528463465 140731528466378 0
/proc/27394/statm: 28282 363 304 221 0 87 0
[pid=27396] ppid=27394 vsize=28231720 memory=563752 CPUtime=1.38 cores=0-7
/proc/27396/stat : 27396 (java) S 27394 27394 25184 0 -1 1077944320 11887 0 0 0 100 38 0 0 20 0 20 0 419640452 28909281280 140938 33554432000 4194304 4196468 140737175433440 140737175415984 139658350251767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
/proc/27396/statm: 7057930 140938 3420 1 0 7019032 0
[pid=27396/tid=27397] ppid=27394 vsize=28231720 memory=0 CPUtime=0.63 cores=0-7
/proc/27396/task/27397/stat : 27397 (java) R 27394 27394 25184 0 -1 4202560 8063 0 0 0 54 9 0 0 20 0 20 0 419640452 28909281280 140938 33554432000 4194304 4196468 140737175433440 139658354489344 139658350263702 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27398] ppid=27394 vsize=28231720 memory=140230011429744 CPUtime=0.04 cores=0-7
/proc/27396/task/27398/stat : 27398 (java) S 27394 27394 25184 0 -1 1077944384 45 0 0 0 1 3 0 0 20 0 20 0 419640453 28909281280 140938 33554432000 4194304 4196468 140737175433440 139657901677200 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27399] ppid=27394 vsize=28231720 memory=0 CPUtime=0.04 cores=0-7
/proc/27396/task/27399/stat : 27399 (java) S 27394 27394 25184 0 -1 1077944384 51 0 0 0 1 3 0 0 20 0 20 0 419640453 28909281280 140938 33554432000 4194304 4196468 140737175433440 139657900624400 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27400] ppid=27394 vsize=28231720 memory=1256 CPUtime=0.04 cores=0-7
/proc/27396/task/27400/stat : 27400 (java) S 27394 27394 25184 0 -1 1077944384 46 0 0 0 1 3 0 0 20 0 20 0 419640453 28909281280 140938 33554432000 4194304 4196468 140737175433440 139657899571600 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0

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

[pid=27394] ppid=27391 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/27394/stat : 27394 (xcsp3-exec) S 27391 27394 25184 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 419640452 115843072 363 33554432000 4194304 5098028 140731528458480 140731528456584 140043510502012 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 33595392 140731528463221 140731528463465 140731528463465 140731528466378 0
/proc/27394/statm: 28282 363 304 221 0 87 0
[pid=27396] ppid=27394 vsize=28233768 memory=23256252 CPUtime=1428.08 cores=0-7
/proc/27396/stat : 27396 (java) S 27394 27394 25184 0 -1 1077944320 2363757 0 0 0 137948 4860 0 0 20 0 20 0 419640452 28911378432 5814063 33554432000 4194304 4196468 140737175433440 140737175415984 139658350251767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
/proc/27396/statm: 7058442 5814063 3500 1 0 7019544 0
[pid=27396/tid=27397] ppid=27394 vsize=28233768 memory=1452 CPUtime=21.54 cores=0-7
/proc/27396/task/27397/stat : 27397 (java) S 27394 27394 25184 0 -1 1077944384 18869 0 0 0 2115 39 0 0 20 0 20 0 419640452 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139658354490992 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27398] ppid=27394 vsize=28233768 memory=1452 CPUtime=172.61 cores=0-7
/proc/27396/task/27398/stat : 27398 (java) R 27394 27394 25184 0 -1 4202560 298456 0 0 0 16647 614 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657901677400 139658343354781 0 4 0 16800975 0 0 0 -1 6 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27399] ppid=27394 vsize=28233768 memory=23256184 CPUtime=173.42 cores=0-7
/proc/27396/task/27399/stat : 27399 (java) R 27394 27394 25184 0 -1 4202560 175311 0 0 0 16760 582 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657900624400 139658343354753 0 4 0 16800975 0 0 0 -1 1 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27400] ppid=27394 vsize=28233768 memory=1452 CPUtime=172.68 cores=0-7
/proc/27396/task/27400/stat : 27400 (java) R 27394 27394 25184 0 -1 4202560 203582 0 0 0 16682 586 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657899571800 139658343354746 0 4 0 16800975 0 0 0 -1 7 0 0 12 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27401] ppid=27394 vsize=28233768 memory=23256252 CPUtime=173.09 cores=0-7
/proc/27396/task/27401/stat : 27401 (java) R 27394 27394 25184 0 -1 4202560 195842 0 0 0 16686 623 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657898518800 139658334951695 0 4 0 16800975 0 0 0 -1 3 0 0 15 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27402] ppid=27394 vsize=28233768 memory=1452 CPUtime=173.25 cores=0-7
/proc/27396/task/27402/stat : 27402 (java) R 27394 27394 25184 0 -1 4202560 300466 0 0 0 16751 574 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657897467224 139658343354739 0 4 0 16800975 0 0 0 -1 0 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27403] ppid=27394 vsize=28233768 memory=-3622645143214314312 CPUtime=173.2 cores=0-7
/proc/27396/task/27403/stat : 27403 (java) R 27394 27394 25184 0 -1 4202560 587654 0 0 0 16668 652 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657896414224 139658335241390 0 4 0 16800975 0 0 0 -1 5 0 0 12 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27404] ppid=27394 vsize=28233768 memory=1436 CPUtime=172.87 cores=0-7
/proc/27396/task/27404/stat : 27404 (java) R 27394 27394 25184 0 -1 4202560 242678 0 0 0 16720 567 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657895361312 139658343354739 0 4 0 16800975 0 0 0 -1 2 0 0 11 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27405] ppid=27394 vsize=28233768 memory=4164 CPUtime=172.61 cores=0-7
/proc/27396/task/27405/stat : 27405 (java) R 27394 27394 25184 0 -1 4202560 151252 0 0 0 16668 593 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657894308824 139658343354732 0 4 0 16800975 0 0 0 -1 4 0 0 10 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27406] ppid=27394 vsize=28233768 memory=1548 CPUtime=20.93 cores=0-7
/proc/27396/task/27406/stat : 27406 (java) S 27394 27394 25184 0 -1 1077944384 176062 0 0 0 2069 24 0 0 20 0 20 0 419640454 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657332405184 139658350261973 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27407] ppid=27394 vsize=28233768 memory=6791534058613427641 CPUtime=0 cores=0-7
/proc/27396/task/27407/stat : 27407 (java) S 27394 27394 25184 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 20 0 419640455 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657331352672 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27408] ppid=27394 vsize=28233768 memory=23256180 CPUtime=0 cores=0-7
/proc/27396/task/27408/stat : 27408 (java) S 27394 27394 25184 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 20 0 419640455 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657330299776 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27409] ppid=27394 vsize=28233768 memory=1804 CPUtime=0 cores=0-7
/proc/27396/task/27409/stat : 27409 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640457 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657329248080 139658350270363 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27410] ppid=27394 vsize=28233768 memory=3504 CPUtime=0.39 cores=0-7
/proc/27396/task/27410/stat : 27410 (java) S 27394 27394 25184 0 -1 1077944384 2661 0 0 0 39 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657328196464 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27411] ppid=27394 vsize=28233768 memory=1452 CPUtime=0.45 cores=0-7
/proc/27396/task/27411/stat : 27411 (java) S 27394 27394 25184 0 -1 1077944384 2901 0 0 0 45 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657327143664 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27412] ppid=27394 vsize=28233768 memory=23256184 CPUtime=0.46 cores=0-7
/proc/27396/task/27412/stat : 27412 (java) S 27394 27394 25184 0 -1 1077944384 2608 0 0 0 46 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657326090864 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27413] ppid=27394 vsize=28233768 memory=1076 CPUtime=0.36 cores=0-7
/proc/27396/task/27413/stat : 27413 (java) S 27394 27394 25184 0 -1 1077944384 3640 0 0 0 36 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657325038064 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27414] ppid=27394 vsize=28233768 memory=1452 CPUtime=0 cores=0-7
/proc/27396/task/27414/stat : 27414 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657323985504 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27415] ppid=27394 vsize=28233768 memory=1452 CPUtime=0.09 cores=0-7
/proc/27396/task/27415/stat : 27415 (java) S 27394 27394 25184 0 -1 1077944384 459 0 0 0 5 4 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657322932784 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 54 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
Current children cumulated CPU time: 1428.08 s
Current children cumulated vsize: 28346896 KiB
Current children cumulated memory: 23257704 KiB

[startup+219.202 s]
/proc/loadavg: 6.70 6.08 4.53 9/214 27452
/proc/meminfo: memFree=1359492/32770624 swapFree=66939852/67108860
[pid=27394] ppid=27391 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/27394/stat : 27394 (xcsp3-exec) S 27391 27394 25184 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 419640452 115843072 363 33554432000 4194304 5098028 140731528458480 140731528456584 140043510502012 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 33595392 140731528463221 140731528463465 140731528463465 140731528466378 0
/proc/27394/statm: 28282 363 304 221 0 87 0
[pid=27396] ppid=27394 vsize=28233768 memory=23256252 CPUtime=1440.83 cores=0-7
/proc/27396/stat : 27396 (java) S 27394 27394 25184 0 -1 1077944320 2624251 0 0 0 139187 4896 0 0 20 0 20 0 419640452 28911378432 5814063 33554432000 4194304 4196468 140737175433440 140737175415984 139658350251767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
/proc/27396/statm: 7058442 5814063 3500 1 0 7019544 0
[pid=27396/tid=27397] ppid=27394 vsize=28233768 memory=15825490741037707 CPUtime=21.54 cores=0-7
/proc/27396/task/27397/stat : 27397 (java) S 27394 27394 25184 0 -1 1077944384 18869 0 0 0 2115 39 0 0 20 0 20 0 419640452 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139658354490992 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27398] ppid=27394 vsize=28233768 memory=2116 CPUtime=174.21 cores=0-7
/proc/27396/task/27398/stat : 27398 (java) R 27394 27394 25184 0 -1 4202560 326426 0 0 0 16804 617 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657901677400 139658343354753 0 4 0 16800975 0 0 0 -1 6 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27399] ppid=27394 vsize=28233768 memory=1560 CPUtime=175.01 cores=0-7
/proc/27396/task/27399/stat : 27399 (java) R 27394 27394 25184 0 -1 4202560 200798 0 0 0 16917 584 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657900624600 139658343354732 0 4 0 16800975 0 0 0 -1 1 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27400] ppid=27394 vsize=28233768 memory=924 CPUtime=174.24 cores=0-7
/proc/27396/task/27400/stat : 27400 (java) R 27394 27394 25184 0 -1 4202560 236069 0 0 0 16835 589 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657899571800 139658343354739 0 4 0 16800975 0 0 0 -1 7 0 0 12 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27401] ppid=27394 vsize=28233768 memory=3688 CPUtime=174.69 cores=0-7
/proc/27396/task/27401/stat : 27401 (java) R 27394 27394 25184 0 -1 4202560 223496 0 0 0 16844 625 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657898519000 139658343354746 0 4 0 16800975 0 0 0 -1 3 0 0 15 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27402] ppid=27394 vsize=28233768 memory=1984 CPUtime=174.85 cores=0-7
/proc/27396/task/27402/stat : 27402 (java) R 27394 27394 25184 0 -1 4202560 328994 0 0 0 16909 576 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657897467224 139658343354753 0 4 0 16800975 0 0 0 -1 0 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27403] ppid=27394 vsize=28233768 memory=3504 CPUtime=174.79 cores=0-7
/proc/27396/task/27403/stat : 27403 (java) R 27394 27394 25184 0 -1 4202560 621540 0 0 0 16811 668 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657896414424 139658335241325 0 4 0 16800975 0 0 0 -1 5 0 0 12 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27404] ppid=27394 vsize=28233768 memory=41152 CPUtime=174.48 cores=0-7
/proc/27396/task/27404/stat : 27404 (java) R 27394 27394 25184 0 -1 4202560 277794 0 0 0 16878 570 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657895361312 139658343354760 0 4 0 16800975 0 0 0 -1 2 0 0 11 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27405] ppid=27394 vsize=28233768 memory=988 CPUtime=174.21 cores=0-7
/proc/27396/task/27405/stat : 27405 (java) R 27394 27394 25184 0 -1 4202560 200580 0 0 0 16824 597 0 0 20 0 20 0 419640453 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657894308824 139658343354791 0 4 0 16800975 0 0 0 -1 4 0 0 10 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27406] ppid=27394 vsize=28233768 memory=2008 CPUtime=20.93 cores=0-7
/proc/27396/task/27406/stat : 27406 (java) S 27394 27394 25184 0 -1 1077944384 176062 0 0 0 2069 24 0 0 20 0 20 0 419640454 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657332405184 139658350261973 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27407] ppid=27394 vsize=28233768 memory=1436 CPUtime=0 cores=0-7
/proc/27396/task/27407/stat : 27407 (java) S 27394 27394 25184 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 20 0 419640455 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657331352672 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27408] ppid=27394 vsize=28233768 memory=2008 CPUtime=0 cores=0-7
/proc/27396/task/27408/stat : 27408 (java) S 27394 27394 25184 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 20 0 419640455 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657330299776 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27409] ppid=27394 vsize=28233768 memory=1436 CPUtime=0 cores=0-7
/proc/27396/task/27409/stat : 27409 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640457 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657329248080 139658350270363 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27410] ppid=27394 vsize=28233768 memory=3504 CPUtime=0.39 cores=0-7
/proc/27396/task/27410/stat : 27410 (java) S 27394 27394 25184 0 -1 1077944384 2661 0 0 0 39 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657328196512 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27411] ppid=27394 vsize=28233768 memory=41152 CPUtime=0.45 cores=0-7
/proc/27396/task/27411/stat : 27411 (java) S 27394 27394 25184 0 -1 1077944384 2901 0 0 0 45 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657327143712 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27412] ppid=27394 vsize=28233768 memory=988 CPUtime=0.46 cores=0-7
/proc/27396/task/27412/stat : 27412 (java) S 27394 27394 25184 0 -1 1077944384 2609 0 0 0 46 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657326090624 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27413] ppid=27394 vsize=28233768 memory=1548 CPUtime=0.36 cores=0-7
/proc/27396/task/27413/stat : 27413 (java) S 27394 27394 25184 0 -1 1077944384 3640 0 0 0 36 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657325038112 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27414] ppid=27394 vsize=28233768 memory=1728 CPUtime=0 cores=0-7
/proc/27396/task/27414/stat : 27414 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657323985504 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27415] ppid=27394 vsize=28233768 memory=7992 CPUtime=0.09 cores=0-7
/proc/27396/task/27415/stat : 27415 (java) S 27394 27394 25184 0 -1 1077944384 480 0 0 0 5 4 0 0 20 0 20 0 419640458 28911378432 5814063 33554432000 4194304 4196468 140737175433440 139657322932784 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 54 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
Current children cumulated CPU time: 1440.83 s
Current children cumulated vsize: 28346896 KiB
Current children cumulated memory: 23257704 KiB

[startup+220.001 s]*
/proc/loadavg: 6.24 5.99 4.51 2/214 27452
/proc/meminfo: memFree=1359120/32770624 swapFree=66939852/67108860
[pid=27394] ppid=27391 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/27394/stat : 27394 (xcsp3-exec) S 27391 27394 25184 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 419640452 115843072 363 33554432000 4194304 5098028 140731528458480 140731528456584 140043510502012 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 33595392 140731528463221 140731528463465 140731528463465 140731528466378 0
/proc/27394/statm: 28282 363 304 221 0 87 0
[pid=27396] ppid=27394 vsize=28233768 memory=23256256 CPUtime=1444.03 cores=0-7
/proc/27396/stat : 27396 (java) S 27394 27394 25184 0 -1 1077944320 2724864 0 0 0 139496 4907 0 0 20 0 20 0 419640452 28911378432 5814064 33554432000 4194304 4196468 140737175433440 140737175415984 139658350251767 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
/proc/27396/statm: 7058442 5814064 3500 1 0 7019544 0
[pid=27396/tid=27397] ppid=27394 vsize=28233768 memory=8317482817917895235 CPUtime=21.54 cores=0-7
/proc/27396/task/27397/stat : 27397 (java) S 27394 27394 25184 0 -1 1077944384 18869 0 0 0 2115 39 0 0 20 0 20 0 419640452 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139658354490992 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27398] ppid=27394 vsize=28233768 memory=4872558044660077418 CPUtime=174.54 cores=0-7
/proc/27396/task/27398/stat : 27398 (java) S 27394 27394 25184 0 -1 1077944384 335585 0 0 0 16837 617 0 0 20 0 20 0 419640453 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657901677200 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27399] ppid=27394 vsize=28233768 memory=1452 CPUtime=175.35 cores=0-7
/proc/27396/task/27399/stat : 27399 (java) S 27394 27394 25184 0 -1 1077944384 217981 0 0 0 16950 585 0 0 20 0 20 0 419640453 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657900624400 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27400] ppid=27394 vsize=28233768 memory=6791534058613427641 CPUtime=174.57 cores=0-7
/proc/27396/task/27400/stat : 27400 (java) S 27394 27394 25184 0 -1 1077944384 251031 0 0 0 16867 590 0 0 20 0 20 0 419640453 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657899571600 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 12 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27401] ppid=27394 vsize=28233768 memory=23256184 CPUtime=175.03 cores=0-7
/proc/27396/task/27401/stat : 27401 (java) S 27394 27394 25184 0 -1 1077944384 230366 0 0 0 16878 625 0 0 20 0 20 0 419640453 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657898518800 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 15 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27402] ppid=27394 vsize=28233768 memory=988 CPUtime=175.2 cores=0-7
/proc/27396/task/27402/stat : 27402 (java) S 27394 27394 25184 0 -1 1077944384 335782 0 0 0 16943 577 0 0 20 0 20 0 419640453 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657897467024 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 9 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27403] ppid=27394 vsize=28233768 memory=1452 CPUtime=175.14 cores=0-7
/proc/27396/task/27403/stat : 27403 (java) S 27394 27394 25184 0 -1 1077944384 634424 0 0 0 16842 672 0 0 20 0 20 0 419640453 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657896414224 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 12 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27404] ppid=27394 vsize=28233768 memory=23256252 CPUtime=174.81 cores=0-7
/proc/27396/task/27404/stat : 27404 (java) S 27394 27394 25184 0 -1 1077944384 290911 0 0 0 16910 571 0 0 20 0 20 0 419640453 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657895361424 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 11 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27405] ppid=27394 vsize=28233768 memory=1728 CPUtime=174.55 cores=0-7
/proc/27396/task/27405/stat : 27405 (java) S 27394 27394 25184 0 -1 1077944384 217129 0 0 0 16857 598 0 0 20 0 20 0 419640453 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657894308624 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 10 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27406] ppid=27394 vsize=28233768 memory=7992 CPUtime=21.39 cores=0-7
/proc/27396/task/27406/stat : 27406 (java) R 27394 27394 25184 0 -1 4202560 179159 0 0 0 2115 24 0 0 20 0 20 0 419640454 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657332405072 139658334709400 0 0 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27407] ppid=27394 vsize=28233768 memory=9580 CPUtime=0 cores=0-7
/proc/27396/task/27407/stat : 27407 (java) S 27394 27394 25184 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 20 0 419640455 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657331352672 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27408] ppid=27394 vsize=28233768 memory=1052 CPUtime=0 cores=0-7
/proc/27396/task/27408/stat : 27408 (java) S 27394 27394 25184 0 -1 1077944384 48 0 0 0 0 0 0 0 20 0 20 0 419640455 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657330299776 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27409] ppid=27394 vsize=28233768 memory=23256252 CPUtime=0 cores=0-7
/proc/27396/task/27409/stat : 27409 (java) S 27394 27394 25184 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419640457 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657329248080 139658350270363 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27410] ppid=27394 vsize=28233768 memory=2832 CPUtime=0.39 cores=0-7
/proc/27396/task/27410/stat : 27410 (java) S 27394 27394 25184 0 -1 1077944384 2661 0 0 0 39 0 0 0 20 0 20 0 419640458 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657328196512 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27411] ppid=27394 vsize=28233768 memory=668 CPUtime=0.45 cores=0-7
/proc/27396/task/27411/stat : 27411 (java) S 27394 27394 25184 0 -1 1077944384 2901 0 0 0 45 0 0 0 20 0 20 0 419640458 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657327143712 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27412] ppid=27394 vsize=28233768 memory=1256 CPUtime=0.46 cores=0-7
/proc/27396/task/27412/stat : 27412 (java) S 27394 27394 25184 0 -1 1077944384 2609 0 0 0 46 0 0 0 20 0 20 0 419640458 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657326090624 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27413] ppid=27394 vsize=28233768 memory=1076 CPUtime=0.36 cores=0-7
/proc/27396/task/27413/stat : 27413 (java) S 27394 27394 25184 0 -1 1077944384 3640 0 0 0 36 0 0 0 20 0 20 0 419640458 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657325038112 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27414] ppid=27394 vsize=28233768 memory=1452 CPUtime=0 cores=0-7
/proc/27396/task/27414/stat : 27414 (java) S 27394 27394 25184 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419640458 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657323985504 139658350261973 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
[pid=27396/tid=27415] ppid=27394 vsize=28233768 memory=1452 CPUtime=0.09 cores=0-7
/proc/27396/task/27415/stat : 27415 (java) S 27394 27394 25184 0 -1 1077944384 480 0 0 0 5 4 0 0 20 0 20 0 419640458 28911378432 5814064 33554432000 4194304 4196468 140737175433440 139657322932784 139658350262914 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 54 0 0 6293624 6294260 31510528 140737175442410 140737175442582 140737175442582 140737175445455 0
Current children cumulated CPU time: 1444.03 s
Current children cumulated vsize: 28346896 KiB
Current children cumulated memory: 23257708 KiB

[startup+220.4 s]
/proc/loadavg: 6.24 5.99 4.51 2/214 27452
/proc/meminfo: memFree=1359120/32770624 swapFree=66939852/67108860
[pid=27394] ppid=27391 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/27394/stat : 27394 (xcsp3-exec) S 27391 27394 25184 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 419640452 115843072 363 33554432000 4194304 5098028 140731528458480 140731528456584 140043510502012 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 33595392 140731528463221 140731528463465 140731528463465 140731528466378 0
/proc/27394/statm: 28282 363 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1452 KiB

Child status: 1
Real time (s): 220.463
CPU time (s): 1444.5
CPU user time (s): 1395.19
CPU system time (s): 49.3073
CPU usage (%): 655.211
Max. virtual memory (cumulated for all children) (KiB): 28346896
Max. memory (cumulated for all children) (KiB): 23257708

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1395.19
system time used= 49.3073
maximum resident set size= 23256572
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 2739911
page faults= 0
swaps= 0
block input operations= 8
block output operations= 424
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 30430
involuntary context switches= 30705


# summary of solver processes directly reported to runsolver:
#   pid: 27394
#   total CPU time (s): 1444.5
#   total CPU user time (s): 1395.19
#   total CPU system time (s): 49.3073

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 1.62062 second user time and 2.39306 second system time

The end

Launcher Data

Begin job on node119 at 2019-09-14 07:00:16
IDJOB=4393656
IDBENCH=134616
IDSOLVER=2841
FILE ID=node119/4393656-1568437255
RUNJOBID= node119-1568428810-25211
PBS_JOBID= 21702306
Free space on /tmp= 61460 MiB

SOLVER NAME= choco-solver parallel 2019-06-14
BENCH NAME= XCSP17/KnightTour/KnightTour-ext-s1/KnightTour-15-ext06.xml
COMMAND LINE= xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 24000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4393656-1568437255/watcher-4393656-1568437255 -o /tmp/evaluation-result-4393656-1568437255/solver-4393656-1568437255 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node119-1568428810-25211 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1263642623 HOME/instance-4393656-1568437255.xml

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

MD5SUM BENCH= af3f6bb9b1ca00becd13f0e7ebc5af3a
RANDOM SEED=1263642623

node119.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.47
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.47
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.47
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.47
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:        24576272 kB
MemAvailable:   31820080 kB
Buffers:          190396 kB
Cached:          7321244 kB
SwapCached:        61128 kB
Active:          2875472 kB
Inactive:        4701840 kB
Active(anon):       3716 kB
Inactive(anon):   103136 kB
Active(file):    2871756 kB
Inactive(file):  4598704 kB
Unevictable:      107736 kB
Mlocked:          107736 kB
SwapTotal:      67108860 kB
SwapFree:       66939852 kB
Dirty:             68572 kB
Writeback:             0 kB
AnonPages:        133348 kB
Mapped:            44748 kB
Shmem:             32816 kB
Slab:             207948 kB
SReclaimable:     178364 kB
SUnreclaim:        29584 kB
KernelStack:        3744 kB
PageTables:         5612 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     498648 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     88064 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      126336 kB
DirectMap2M:    33419264 kB

Free space on /tmp at the end= 61436 MiB
End job on node119 at 2019-09-14 07:03:56