Trace number 4404425

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-09-20 parallel? 6961.87 1358.69

General information on the benchmark

NameXCSP19/ConsecutiveSquarePacking/
ConsecutiveSquarePacking-sp-18-046.xml
MD5SUM90f9fedd4c3faeb9a4a1958b76d0db2e
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 benchmark186.128
Satisfiable
(Un)Satisfiability was proved
Number of variables36
Number of constraints153
Number of domains18
Minimum domain size29
Maximum domain size46
Distribution of domain sizes[{"size":29,"count":2},{"size":30,"count":2},{"size":31,"count":2},{"size":32,"count":2},{"size":33,"count":2},{"size":34,"count":2},{"size":35,"count":2},{"size":36,"count":2},{"size":37,"count":2},{"size":38,"count":2},{"size":39,"count":2},{"size":40,"count":2},{"size":41,"count":2},{"size":42,"count":2},{"size":43,"count":2},{"size":44,"count":2},{"size":45,"count":2},{"size":46,"count":2}]
Minimum variable degree17
Maximum variable degree17
Distribution of variable degrees[{"degree":17,"count":36}]
Minimum constraint arity4
Maximum constraint arity4
Distribution of constraint arities[{"arity":4,"count":153}]
Number of extensional constraints0
Number of intensional constraints153
Distribution of constraint types[{"type":"intension","count":153}]
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-4404425-1569012938.xml"  -tl '20160s' -p 8
0.09/0.19	c Choco 3fb4b153
0.09/0.19	c [HOME/instance-4404425-1569012938.xml, -tl, 20160s, -p, 8]
0.30/0.24	c 8 solvers in parallel
0.30/0.31	c parse instance...
6852.76/1342.45	Exception in thread "main" java.lang.OutOfMemoryError: GC overhead limit exceeded
6852.76/1342.45		at java.util.stream.StreamSupport.stream(StreamSupport.java:69)
6852.76/1342.45		at java.util.Arrays.stream(Arrays.java:5023)
6852.76/1342.45		at java.util.Arrays.stream(Arrays.java:5004)
6852.76/1342.45		at org.chocosolver.solver.expression.discrete.arithmetic.NaArExpression.ieval(NaArExpression.java:123)
6852.76/1342.45		at org.chocosolver.solver.expression.discrete.relational.BiReExpression.beval(BiReExpression.java:214)
6852.76/1342.45		at org.chocosolver.solver.expression.discrete.logical.NaLoExpression.beval(NaLoExpression.java:137)
6852.76/1342.45		at org.chocosolver.solver.expression.discrete.relational.ReExpression.lambda$extension$3(ReExpression.java:150)
6852.76/1342.45		at org.chocosolver.solver.expression.discrete.relational.ReExpression$$Lambda$166/428910174.valid(Unknown Source)
6852.76/1342.45		at org.chocosolver.solver.constraints.extension.TuplesFactory.generateTuples(TuplesFactory.java:88)
6852.76/1342.45		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
6852.76/1342.45		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
6852.76/1342.45		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:283)
6852.76/1342.45		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:164)
6852.76/1342.45		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
6852.76/1342.45		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
6852.76/1342.45		at org.xcsp.parser.XCallbacks$$Lambda$96/1795799895.accept(Unknown Source)
6852.76/1342.45		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
6852.76/1342.45		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
6852.76/1342.45		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
6852.76/1342.45		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
6852.76/1342.45		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
6852.76/1342.45		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
6852.76/1342.45		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
6852.76/1342.45		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
6852.76/1342.45		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
6852.76/1342.45		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
6852.76/1342.45		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
6852.76/1342.45		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
6961.58/1358.46	s UNKNOWN
6961.58/1358.46	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 (13640 MiB free)
  memory of node 1: 16384 MiB (12119 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /var/tmp/evaluation-result-4404425-1569012938/watcher-4404425-1569012938 -o /var/tmp/evaluation-result-4404425-1569012938/solver-4404425-1569012938 -C 20160 -W 2520 -M 31000 --bin-var /var/tmp/runsolver-exch-node105-1569003138-317 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 618370248 HOME/instance-4404425-1569012938.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=1175, runsolver pid=1172
Current StackSize limit: 8192 KiB


[startup+0.100142 s]*
/proc/loadavg: 7.23 7.17 7.00 3/212 1196
/proc/meminfo: memFree=26360060/32770624 swapFree=66955780/67108860
[pid=1175] ppid=1172 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/1175/stat : 1175 (xcsp3-exec) S 1172 1175 32757 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 477551835 115843072 363 33554432000 4194304 5098028 140727949747504 140727949745608 139889277801084 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 36995072 140727949755218 140727949755477 140727949755477 140727949758406 0
/proc/1175/statm: 28282 363 304 221 0 87 0
[pid=1177] ppid=1175 vsize=28227396 memory=31208 CPUtime=0.09 cores=0-7
/proc/1177/stat : 1177 (java) S 1175 1175 32757 0 -1 1077944320 5217 0 0 0 8 1 0 0 20 0 20 0 477551835 28904853504 7802 33554432000 4194304 4196468 140732197842400 140732197824944 140329981091575 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
/proc/1177/statm: 7056849 7802 3033 1 0 7019032 0
[pid=1177/tid=1178] ppid=1175 vsize=28227396 memory=-7035114785800479027 CPUtime=0.07 cores=0-7
/proc/1177/task/1178/stat : 1178 (java) R 1175 1175 32757 0 -1 4202560 3264 0 0 0 6 1 0 0 20 0 20 0 477551835 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329985319456 140329981103510 0 4 0 16800975 0 0 0 -1 3 0 0 1 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1179] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1179/stat : 1179 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329937644560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1180] ppid=1175 vsize=28227396 memory=140210001946240 CPUtime=0 cores=0-7
/proc/1177/task/1180/stat : 1180 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329531595920 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1181] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1181/stat : 1181 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329530542864 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1182] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1182/stat : 1182 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329529490320 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1183] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1183/stat : 1183 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329528437264 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1184] ppid=1175 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/1177/task/1184/stat : 1184 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329527384720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1185] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1185/stat : 1185 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329526331664 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1186] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1186/stat : 1186 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 7802 33554432000 4194304 4196468 140732197842400 140329525279120 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1187] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1187/stat : 1187 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551838 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328243759856 140329981102722 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1188] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1188/stat : 1188 (java) S 1175 1175 32757 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 477551838 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328242706080 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1189] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1189/stat : 1189 (java) S 1175 1175 32757 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 477551838 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328241652976 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1190] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1190/stat : 1190 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551841 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328240601552 140329981110171 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1191] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1191/stat : 1191 (java) S 1175 1175 32757 0 -1 1077944384 29 0 0 0 0 0 0 0 20 0 20 0 477551842 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328239548656 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1192] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1192/stat : 1192 (java) S 1175 1175 32757 0 -1 1077944384 287 0 0 0 0 0 0 0 20 0 20 0 477551842 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328238496112 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1193] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1193/stat : 1193 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 477551842 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328237443056 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1194] ppid=1175 vsize=28227396 memory=0 CPUtime=0.01 cores=0-7
/proc/1177/task/1194/stat : 1194 (java) S 1175 1175 32757 0 -1 1077944384 336 0 0 0 1 0 0 0 20 0 20 0 477551842 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328236390512 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1195] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1195/stat : 1195 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 477551842 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328235338720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1196] ppid=1175 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/1177/task/1196/stat : 1196 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551843 28904853504 7802 33554432000 4194304 4196468 140732197842400 140328234286256 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
Current children cumulated CPU time: 0.09 s
Current children cumulated vsize: 28340524 KiB
Current children cumulated memory: 32660 KiB

[startup+0.210432 s]*
/proc/loadavg: 7.23 7.17 7.00 2/212 1196
/proc/meminfo: memFree=26346296/32770624 swapFree=66955780/67108860
[pid=1175] ppid=1172 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/1175/stat : 1175 (xcsp3-exec) S 1172 1175 32757 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 477551835 115843072 363 33554432000 4194304 5098028 140727949747504 140727949745608 139889277801084 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 36995072 140727949755218 140727949755477 140727949755477 140727949758406 0
/proc/1175/statm: 28282 363 304 221 0 87 0
[pid=1177] ppid=1175 vsize=28227396 memory=42876 CPUtime=0.3 cores=0-7
/proc/1177/stat : 1177 (java) S 1175 1175 32757 0 -1 1077944320 8913 0 0 0 26 4 0 0 20 0 20 0 477551835 28904853504 10719 33554432000 4194304 4196468 140732197842400 140732197824944 140329981091575 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
/proc/1177/statm: 7056849 10719 3309 1 0 7019032 0
[pid=1177/tid=1178] ppid=1175 vsize=28227396 memory=8316850467074736180 CPUtime=0.18 cores=0-7
/proc/1177/task/1178/stat : 1178 (java) R 1175 1175 32757 0 -1 4202560 6085 0 0 0 15 3 0 0 20 0 20 0 477551835 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329985319040 140329981103510 0 4 0 16800975 0 0 0 -1 3 0 0 1 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1179] ppid=1175 vsize=28227396 memory=1899516 CPUtime=0 cores=0-7
/proc/1177/task/1179/stat : 1179 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329937644560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1180] ppid=1175 vsize=28227396 memory=288370586153657984 CPUtime=0 cores=0-7
/proc/1177/task/1180/stat : 1180 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329531595920 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1181] ppid=1175 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/1177/task/1181/stat : 1181 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329530542864 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1182] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1182/stat : 1182 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329529490320 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1183] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1183/stat : 1183 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329528437264 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1184] ppid=1175 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/1177/task/1184/stat : 1184 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329527384720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1185] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1185/stat : 1185 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329526331664 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1186] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1186/stat : 1186 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28904853504 10719 33554432000 4194304 4196468 140732197842400 140329525279120 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1187] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1187/stat : 1187 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551838 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328243759856 140329981102722 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1188] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1188/stat : 1188 (java) S 1175 1175 32757 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 477551838 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328242706080 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1189] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1189/stat : 1189 (java) S 1175 1175 32757 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 477551838 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328241652976 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1190] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1190/stat : 1190 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551841 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328240601552 140329981110171 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1191] ppid=1175 vsize=28227396 memory=0 CPUtime=0.02 cores=0-7
/proc/1177/task/1191/stat : 1191 (java) S 1175 1175 32757 0 -1 1077944384 310 0 0 0 2 0 0 0 20 0 20 0 477551842 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328239548656 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1192] ppid=1175 vsize=28227396 memory=0 CPUtime=0.01 cores=0-7
/proc/1177/task/1192/stat : 1192 (java) S 1175 1175 32757 0 -1 1077944384 323 0 0 0 1 0 0 0 20 0 20 0 477551842 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328238496112 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1193] ppid=1175 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/1177/task/1193/stat : 1193 (java) S 1175 1175 32757 0 -1 1077944384 153 0 0 0 0 0 0 0 20 0 20 0 477551842 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328237443056 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1194] ppid=1175 vsize=28227396 memory=-1 CPUtime=0.06 cores=0-7
/proc/1177/task/1194/stat : 1194 (java) R 1175 1175 32757 0 -1 4202560 731 0 0 0 6 0 0 0 20 0 20 0 477551842 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328236390512 140329973328702 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1195] ppid=1175 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1195/stat : 1195 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 477551842 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328235338720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1196] ppid=1175 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/1177/task/1196/stat : 1196 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551843 28904853504 10719 33554432000 4194304 4196468 140732197842400 140328234286256 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
Current children cumulated CPU time: 0.3 s
Current children cumulated vsize: 28340524 KiB
Current children cumulated memory: 44328 KiB

[startup+0.310308 s]*
/proc/loadavg: 7.23 7.17 7.00 3/212 1196
/proc/meminfo: memFree=26341320/32770624 swapFree=66955780/67108860
[pid=1175] ppid=1172 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/1175/stat : 1175 (xcsp3-exec) S 1172 1175 32757 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 477551835 115843072 363 33554432000 4194304 5098028 140727949747504 140727949745608 139889277801084 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 36995072 140727949755218 140727949755477 140727949755477 140727949758406 0
/proc/1175/statm: 28282 363 304 221 0 87 0
[pid=1177] ppid=1175 vsize=28231652 memory=48556 CPUtime=0.46 cores=0-7
/proc/1177/stat : 1177 (java) S 1175 1175 32757 0 -1 1077944320 9926 0 1 0 42 4 0 0 20 0 20 0 477551835 28909211648 12139 33554432000 4194304 4196468 140732197842400 140732197824944 140329981091575 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
/proc/1177/statm: 7057913 12139 3343 1 0 7019032 0
[pid=1177/tid=1178] ppid=1175 vsize=28231652 memory=-7035114785800479027 CPUtime=0.26 cores=0-7
/proc/1177/task/1178/stat : 1178 (java) R 1175 1175 32757 0 -1 4202560 7029 0 1 0 23 3 0 0 20 0 20 0 477551835 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329985322160 140329981113501 0 4 0 16800975 0 0 0 -1 1 0 0 2 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1179] ppid=1175 vsize=28231652 memory=2832 CPUtime=0 cores=0-7
/proc/1177/task/1179/stat : 1179 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329937644560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1180] ppid=1175 vsize=28231652 memory=1620 CPUtime=0 cores=0-7
/proc/1177/task/1180/stat : 1180 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 477551836 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329531595920 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1181] ppid=1175 vsize=28231652 memory=1136 CPUtime=0 cores=0-7
/proc/1177/task/1181/stat : 1181 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329530542864 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1182] ppid=1175 vsize=28231652 memory=1072 CPUtime=0 cores=0-7
/proc/1177/task/1182/stat : 1182 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329529490320 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1183] ppid=1175 vsize=28231652 memory=6036 CPUtime=0 cores=0-7
/proc/1177/task/1183/stat : 1183 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551836 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329528437264 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1184] ppid=1175 vsize=28231652 memory=784 CPUtime=0 cores=0-7
/proc/1177/task/1184/stat : 1184 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329527384720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1185] ppid=1175 vsize=28231652 memory=1060 CPUtime=0 cores=0-7
/proc/1177/task/1185/stat : 1185 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551836 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329526331664 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1186] ppid=1175 vsize=28231652 memory=14000 CPUtime=0 cores=0-7
/proc/1177/task/1186/stat : 1186 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28909211648 12139 33554432000 4194304 4196468 140732197842400 140329525279120 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1187] ppid=1175 vsize=28231652 memory=4104 CPUtime=0 cores=0-7
/proc/1177/task/1187/stat : 1187 (java) S 1175 1175 32757 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 477551838 28909211648 12139 33554432000 4194304 4196468 140732197842400 140328243759856 140329981102722 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1188] ppid=1175 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1188/stat : 1188 (java) S 1175 1175 32757 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 477551838 28909211648 12139 33554432000 4194304 4196468 140732197842400 140328242706080 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1189] ppid=1175 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1189/stat : 1189 (java) S 1175 1175 32757 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 477551838 28909211648 12139 33554432000 4194304 4196468 140732197842400 140328241652976 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1190] ppid=1175 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1190/stat : 1190 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551841 28909211648 12139 33554432000 4194304 4196468 140732197842400 140328240601552 140329981110171 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1191] ppid=1175 vsize=28231652 memory=0 CPUtime=0.03 cores=0-7
/proc/1177/task/1191/stat : 1191 (java) S 1175 1175 32757 0 -1 1077944384 313 0 0 0 3 0 0 0 20 0 20 0 477551842 28909211648 12139 33554432000 4194304 4196468 140732197842400 140328239548656 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1192] ppid=1175 vsize=28231652 memory=140209878566319 CPUtime=0.02 cores=0-7
/proc/1177/task/1192/stat : 1192 (java) S 1175 1175 32757 0 -1 1077944384 335 0 0 0 2 0 0 0 20 0 20 0 477551842 28909211648 12139 33554432000 4194304 4196468 140732197842400 140328238496112 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1193] ppid=1175 vsize=28231652 memory=0 CPUtime=0.01 cores=0-7
/proc/1177/task/1193/stat : 1193 (java) S 1175 1175 32757 0 -1 1077944384 154 0 0 0 1 0 0 0 20 0 20 0 477551842 28909211648 12167 33554432000 4194304 4196468 140732197842400 140328237443056 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1194] ppid=1175 vsize=28231652 memory=280419757123488 CPUtime=0.12 cores=0-7
/proc/1177/task/1194/stat : 1194 (java) S 1175 1175 32757 0 -1 1077944384 784 0 0 0 12 0 0 0 20 0 20 0 477551842 28909211648 12167 33554432000 4194304 4196468 140732197842400 140328236390512 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1195] ppid=1175 vsize=28231652 memory=140209878594484 CPUtime=0 cores=0-7
/proc/1177/task/1195/stat : 1195 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 477551842 28909211648 12167 33554432000 4194304 4196468 140732197842400 140328235338720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1196] ppid=1175 vsize=28231652 memory=-1 CPUtime=0 cores=0-7
/proc/1177/task/1196/stat : 1196 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 477551843 28909211648 12167 33554432000 4194304 4196468 140732197842400 140328234286256 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
Current children cumulated CPU time: 0.46 s
Current children cumulated vsize: 28344780 KiB
Current children cumulated memory: 50008 KiB

[startup+0.701316 s]
/proc/loadavg: 7.23 7.17 7.00 4/212 1196
/proc/meminfo: memFree=26329196/32770624 swapFree=66955780/67108860
[pid=1175] ppid=1172 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/1175/stat : 1175 (xcsp3-exec) S 1172 1175 32757 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 477551835 115843072 363 33554432000 4194304 5098028 140727949747504 140727949745608 139889277801084 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 36995072 140727949755218 140727949755477 140727949755477 140727949758406 0
/proc/1175/statm: 28282 363 304 221 0 87 0
[pid=1177] ppid=1175 vsize=28233776 memory=100768 CPUtime=1.34 cores=0-7
/proc/1177/stat : 1177 (java) S 1175 1175 32757 0 -1 1077944320 14290 0 2 0 127 7 0 0 20 0 20 0 477551835 28911386624 25192 33554432000 4194304 4196468 140732197842400 140732197824944 140329981091575 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
/proc/1177/statm: 7058444 25192 3452 1 0 7019544 0
[pid=1177/tid=1178] ppid=1175 vsize=28233776 memory=280419757538992 CPUtime=0.58 cores=0-7
/proc/1177/task/1178/stat : 1178 (java) R 1175 1175 32757 0 -1 4202560 8641 0 1 0 53 5 0 0 20 0 20 0 477551835 28911386624 25192 33554432000 4194304 4196468 140732197842400 140329985326352 140329621110277 0 4 0 16800975 0 0 0 -1 1 0 0 8 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1179] ppid=1175 vsize=28233776 memory=140209878770544 CPUtime=0 cores=0-7
/proc/1177/task/1179/stat : 1179 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28911386624 25192 33554432000 4194304 4196468 140732197842400 140329937644560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1180] ppid=1175 vsize=28233776 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1180/stat : 1180 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 477551836 28911386624 25192 33554432000 4194304 4196468 140732197842400 140329531595920 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1181] ppid=1175 vsize=28233776 memory=0 CPUtime=0 cores=0-7
/proc/1177/task/1181/stat : 1181 (java) S 1175 1175 32757 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 477551836 28911386624 25192 33554432000 4194304 4196468 140732197842400 140329530542864 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0

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

[pid=1177/tid=1178] ppid=1175 vsize=28300340 memory=6441100075507936360 CPUtime=440.43 cores=0-7
/proc/1177/task/1178/stat : 1178 (java) S 1175 1175 32757 0 -1 1077944384 105056 0 1 0 43930 113 0 0 20 0 21 0 477551835 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329985332256 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 8 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1179] ppid=1175 vsize=28300340 memory=14056 CPUtime=800.99 cores=0-7
/proc/1177/task/1179/stat : 1179 (java) S 1175 1175 32757 0 -1 1077944384 1813133 0 0 0 79416 683 0 0 20 0 21 0 477551836 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329937644560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1180] ppid=1175 vsize=28300340 memory=2116 CPUtime=800.7 cores=0-7
/proc/1177/task/1180/stat : 1180 (java) S 1175 1175 32757 0 -1 1077944384 1687667 0 0 0 79331 739 0 0 20 0 21 0 477551836 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329531595920 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1181] ppid=1175 vsize=28300340 memory=516 CPUtime=800.6 cores=0-7
/proc/1177/task/1181/stat : 1181 (java) S 1175 1175 32757 0 -1 1077944384 1666963 0 0 0 79361 699 0 0 20 0 21 0 477551836 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329530542864 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 31 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1182] ppid=1175 vsize=28300340 memory=1452 CPUtime=807.22 cores=0-7
/proc/1177/task/1182/stat : 1182 (java) S 1175 1175 32757 0 -1 1077944384 1478253 0 0 0 79998 724 0 0 20 0 21 0 477551836 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329529490320 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 28 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1183] ppid=1175 vsize=28300340 memory=25432344 CPUtime=800.35 cores=0-7
/proc/1177/task/1183/stat : 1183 (java) S 1175 1175 32757 0 -1 1077944384 1529074 0 0 0 79208 827 0 0 20 0 21 0 477551836 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329528437264 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 28 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1184] ppid=1175 vsize=28300340 memory=3624 CPUtime=799.68 cores=0-7
/proc/1177/task/1184/stat : 1184 (java) S 1175 1175 32757 0 -1 1077944384 1649602 0 0 0 79273 695 0 0 20 0 21 0 477551836 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329527384720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1185] ppid=1175 vsize=28300340 memory=1452 CPUtime=800.12 cores=0-7
/proc/1177/task/1185/stat : 1185 (java) S 1175 1175 32757 0 -1 1077944384 1762502 0 0 0 79325 687 0 0 20 0 21 0 477551836 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329526331664 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1186] ppid=1175 vsize=28300340 memory=1452 CPUtime=801.4 cores=0-7
/proc/1177/task/1186/stat : 1186 (java) S 1175 1175 32757 0 -1 1077944384 1443763 0 0 0 79489 651 0 0 20 0 21 0 477551836 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140329525279120 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 26 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1187] ppid=1175 vsize=28300340 memory=1452 CPUtime=105.4 cores=0-7
/proc/1177/task/1187/stat : 1187 (java) R 1175 1175 32757 0 -1 4202560 968790 0 0 0 10476 64 0 0 20 0 21 0 477551838 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328243758400 140329966088084 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1188] ppid=1175 vsize=28300340 memory=25432344 CPUtime=0 cores=0-7
/proc/1177/task/1188/stat : 1188 (java) S 1175 1175 32757 0 -1 1077944384 54 0 0 0 0 0 0 0 20 0 21 0 477551838 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328242706144 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1189] ppid=1175 vsize=28300340 memory=2372 CPUtime=0 cores=0-7
/proc/1177/task/1189/stat : 1189 (java) S 1175 1175 32757 0 -1 1077944384 98 0 0 0 0 0 0 0 20 0 21 0 477551838 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328241652992 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1190] ppid=1175 vsize=28300340 memory=4638778424102965584 CPUtime=0 cores=0-7
/proc/1177/task/1190/stat : 1190 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 477551841 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328240601552 140329981110171 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1191] ppid=1175 vsize=28300340 memory=25432276 CPUtime=0.47 cores=0-7
/proc/1177/task/1191/stat : 1191 (java) S 1175 1175 32757 0 -1 1077944384 5782 0 0 0 45 2 0 0 20 0 21 0 477551842 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328239548704 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1192] ppid=1175 vsize=28300340 memory=-1598831813028945288 CPUtime=0.4 cores=0-7
/proc/1177/task/1192/stat : 1192 (java) S 1175 1175 32757 0 -1 1077944384 4685 0 0 0 39 1 0 0 20 0 21 0 477551842 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328238496160 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1193] ppid=1175 vsize=28300340 memory=-1807685287717842718 CPUtime=0.89 cores=0-7
/proc/1177/task/1193/stat : 1193 (java) S 1175 1175 32757 0 -1 1077944384 8912 0 1 0 87 2 0 0 20 0 21 0 477551842 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328237442816 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1194] ppid=1175 vsize=28300340 memory=8594177171962439322 CPUtime=0.6 cores=0-7
/proc/1177/task/1194/stat : 1194 (java) S 1175 1175 32757 0 -1 1077944384 11948 0 0 0 59 1 0 0 20 0 21 0 477551842 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328236390560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1195] ppid=1175 vsize=28300340 memory=4486604260213485459 CPUtime=0 cores=0-7
/proc/1177/task/1195/stat : 1195 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 477551842 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328235338720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1196] ppid=1175 vsize=28300340 memory=2116 CPUtime=0.59 cores=0-7
/proc/1177/task/1196/stat : 1196 (java) S 1175 1175 32757 0 -1 1077944384 2338 0 0 0 28 31 0 0 20 0 21 0 477551843 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328234286256 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1320] ppid=1175 vsize=28300340 memory=516 CPUtime=0 cores=0-7
/proc/1177/task/1320/stat : 1320 (java) S 1175 1175 32757 0 -1 1077944384 62 0 0 0 0 0 0 0 20 0 21 0 477686081 28979548160 6358086 33554432000 4194304 4196468 140732197842400 140328225070656 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
Current children cumulated CPU time: 6959.97 s
Current children cumulated vsize: 28413468 KiB
Current children cumulated memory: 25433796 KiB

[startup+1357.6 s]
/proc/loadavg: 6.85 6.90 6.06 2/211 1320
/proc/meminfo: memFree=912284/32770624 swapFree=66955788/67108860
[pid=1175] ppid=1172 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/1175/stat : 1175 (xcsp3-exec) S 1172 1175 32757 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 477551835 115843072 363 33554432000 4194304 5098028 140727949747504 140727949745608 139889277801084 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 36995072 140727949755218 140727949755477 140727949755477 140727949758406 0
/proc/1175/statm: 28282 363 304 221 0 87 0
[pid=1177] ppid=1175 vsize=28300340 memory=25432348 CPUtime=6960.77 cores=0-7
/proc/1177/stat : 1177 (java) S 1175 1175 32757 0 -1 1077944320 14140966 0 2 0 690171 5906 0 0 20 0 21 0 477551835 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140732197824944 140329981091575 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
/proc/1177/statm: 7075085 6358087 3513 1 0 7036185 0
[pid=1177/tid=1178] ppid=1175 vsize=28300340 memory=7552 CPUtime=440.43 cores=0-7
/proc/1177/task/1178/stat : 1178 (java) S 1175 1175 32757 0 -1 1077944384 105056 0 1 0 43930 113 0 0 20 0 21 0 477551835 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329985332256 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 8 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1179] ppid=1175 vsize=28300340 memory=8112282956445269571 CPUtime=800.99 cores=0-7
/proc/1177/task/1179/stat : 1179 (java) S 1175 1175 32757 0 -1 1077944384 1813133 0 0 0 79416 683 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329937644560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1180] ppid=1175 vsize=28300340 memory=2116 CPUtime=800.7 cores=0-7
/proc/1177/task/1180/stat : 1180 (java) S 1175 1175 32757 0 -1 1077944384 1687667 0 0 0 79331 739 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329531595920 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1181] ppid=1175 vsize=28300340 memory=516 CPUtime=800.6 cores=0-7
/proc/1177/task/1181/stat : 1181 (java) S 1175 1175 32757 0 -1 1077944384 1666963 0 0 0 79361 699 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329530542864 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 31 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1182] ppid=1175 vsize=28300340 memory=1556 CPUtime=807.22 cores=0-7
/proc/1177/task/1182/stat : 1182 (java) S 1175 1175 32757 0 -1 1077944384 1478253 0 0 0 79998 724 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329529490320 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 28 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1183] ppid=1175 vsize=28300340 memory=916 CPUtime=800.35 cores=0-7
/proc/1177/task/1183/stat : 1183 (java) S 1175 1175 32757 0 -1 1077944384 1529074 0 0 0 79208 827 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329528437264 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 28 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1184] ppid=1175 vsize=28300340 memory=4784 CPUtime=799.68 cores=0-7
/proc/1177/task/1184/stat : 1184 (java) S 1175 1175 32757 0 -1 1077944384 1649602 0 0 0 79273 695 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329527384720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1185] ppid=1175 vsize=28300340 memory=43924 CPUtime=800.12 cores=0-7
/proc/1177/task/1185/stat : 1185 (java) S 1175 1175 32757 0 -1 1077944384 1762502 0 0 0 79325 687 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329526331664 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1186] ppid=1175 vsize=28300340 memory=984 CPUtime=801.4 cores=0-7
/proc/1177/task/1186/stat : 1186 (java) S 1175 1175 32757 0 -1 1077944384 1443763 0 0 0 79489 651 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329525279120 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 26 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1187] ppid=1175 vsize=28300340 memory=3608 CPUtime=106.2 cores=0-7
/proc/1177/task/1187/stat : 1187 (java) R 1175 1175 32757 0 -1 4202560 969804 0 0 0 10556 64 0 0 20 0 21 0 477551838 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328243758400 140329966087920 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1188] ppid=1175 vsize=28300340 memory=616 CPUtime=0 cores=0-7
/proc/1177/task/1188/stat : 1188 (java) S 1175 1175 32757 0 -1 1077944384 54 0 0 0 0 0 0 0 20 0 21 0 477551838 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328242706144 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1189] ppid=1175 vsize=28300340 memory=2832 CPUtime=0 cores=0-7
/proc/1177/task/1189/stat : 1189 (java) S 1175 1175 32757 0 -1 1077944384 98 0 0 0 0 0 0 0 20 0 21 0 477551838 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328241652992 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1190] ppid=1175 vsize=28300340 memory=1620 CPUtime=0 cores=0-7
/proc/1177/task/1190/stat : 1190 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 477551841 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328240601552 140329981110171 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1191] ppid=1175 vsize=28300340 memory=1136 CPUtime=0.47 cores=0-7
/proc/1177/task/1191/stat : 1191 (java) S 1175 1175 32757 0 -1 1077944384 5782 0 0 0 45 2 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328239548704 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1192] ppid=1175 vsize=28300340 memory=1072 CPUtime=0.4 cores=0-7
/proc/1177/task/1192/stat : 1192 (java) S 1175 1175 32757 0 -1 1077944384 4685 0 0 0 39 1 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328238496160 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1193] ppid=1175 vsize=28300340 memory=6036 CPUtime=0.89 cores=0-7
/proc/1177/task/1193/stat : 1193 (java) S 1175 1175 32757 0 -1 1077944384 8912 0 1 0 87 2 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328237442816 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1194] ppid=1175 vsize=28300340 memory=784 CPUtime=0.6 cores=0-7
/proc/1177/task/1194/stat : 1194 (java) S 1175 1175 32757 0 -1 1077944384 11948 0 0 0 59 1 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328236390560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1195] ppid=1175 vsize=28300340 memory=928 CPUtime=0 cores=0-7
/proc/1177/task/1195/stat : 1195 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328235338720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1196] ppid=1175 vsize=28300340 memory=1412 CPUtime=0.59 cores=0-7
/proc/1177/task/1196/stat : 1196 (java) S 1175 1175 32757 0 -1 1077944384 2367 0 0 0 28 31 0 0 20 0 21 0 477551843 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328234286256 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1320] ppid=1175 vsize=28300340 memory=3484 CPUtime=0 cores=0-7
/proc/1177/task/1320/stat : 1320 (java) S 1175 1175 32757 0 -1 1077944384 62 0 0 0 0 0 0 0 20 0 21 0 477686081 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328225070656 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
Current children cumulated CPU time: 6960.77 s
Current children cumulated vsize: 28413468 KiB
Current children cumulated memory: 25433800 KiB

[startup+1358.4 s]
/proc/loadavg: 6.85 6.90 6.06 2/211 1320
/proc/meminfo: memFree=912284/32770624 swapFree=66955788/67108860
[pid=1175] ppid=1172 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/1175/stat : 1175 (xcsp3-exec) S 1172 1175 32757 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 477551835 115843072 363 33554432000 4194304 5098028 140727949747504 140727949745608 139889277801084 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 36995072 140727949755218 140727949755477 140727949755477 140727949758406 0
/proc/1175/statm: 28282 363 304 221 0 87 0
[pid=1177] ppid=1175 vsize=28300340 memory=25432348 CPUtime=6961.58 cores=0-7
/proc/1177/stat : 1177 (java) S 1175 1175 32757 0 -1 1077944320 14156720 0 2 0 690251 5907 0 0 20 0 21 0 477551835 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140732197824944 140329981091575 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
/proc/1177/statm: 7075085 6358087 3513 1 0 7036185 0
[pid=1177/tid=1178] ppid=1175 vsize=28300340 memory=8112282956445269571 CPUtime=440.43 cores=0-7
/proc/1177/task/1178/stat : 1178 (java) S 1175 1175 32757 0 -1 1077944384 105056 0 1 0 43930 113 0 0 20 0 21 0 477551835 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329985332256 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 8 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1179] ppid=1175 vsize=28300340 memory=4784 CPUtime=800.99 cores=0-7
/proc/1177/task/1179/stat : 1179 (java) S 1175 1175 32757 0 -1 1077944384 1813133 0 0 0 79416 683 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329937644560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1180] ppid=1175 vsize=28300340 memory=43924 CPUtime=800.7 cores=0-7
/proc/1177/task/1180/stat : 1180 (java) S 1175 1175 32757 0 -1 1077944384 1687667 0 0 0 79331 739 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329531595920 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1181] ppid=1175 vsize=28300340 memory=984 CPUtime=800.6 cores=0-7
/proc/1177/task/1181/stat : 1181 (java) S 1175 1175 32757 0 -1 1077944384 1666963 0 0 0 79361 699 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329530542864 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 31 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1182] ppid=1175 vsize=28300340 memory=164 CPUtime=807.22 cores=0-7
/proc/1177/task/1182/stat : 1182 (java) S 1175 1175 32757 0 -1 1077944384 1478253 0 0 0 79998 724 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329529490320 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 28 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1183] ppid=1175 vsize=28300340 memory=7597678594358465123 CPUtime=800.35 cores=0-7
/proc/1177/task/1183/stat : 1183 (java) S 1175 1175 32757 0 -1 1077944384 1529074 0 0 0 79208 827 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329528437264 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 28 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1184] ppid=1175 vsize=28300340 memory=7597678594358465123 CPUtime=799.68 cores=0-7
/proc/1177/task/1184/stat : 1184 (java) S 1175 1175 32757 0 -1 1077944384 1649602 0 0 0 79273 695 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329527384720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1185] ppid=1175 vsize=28300340 memory=7307495429839934290 CPUtime=800.12 cores=0-7
/proc/1177/task/1185/stat : 1185 (java) S 1175 1175 32757 0 -1 1077944384 1762502 0 0 0 79325 687 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329526331664 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 29 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1186] ppid=1175 vsize=28300340 memory=4486604260213485459 CPUtime=801.4 cores=0-7
/proc/1177/task/1186/stat : 1186 (java) S 1175 1175 32757 0 -1 1077944384 1443763 0 0 0 79489 651 0 0 20 0 21 0 477551836 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140329525279120 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 26 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1187] ppid=1175 vsize=28300340 memory=804 CPUtime=107 cores=0-7
/proc/1177/task/1187/stat : 1187 (java) R 1175 1175 32757 0 -1 4202560 985794 0 0 0 10636 64 0 0 20 0 21 0 477551838 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328243758288 140329959461750 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1188] ppid=1175 vsize=28300340 memory=1160 CPUtime=0 cores=0-7
/proc/1177/task/1188/stat : 1188 (java) S 1175 1175 32757 0 -1 1077944384 54 0 0 0 0 0 0 0 20 0 21 0 477551838 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328242706144 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1189] ppid=1175 vsize=28300340 memory=1800 CPUtime=0 cores=0-7
/proc/1177/task/1189/stat : 1189 (java) S 1175 1175 32757 0 -1 1077944384 98 0 0 0 0 0 0 0 20 0 21 0 477551838 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328241652992 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1190] ppid=1175 vsize=28300340 memory=19916 CPUtime=0 cores=0-7
/proc/1177/task/1190/stat : 1190 (java) S 1175 1175 32757 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 477551841 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328240601552 140329981110171 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1191] ppid=1175 vsize=28300340 memory=14056 CPUtime=0.47 cores=0-7
/proc/1177/task/1191/stat : 1191 (java) S 1175 1175 32757 0 -1 1077944384 5782 0 0 0 45 2 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328239548704 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1192] ppid=1175 vsize=28300340 memory=8112282956445269571 CPUtime=0.4 cores=0-7
/proc/1177/task/1192/stat : 1192 (java) S 1175 1175 32757 0 -1 1077944384 4685 0 0 0 39 1 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328238496160 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1193] ppid=1175 vsize=28300340 memory=4195447490462202311 CPUtime=0.89 cores=0-7
/proc/1177/task/1193/stat : 1193 (java) S 1175 1175 32757 0 -1 1077944384 8912 0 1 0 87 2 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328237442816 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1194] ppid=1175 vsize=28300340 memory=1556 CPUtime=0.6 cores=0-7
/proc/1177/task/1194/stat : 1194 (java) S 1175 1175 32757 0 -1 1077944384 11948 0 0 0 59 1 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328236390560 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1195] ppid=1175 vsize=28300340 memory=928 CPUtime=0 cores=0-7
/proc/1177/task/1195/stat : 1195 (java) S 1175 1175 32757 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 477551842 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328235338720 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1196] ppid=1175 vsize=28300340 memory=1412 CPUtime=0.59 cores=0-7
/proc/1177/task/1196/stat : 1196 (java) S 1175 1175 32757 0 -1 1077944384 2367 0 0 0 28 31 0 0 20 0 21 0 477551843 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328234286256 140329981102722 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
[pid=1177/tid=1320] ppid=1175 vsize=28300340 memory=3484 CPUtime=0 cores=0-7
/proc/1177/task/1320/stat : 1320 (java) S 1175 1175 32757 0 -1 1077944384 62 0 0 0 0 0 0 0 20 0 21 0 477686081 28979548160 6358087 33554432000 4194304 4196468 140732197842400 140328225070656 140329981101781 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 35909632 140732197843926 140732197844102 140732197844102 140732197846991 0
Current children cumulated CPU time: 6961.58 s
Current children cumulated vsize: 28413468 KiB
Current children cumulated memory: 25433800 KiB

[startup+1358.6 s]
/proc/loadavg: 6.85 6.90 6.06 2/211 1320
/proc/meminfo: memFree=912284/32770624 swapFree=66955788/67108860
[pid=1175] ppid=1172 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/1175/stat : 1175 (xcsp3-exec) S 1172 1175 32757 0 -1 4202496 546 0 0 0 0 0 0 0 20 0 1 0 477551835 115843072 363 33554432000 4194304 5098028 140727949747504 140727949745608 139889277801084 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 36995072 140727949755218 140727949755477 140727949755477 140727949758406 0
/proc/1175/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): 1358.69
CPU time (s): 6961.87
CPU user time (s): 6902.56
CPU system time (s): 59.303
CPU usage (%): 512.395
Max. virtual memory (cumulated for all children) (KiB): 28413468
Max. memory (cumulated for all children) (KiB): 25433800

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 6902.56
system time used= 59.303
maximum resident set size= 25432540
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 14193072
page faults= 2
swaps= 0
block input operations= 16624
block output operations= 1848
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 99029
involuntary context switches= 209091


# summary of solver processes directly reported to runsolver:
#   pid: 1175
#   total CPU time (s): 6961.87
#   total CPU user time (s): 6902.56
#   total CPU system time (s): 59.303

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 8.92539 second user time and 15.4022 second system time

The end

Launcher Data

Begin job on node105 at 2019-09-20 21:54:00
IDJOB=4404425
IDBENCH=141723
IDSOLVER=2865
FILE ID=node105/4404425-1569012938
RUNJOBID= node105-1569003138-317
PBS_JOBID= 21704763
Free space on /var/tmp= 13180 MiB

SOLVER NAME= choco-solver 2019-09-20 parallel
BENCH NAME= XCSP19/ConsecutiveSquarePacking/ConsecutiveSquarePacking-sp-18-046.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 /var/tmp/evaluation-result-4404425-1569012938/watcher-4404425-1569012938 -o /var/tmp/evaluation-result-4404425-1569012938/solver-4404425-1569012938 -C 20160 -W 2520 -M 31000 --bin-var /var/tmp/runsolver-exch-node105-1569003138-317 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 618370248 HOME/instance-4404425-1569012938.xml

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

MD5SUM BENCH= 90f9fedd4c3faeb9a4a1958b76d0db2e
RANDOM SEED=618370248

node105.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.00
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.00
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.00
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.00
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:        26378340 kB
MemAvailable:   31806916 kB
Buffers:           65316 kB
Cached:          5501768 kB
SwapCached:        49012 kB
Active:          2784492 kB
Inactive:        2833324 kB
Active(anon):       3392 kB
Inactive(anon):    92752 kB
Active(file):    2781100 kB
Inactive(file):  2740572 kB
Unevictable:      110936 kB
Mlocked:          110936 kB
SwapTotal:      67108860 kB
SwapFree:       66955780 kB
Dirty:             26188 kB
Writeback:             0 kB
AnonPages:        113712 kB
Mapped:            47988 kB
Shmem:             36668 kB
Slab:             363488 kB
SReclaimable:     335364 kB
SUnreclaim:        28124 kB
KernelStack:        3376 kB
PageTables:         5628 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     498600 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     67584 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      120192 kB
DirectMap2M:    33425408 kB

Free space on /var/tmp at the end= 13152 MiB
End job on node105 at 2019-09-20 22:16:38