Trace number 4406751

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-24 parallel? 1091.1 318.409

General information on the benchmark

NameRoomMate/
RoomMate-int-s1/RoomMate-sr0600-int.xml
MD5SUM944fe5e858b8dc1e5468427caea6b95a
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 benchmark118.465
Satisfiable
(Un)Satisfiability was proved
Number of variables600
Number of constraints718800
Number of domains1
Minimum domain size599
Maximum domain size599
Distribution of domain sizes[{"size":599,"count":600}]
Minimum variable degree2396
Maximum variable degree2396
Distribution of variable degrees[{"degree":2396,"count":600}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":718800}]
Number of extensional constraints0
Number of intensional constraints718800
Distribution of constraint types[{"type":"intension","count":718800}]
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-4406751-1569349538.xml"  -tl '20160s' -p 8
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4406751-1569349538.xml, -tl, 20160s, -p, 8]
0.33/0.22	c 8 solvers in parallel
0.33/0.29	c parse instance...
1090.79/318.13	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
1090.79/318.13		at java.util.Arrays.copyOf(Arrays.java:3181)
1090.79/318.13		at java.util.ArrayList.grow(ArrayList.java:261)
1090.79/318.13		at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:235)
1090.79/318.13		at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:227)
1090.79/318.13		at java.util.ArrayList.add(ArrayList.java:458)
1090.79/318.13		at org.chocosolver.solver.constraints.extension.Tuples.add(Tuples.java:159)
1090.79/318.13		at org.chocosolver.solver.constraints.extension.TuplesFactory.generateTuples(TuplesFactory.java:88)
1090.79/318.13		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
1090.79/318.13		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
1090.79/318.13		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:283)
1090.79/318.13		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:164)
1090.79/318.13		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
1090.79/318.13		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
1090.79/318.13		at org.xcsp.parser.XCallbacks$$Lambda$95/280265505.accept(Unknown Source)
1090.79/318.13		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
1090.79/318.13		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
1090.79/318.13		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
1090.79/318.13		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
1090.79/318.13		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
1090.79/318.13		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
1090.79/318.13		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
1090.79/318.13		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
1090.79/318.13		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
1090.79/318.13		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
1090.79/318.13		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
1090.79/318.13		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
1090.79/318.13	s UNKNOWN
1090.79/318.13	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 (12372 MiB free)
  memory of node 1: 16384 MiB (11479 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /var/tmp/evaluation-result-4406751-1569349538/watcher-4406751-1569349538 -o /var/tmp/evaluation-result-4406751-1569349538/solver-4406751-1569349538 -C 20160 -W 2520 -M 31000 --bin-var /var/tmp/runsolver-exch-node126-1569349500-4304 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 531286946 HOME/instance-4406751-1569349538.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
Current StackSize limit: 8192 KiB

solver pid=4321, runsolver pid=4318

[startup+0.100194 s]*
/proc/loadavg: 8.29 8.41 8.34 2/212 4342
/proc/meminfo: memFree=24408868/32770624 swapFree=66997036/67108860
[pid=4321] ppid=4318 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/4321/stat : 4321 (xcsp3-exec) S 4318 4321 4277 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 511221589 115843072 362 33554432000 4194304 5098028 140726039284544 140726039282648 140037490262652 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 13656064 140726039290706 140726039290965 140726039290965 140726039293894 0
/proc/4321/statm: 28282 362 304 221 0 87 0
[pid=4323] ppid=4321 vsize=28227396 memory=29060 CPUtime=0.12 cores=0-7
/proc/4323/stat : 4323 (java) S 4321 4321 4277 0 -1 1077944320 5740 0 0 0 11 1 0 0 20 0 20 0 511221589 28904853504 7265 33554432000 4194304 4196468 140725238004576 140725237987120 139980403953399 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
/proc/4323/statm: 7056849 7265 3119 1 0 7019032 0
[pid=4323/tid=4324] ppid=4321 vsize=28227396 memory=1398722017469774279 CPUtime=0.09 cores=0-7
/proc/4323/task/4324/stat : 4324 (java) R 4321 4321 4277 0 -1 4202560 3655 0 0 0 8 1 0 0 20 0 20 0 511221589 28904853504 7265 33554432000 4194304 4196468 140725238004576 139980408185328 139980403965334 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4325] ppid=4321 vsize=28227396 memory=4126316290023845779 CPUtime=0 cores=0-7
/proc/4323/task/4325/stat : 4325 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979954969360 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4326] ppid=4321 vsize=28227396 memory=140404037838464 CPUtime=0 cores=0-7
/proc/4323/task/4326/stat : 4326 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979953916816 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4327] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4327/stat : 4327 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979952864272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4328] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4328/stat : 4328 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979951811728 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4329] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4329/stat : 4329 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979950758160 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4330] ppid=4321 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/4323/task/4330/stat : 4330 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979949705616 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4331] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4331/stat : 4331 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979948653072 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4332] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4332/stat : 4332 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979947600528 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4333] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4333/stat : 4333 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221592 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979002374640 139980403964546 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4334] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4334/stat : 4334 (java) S 4321 4321 4277 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 511221592 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979001320864 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4335] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4335/stat : 4335 (java) S 4321 4321 4277 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 511221592 28904853504 7265 33554432000 4194304 4196468 140725238004576 139979000268272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4336] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4336/stat : 4336 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 7265 33554432000 4194304 4196468 140725238004576 139978999216848 139980403971995 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4337] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4337/stat : 4337 (java) S 4321 4321 4277 0 -1 1077944384 305 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 7265 33554432000 4194304 4196468 140725238004576 139978998163440 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4338] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4338/stat : 4338 (java) S 4321 4321 4277 0 -1 1077944384 124 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 7265 33554432000 4194304 4196468 140725238004576 139978997110896 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4339] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4339/stat : 4339 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 7265 33554432000 4194304 4196468 140725238004576 139978996058352 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4340] ppid=4321 vsize=28227396 memory=0 CPUtime=0.02 cores=0-7
/proc/4323/task/4340/stat : 4340 (java) R 4321 4321 4277 0 -1 4202560 342 0 0 0 2 0 0 0 20 0 20 0 511221595 28904853504 7265 33554432000 4194304 4196468 140725238004576 139978995005808 139980403965334 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4341] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4341/stat : 4341 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 7265 33554432000 4194304 4196468 140725238004576 139978993953504 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4342] ppid=4321 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/4323/task/4342/stat : 4342 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 7265 33554432000 4194304 4196468 140725238004576 139978992901040 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 28340524 KiB
Current children cumulated memory: 30508 KiB

[startup+0.210141 s]*
/proc/loadavg: 8.29 8.41 8.34 3/212 4342
/proc/meminfo: memFree=24394884/32770624 swapFree=66997036/67108860
[pid=4321] ppid=4318 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/4321/stat : 4321 (xcsp3-exec) S 4318 4321 4277 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 511221589 115843072 362 33554432000 4194304 5098028 140726039284544 140726039282648 140037490262652 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 13656064 140726039290706 140726039290965 140726039290965 140726039293894 0
/proc/4321/statm: 28282 362 304 221 0 87 0
[pid=4323] ppid=4321 vsize=28227396 memory=40900 CPUtime=0.33 cores=0-7
/proc/4323/stat : 4323 (java) S 4321 4321 4277 0 -1 1077944320 9515 0 0 0 30 3 0 0 20 0 20 0 511221589 28904853504 10225 33554432000 4194304 4196468 140725238004576 140725237987120 139980403953399 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
/proc/4323/statm: 7056849 10225 3289 1 0 7019032 0
[pid=4323/tid=4324] ppid=4321 vsize=28227396 memory=8318255677412212789 CPUtime=0.2 cores=0-7
/proc/4323/task/4324/stat : 4324 (java) R 4321 4321 4277 0 -1 4202560 6666 0 0 0 18 2 0 0 20 0 20 0 511221589 28904853504 10225 33554432000 4194304 4196468 140725238004576 139980408183120 139980388033886 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4325] ppid=4321 vsize=28227396 memory=339 CPUtime=0 cores=0-7
/proc/4323/task/4325/stat : 4325 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979954969360 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4326] ppid=4321 vsize=28227396 memory=140404037849462 CPUtime=0 cores=0-7
/proc/4323/task/4326/stat : 4326 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979953916816 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4327] ppid=4321 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/4323/task/4327/stat : 4327 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979952864272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4328] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4328/stat : 4328 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979951811728 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4329] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4329/stat : 4329 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979950758160 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4330] ppid=4321 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/4323/task/4330/stat : 4330 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979949705616 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4331] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4331/stat : 4331 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979948653072 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4332] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4332/stat : 4332 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979947600528 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4333] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4333/stat : 4333 (java) S 4321 4321 4277 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 511221592 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979002374640 139980403964546 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4334] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4334/stat : 4334 (java) S 4321 4321 4277 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 511221592 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979001320864 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4335] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4335/stat : 4335 (java) S 4321 4321 4277 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 511221592 28904853504 10225 33554432000 4194304 4196468 140725238004576 139979000268272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4336] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4336/stat : 4336 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 10225 33554432000 4194304 4196468 140725238004576 139978999216848 139980403971995 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4337] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4337/stat : 4337 (java) S 4321 4321 4277 0 -1 1077944384 327 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 10225 33554432000 4194304 4196468 140725238004576 139978998163440 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4338] ppid=4321 vsize=28227396 memory=0 CPUtime=0.02 cores=0-7
/proc/4323/task/4338/stat : 4338 (java) S 4321 4321 4277 0 -1 1077944384 318 0 0 0 2 0 0 0 20 0 20 0 511221595 28904853504 10225 33554432000 4194304 4196468 140725238004576 139978997110896 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4339] ppid=4321 vsize=28227396 memory=-1 CPUtime=0.01 cores=0-7
/proc/4323/task/4339/stat : 4339 (java) S 4321 4321 4277 0 -1 1077944384 133 0 0 0 1 0 0 0 20 0 20 0 511221595 28904853504 10225 33554432000 4194304 4196468 140725238004576 139978996058352 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4340] ppid=4321 vsize=28227396 memory=-1 CPUtime=0.07 cores=0-7
/proc/4323/task/4340/stat : 4340 (java) S 4321 4321 4277 0 -1 1077944384 760 0 0 0 7 0 0 0 20 0 20 0 511221595 28904853504 10225 33554432000 4194304 4196468 140725238004576 139978995005808 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4341] ppid=4321 vsize=28227396 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4341/stat : 4341 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 10225 33554432000 4194304 4196468 140725238004576 139978993953504 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4342] ppid=4321 vsize=28227396 memory=-1 CPUtime=0 cores=0-7
/proc/4323/task/4342/stat : 4342 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28904853504 10225 33554432000 4194304 4196468 140725238004576 139978992901040 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 28340524 KiB
Current children cumulated memory: 42348 KiB

[startup+0.309461 s]*
/proc/loadavg: 8.29 8.41 8.34 3/212 4342
/proc/meminfo: memFree=24390092/32770624 swapFree=66997036/67108860
[pid=4321] ppid=4318 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/4321/stat : 4321 (xcsp3-exec) S 4318 4321 4277 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 511221589 115843072 362 33554432000 4194304 5098028 140726039284544 140726039282648 140037490262652 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 13656064 140726039290706 140726039290965 140726039290965 140726039293894 0
/proc/4321/statm: 28282 362 304 221 0 87 0
[pid=4323] ppid=4321 vsize=28231652 memory=49284 CPUtime=0.52 cores=0-7
/proc/4323/stat : 4323 (java) S 4321 4321 4277 0 -1 1077944320 10713 0 0 0 48 4 0 0 20 0 20 0 511221589 28909211648 12321 33554432000 4194304 4196468 140725238004576 140725237987120 139980403953399 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
/proc/4323/statm: 7057913 12321 3338 1 0 7019032 0
[pid=4323/tid=4324] ppid=4321 vsize=28231652 memory=1398722017469774279 CPUtime=0.3 cores=0-7
/proc/4323/task/4324/stat : 4324 (java) R 4321 4321 4277 0 -1 4202560 7733 0 0 0 27 3 0 0 20 0 20 0 511221589 28909211648 12402 33554432000 4194304 4196468 140725238004576 139980408184344 139980388033886 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4325] ppid=4321 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4325/stat : 4325 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979954969360 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4326] ppid=4321 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4326/stat : 4326 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979953916816 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4327] ppid=4321 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4327/stat : 4327 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979952864272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4328] ppid=4321 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4328/stat : 4328 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979951811728 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4329] ppid=4321 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4329/stat : 4329 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221590 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979950758160 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4330] ppid=4321 vsize=28231652 memory=140403890285231 CPUtime=0 cores=0-7
/proc/4323/task/4330/stat : 4330 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979949705616 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4331] ppid=4321 vsize=28231652 memory=140403890287536 CPUtime=0 cores=0-7
/proc/4323/task/4331/stat : 4331 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221590 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979948653072 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4332] ppid=4321 vsize=28231652 memory=140403890289840 CPUtime=0 cores=0-7
/proc/4323/task/4332/stat : 4332 (java) S 4321 4321 4277 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 511221590 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979947600528 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4333] ppid=4321 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4333/stat : 4333 (java) S 4321 4321 4277 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 511221592 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979002374640 139980403964546 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4334] ppid=4321 vsize=28231652 memory=280807780593552 CPUtime=0 cores=0-7
/proc/4323/task/4334/stat : 4334 (java) S 4321 4321 4277 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 511221592 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979001320864 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4335] ppid=4321 vsize=28231652 memory=280807780591248 CPUtime=0 cores=0-7
/proc/4323/task/4335/stat : 4335 (java) S 4321 4321 4277 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 511221592 28909211648 12402 33554432000 4194304 4196468 140725238004576 139979000268272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4336] ppid=4321 vsize=28231652 memory=280807780598160 CPUtime=0 cores=0-7
/proc/4323/task/4336/stat : 4336 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28909211648 12402 33554432000 4194304 4196468 140725238004576 139978999216848 139980403971995 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4337] ppid=4321 vsize=28231652 memory=280807780539440 CPUtime=0.01 cores=0-7
/proc/4323/task/4337/stat : 4337 (java) R 4321 4321 4277 0 -1 4202560 411 0 0 0 1 0 0 0 20 0 20 0 511221595 28909211648 12402 33554432000 4194304 4196468 140725238004576 139978998144552 139980384653696 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4338] ppid=4321 vsize=28231652 memory=280807780611984 CPUtime=0.04 cores=0-7
/proc/4323/task/4338/stat : 4338 (java) S 4321 4321 4277 0 -1 1077944384 328 0 0 0 4 0 0 0 20 0 20 0 511221595 28909211648 12402 33554432000 4194304 4196468 140725238004576 139978997110896 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4339] ppid=4321 vsize=28231652 memory=280807780618896 CPUtime=0.02 cores=0-7
/proc/4323/task/4339/stat : 4339 (java) S 4321 4321 4277 0 -1 1077944384 145 0 0 0 2 0 0 0 20 0 20 0 511221595 28909211648 12402 33554432000 4194304 4196468 140725238004576 139978996058352 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4340] ppid=4321 vsize=28231652 memory=280807780616592 CPUtime=0.12 cores=0-7
/proc/4323/task/4340/stat : 4340 (java) R 4321 4321 4277 0 -1 4202560 837 0 0 0 12 0 0 0 20 0 20 0 511221595 28909211648 12402 33554432000 4194304 4196468 140725238004576 139978995005808 139980396190526 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4341] ppid=4321 vsize=28231652 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4341/stat : 4341 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221595 28909211648 12402 33554432000 4194304 4196468 140725238004576 139978993953504 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4342] ppid=4321 vsize=28231652 memory=-1 CPUtime=0 cores=0-7
/proc/4323/task/4342/stat : 4342 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28909211648 12402 33554432000 4194304 4196468 140725238004576 139978992901040 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 28344780 KiB
Current children cumulated memory: 50732 KiB

[startup+0.714806 s]
/proc/loadavg: 8.29 8.41 8.34 3/212 4342
/proc/meminfo: memFree=24344564/32770624 swapFree=66997036/67108860
[pid=4321] ppid=4318 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/4321/stat : 4321 (xcsp3-exec) S 4318 4321 4277 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 511221589 115843072 362 33554432000 4194304 5098028 140726039284544 140726039282648 140037490262652 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 13656064 140726039290706 140726039290965 140726039290965 140726039293894 0
/proc/4321/statm: 28282 362 304 221 0 87 0
[pid=4323] ppid=4321 vsize=28231652 memory=238256 CPUtime=1.61 cores=0-7
/proc/4323/stat : 4323 (java) S 4321 4321 4277 0 -1 1077944320 13605 0 0 0 141 20 0 0 20 0 20 0 511221589 28909211648 59564 33554432000 4194304 4196468 140725238004576 140725237987120 139980403953399 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
/proc/4323/statm: 7057913 59564 3402 1 0 7019032 0
[pid=4323/tid=4324] ppid=4321 vsize=28231652 memory=0 CPUtime=0.65 cores=0-7
/proc/4323/task/4324/stat : 4324 (java) S 4321 4321 4277 0 -1 1077944384 8083 0 0 0 61 4 0 0 20 0 20 0 511221589 28909211648 59564 33554432000 4194304 4196468 140725238004576 139980408192336 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4325] ppid=4321 vsize=28231652 memory=140403890496368 CPUtime=0.03 cores=0-7
/proc/4323/task/4325/stat : 4325 (java) R 4321 4321 4277 0 -1 4202560 34 0 0 0 1 2 0 0 20 0 20 0 511221590 28909211648 59564 33554432000 4194304 4196468 140725238004576 139979954969360 139980388981246 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4326] ppid=4321 vsize=28231652 memory=0 CPUtime=0.02 cores=0-7
/proc/4323/task/4326/stat : 4326 (java) R 4321 4321 4277 0 -1 4202560 23 0 0 0 1 1 0 0 20 0 20 0 511221590 28909211648 59564 33554432000 4194304 4196468 140725238004576 139979953916816 139980388981273 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4327] ppid=4321 vsize=28231652 memory=772 CPUtime=0.02 cores=0-7
/proc/4323/task/4327/stat : 4327 (java) R 4321 4321 4277 0 -1 4202560 27 0 0 0 1 1 0 0 20 0 20 0 511221590 28909211648 59564 33554432000 4194304 4196468 140725238004576 139979952864472 139980388981282 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0

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

[pid=4321] ppid=4318 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/4321/stat : 4321 (xcsp3-exec) S 4318 4321 4277 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 511221589 115843072 362 33554432000 4194304 5098028 140726039284544 140726039282648 140037490262652 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 13656064 140726039290706 140726039290965 140726039290965 140726039293894 0
/proc/4321/statm: 28282 362 304 221 0 87 0
[pid=4323] ppid=4321 vsize=28233776 memory=23887328 CPUtime=1089.48 cores=0-7
/proc/4323/stat : 4323 (java) S 4321 4321 4277 0 -1 1077944320 2660486 0 0 0 103509 5439 0 0 20 0 20 0 511221589 28911386624 5971832 33554432000 4194304 4196468 140725238004576 140725237987120 139980403953399 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
/proc/4323/statm: 7058444 5971832 3518 1 0 7019544 0
[pid=4323/tid=4324] ppid=4321 vsize=28233776 memory=8112282956445269571 CPUtime=130.76 cores=0-7
/proc/4323/task/4324/stat : 4324 (java) S 4321 4321 4277 0 -1 1077944384 34823 0 0 0 13034 42 0 0 20 0 20 0 511221589 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139980408190512 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4325] ppid=4321 vsize=28233776 memory=928 CPUtime=109.13 cores=0-7
/proc/4323/task/4325/stat : 4325 (java) S 4321 4321 4277 0 -1 1077944384 178129 0 0 0 10283 630 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979954969360 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 33 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4326] ppid=4321 vsize=28233776 memory=1688 CPUtime=109.83 cores=0-7
/proc/4323/task/4326/stat : 4326 (java) S 4321 4321 4277 0 -1 1077944384 167657 0 0 0 10308 675 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979953916816 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 29 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4327] ppid=4321 vsize=28233776 memory=1984 CPUtime=109.94 cores=0-7
/proc/4323/task/4327/stat : 4327 (java) S 4321 4321 4277 0 -1 1077944384 323625 0 0 0 10310 684 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979952864272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 28 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4328] ppid=4321 vsize=28233776 memory=8112282956445269571 CPUtime=109.78 cores=0-7
/proc/4323/task/4328/stat : 4328 (java) S 4321 4321 4277 0 -1 1077944384 303213 0 0 0 10325 653 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979951811728 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 28 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4329] ppid=4321 vsize=28233776 memory=1428 CPUtime=109.73 cores=0-7
/proc/4323/task/4329/stat : 4329 (java) S 4321 4321 4277 0 -1 1077944384 247512 0 0 0 10382 591 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979950758160 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 32 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4330] ppid=4321 vsize=28233776 memory=1060 CPUtime=109.75 cores=0-7
/proc/4323/task/4330/stat : 4330 (java) S 4321 4321 4277 0 -1 1077944384 272216 0 0 0 10286 689 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979949705616 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 25 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4331] ppid=4321 vsize=28233776 memory=740 CPUtime=109.55 cores=0-7
/proc/4323/task/4331/stat : 4331 (java) S 4321 4321 4277 0 -1 1077944384 761489 0 0 0 10262 693 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979948653072 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 35 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4332] ppid=4321 vsize=28233776 memory=0 CPUtime=109.54 cores=0-7
/proc/4323/task/4332/stat : 4332 (java) S 4321 4321 4277 0 -1 1077944384 207327 0 0 0 10244 710 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979947600528 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 25 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4333] ppid=4321 vsize=28233776 memory=0 CPUtime=74.71 cores=0-7
/proc/4323/task/4333/stat : 4333 (java) R 4321 4321 4277 0 -1 4202560 115668 0 0 0 7421 50 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979002373088 139980388949800 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4334] ppid=4321 vsize=28233776 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4334/stat : 4334 (java) S 4321 4321 4277 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979001320928 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4335] ppid=4321 vsize=28233776 memory=0 CPUtime=0 cores=0-7
/proc/4323/task/4335/stat : 4335 (java) S 4321 4321 4277 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979000268288 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4336] ppid=4321 vsize=28233776 memory=1448 CPUtime=0 cores=0-7
/proc/4323/task/4336/stat : 4336 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978999216848 139980403971995 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4337] ppid=4321 vsize=28233776 memory=23887304 CPUtime=1.75 cores=0-7
/proc/4323/task/4337/stat : 4337 (java) S 4321 4321 4277 0 -1 1077944384 10470 0 0 0 173 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978998163488 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4338] ppid=4321 vsize=28233776 memory=3620 CPUtime=1.97 cores=0-7
/proc/4323/task/4338/stat : 4338 (java) S 4321 4321 4277 0 -1 1077944384 14322 0 0 0 194 3 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978997110944 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4339] ppid=4321 vsize=28233776 memory=56500 CPUtime=2.07 cores=0-7
/proc/4323/task/4339/stat : 4339 (java) S 4321 4321 4277 0 -1 1077944384 13246 0 0 0 205 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978996058112 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4340] ppid=4321 vsize=28233776 memory=14008 CPUtime=0.66 cores=0-7
/proc/4323/task/4340/stat : 4340 (java) S 4321 4321 4277 0 -1 1077944384 8686 0 0 0 64 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978995005856 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4341] ppid=4321 vsize=28233776 memory=29444 CPUtime=0 cores=0-7
/proc/4323/task/4341/stat : 4341 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978993953504 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4342] ppid=4321 vsize=28233776 memory=2116 CPUtime=0.13 cores=0-7
/proc/4323/task/4342/stat : 4342 (java) S 4321 4321 4277 0 -1 1077944384 740 0 0 0 6 7 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978992901040 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 2 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
Current children cumulated CPU time: 1089.48 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 23888776 KiB

[startup+317.601 s]
/proc/loadavg: 4.22 4.92 6.76 2/213 4371
/proc/meminfo: memFree=804728/32770624 swapFree=66997036/67108860
[pid=4321] ppid=4318 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/4321/stat : 4321 (xcsp3-exec) S 4318 4321 4277 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 511221589 115843072 362 33554432000 4194304 5098028 140726039284544 140726039282648 140037490262652 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 13656064 140726039290706 140726039290965 140726039290965 140726039293894 0
/proc/4321/statm: 28282 362 304 221 0 87 0
[pid=4323] ppid=4321 vsize=28233776 memory=23887328 CPUtime=1090.28 cores=0-7
/proc/4323/stat : 4323 (java) S 4321 4321 4277 0 -1 1077944320 2660486 0 0 0 103589 5439 0 0 20 0 20 0 511221589 28911386624 5971832 33554432000 4194304 4196468 140725238004576 140725237987120 139980403953399 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
/proc/4323/statm: 7058444 5971832 3518 1 0 7019544 0
[pid=4323/tid=4324] ppid=4321 vsize=28233776 memory=4076 CPUtime=130.76 cores=0-7
/proc/4323/task/4324/stat : 4324 (java) S 4321 4321 4277 0 -1 1077944384 34823 0 0 0 13034 42 0 0 20 0 20 0 511221589 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139980408190512 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4325] ppid=4321 vsize=28233776 memory=2836 CPUtime=109.13 cores=0-7
/proc/4323/task/4325/stat : 4325 (java) S 4321 4321 4277 0 -1 1077944384 178129 0 0 0 10283 630 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979954969360 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 33 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4326] ppid=4321 vsize=28233776 memory=1540 CPUtime=109.83 cores=0-7
/proc/4323/task/4326/stat : 4326 (java) S 4321 4321 4277 0 -1 1077944384 167657 0 0 0 10308 675 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979953916816 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 29 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4327] ppid=4321 vsize=28233776 memory=984 CPUtime=109.94 cores=0-7
/proc/4323/task/4327/stat : 4327 (java) S 4321 4321 4277 0 -1 1077944384 323625 0 0 0 10310 684 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979952864272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 28 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4328] ppid=4321 vsize=28233776 memory=2004 CPUtime=109.78 cores=0-7
/proc/4323/task/4328/stat : 4328 (java) S 4321 4321 4277 0 -1 1077944384 303213 0 0 0 10325 653 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979951811728 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 28 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4329] ppid=4321 vsize=28233776 memory=1428 CPUtime=109.73 cores=0-7
/proc/4323/task/4329/stat : 4329 (java) S 4321 4321 4277 0 -1 1077944384 247512 0 0 0 10382 591 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979950758160 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 32 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4330] ppid=4321 vsize=28233776 memory=1060 CPUtime=109.75 cores=0-7
/proc/4323/task/4330/stat : 4330 (java) S 4321 4321 4277 0 -1 1077944384 272216 0 0 0 10286 689 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979949705616 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 25 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4331] ppid=4321 vsize=28233776 memory=740 CPUtime=109.55 cores=0-7
/proc/4323/task/4331/stat : 4331 (java) S 4321 4321 4277 0 -1 1077944384 761489 0 0 0 10262 693 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979948653072 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 35 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4332] ppid=4321 vsize=28233776 memory=1732 CPUtime=109.54 cores=0-7
/proc/4323/task/4332/stat : 4332 (java) S 4321 4321 4277 0 -1 1077944384 207327 0 0 0 10244 710 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979947600528 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 25 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4333] ppid=4321 vsize=28233776 memory=6128 CPUtime=75.51 cores=0-7
/proc/4323/task/4333/stat : 4333 (java) R 4321 4321 4277 0 -1 4202560 115668 0 0 0 7501 50 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979002373088 139980388949952 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4334] ppid=4321 vsize=28233776 memory=772 CPUtime=0 cores=0-7
/proc/4323/task/4334/stat : 4334 (java) S 4321 4321 4277 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979001320928 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4335] ppid=4321 vsize=28233776 memory=952 CPUtime=0 cores=0-7
/proc/4323/task/4335/stat : 4335 (java) S 4321 4321 4277 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979000268288 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4336] ppid=4321 vsize=28233776 memory=14008 CPUtime=0 cores=0-7
/proc/4323/task/4336/stat : 4336 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978999216848 139980403971995 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4337] ppid=4321 vsize=28233776 memory=928 CPUtime=1.75 cores=0-7
/proc/4323/task/4337/stat : 4337 (java) S 4321 4321 4277 0 -1 1077944384 10470 0 0 0 173 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978998163488 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4338] ppid=4321 vsize=28233776 memory=1688 CPUtime=1.97 cores=0-7
/proc/4323/task/4338/stat : 4338 (java) S 4321 4321 4277 0 -1 1077944384 14322 0 0 0 194 3 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978997110944 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4339] ppid=4321 vsize=28233776 memory=1984 CPUtime=2.07 cores=0-7
/proc/4323/task/4339/stat : 4339 (java) S 4321 4321 4277 0 -1 1077944384 13246 0 0 0 205 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978996058112 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4340] ppid=4321 vsize=28233776 memory=2672 CPUtime=0.66 cores=0-7
/proc/4323/task/4340/stat : 4340 (java) S 4321 4321 4277 0 -1 1077944384 8686 0 0 0 64 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978995005856 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4341] ppid=4321 vsize=28233776 memory=1440 CPUtime=0 cores=0-7
/proc/4323/task/4341/stat : 4341 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978993953504 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4342] ppid=4321 vsize=28233776 memory=29444 CPUtime=0.13 cores=0-7
/proc/4323/task/4342/stat : 4342 (java) S 4321 4321 4277 0 -1 1077944384 740 0 0 0 6 7 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978992901040 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 2 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
Current children cumulated CPU time: 1090.28 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 23888776 KiB

[startup+318.001 s]*
/proc/loadavg: 4.22 4.92 6.76 2/213 4371
/proc/meminfo: memFree=804728/32770624 swapFree=66997036/67108860
[pid=4321] ppid=4318 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/4321/stat : 4321 (xcsp3-exec) S 4318 4321 4277 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 511221589 115843072 362 33554432000 4194304 5098028 140726039284544 140726039282648 140037490262652 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 13656064 140726039290706 140726039290965 140726039290965 140726039293894 0
/proc/4321/statm: 28282 362 304 221 0 87 0
[pid=4323] ppid=4321 vsize=28233776 memory=23887328 CPUtime=1090.68 cores=0-7
/proc/4323/stat : 4323 (java) S 4321 4321 4277 0 -1 1077944320 2661349 0 0 0 103629 5439 0 0 20 0 20 0 511221589 28911386624 5971832 33554432000 4194304 4196468 140725238004576 140725237987120 139980403953399 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
/proc/4323/statm: 7058444 5971832 3518 1 0 7019544 0
[pid=4323/tid=4324] ppid=4321 vsize=28233776 memory=23887304 CPUtime=130.76 cores=0-7
/proc/4323/task/4324/stat : 4324 (java) S 4321 4321 4277 0 -1 1077944384 34823 0 0 0 13034 42 0 0 20 0 20 0 511221589 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139980408190512 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4325] ppid=4321 vsize=28233776 memory=4126316290023845779 CPUtime=109.13 cores=0-7
/proc/4323/task/4325/stat : 4325 (java) S 4321 4321 4277 0 -1 1077944384 178129 0 0 0 10283 630 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979954969360 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 33 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4326] ppid=4321 vsize=28233776 memory=23887328 CPUtime=109.83 cores=0-7
/proc/4323/task/4326/stat : 4326 (java) S 4321 4321 4277 0 -1 1077944384 167657 0 0 0 10308 675 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979953916816 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 29 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4327] ppid=4321 vsize=28233776 memory=784 CPUtime=109.94 cores=0-7
/proc/4323/task/4327/stat : 4327 (java) S 4321 4321 4277 0 -1 1077944384 323625 0 0 0 10310 684 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979952864272 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 28 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4328] ppid=4321 vsize=28233776 memory=1764 CPUtime=109.78 cores=0-7
/proc/4323/task/4328/stat : 4328 (java) S 4321 4321 4277 0 -1 1077944384 303213 0 0 0 10325 653 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979951811728 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 28 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4329] ppid=4321 vsize=28233776 memory=111628 CPUtime=109.73 cores=0-7
/proc/4323/task/4329/stat : 4329 (java) S 4321 4321 4277 0 -1 1077944384 247512 0 0 0 10382 591 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979950758160 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 32 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4330] ppid=4321 vsize=28233776 memory=804 CPUtime=109.75 cores=0-7
/proc/4323/task/4330/stat : 4330 (java) S 4321 4321 4277 0 -1 1077944384 272216 0 0 0 10286 689 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979949705616 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 25 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4331] ppid=4321 vsize=28233776 memory=4096 CPUtime=109.55 cores=0-7
/proc/4323/task/4331/stat : 4331 (java) S 4321 4321 4277 0 -1 1077944384 761489 0 0 0 10262 693 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979948653072 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 35 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4332] ppid=4321 vsize=28233776 memory=1804 CPUtime=109.54 cores=0-7
/proc/4323/task/4332/stat : 4332 (java) S 4321 4321 4277 0 -1 1077944384 207327 0 0 0 10244 710 0 0 20 0 20 0 511221590 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979947600528 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 25 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4333] ppid=4321 vsize=28233776 memory=920 CPUtime=75.92 cores=0-7
/proc/4323/task/4333/stat : 4333 (java) R 4321 4321 4277 0 -1 4202560 116534 0 0 0 7542 50 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979002373088 139980388949766 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4334] ppid=4321 vsize=28233776 memory=3908 CPUtime=0 cores=0-7
/proc/4323/task/4334/stat : 4334 (java) S 4321 4321 4277 0 -1 1077944384 55 0 0 0 0 0 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979001320928 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4335] ppid=4321 vsize=28233776 memory=1412 CPUtime=0 cores=0-7
/proc/4323/task/4335/stat : 4335 (java) S 4321 4321 4277 0 -1 1077944384 67 0 0 0 0 0 0 0 20 0 20 0 511221592 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139979000268288 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4336] ppid=4321 vsize=28233776 memory=22 CPUtime=0 cores=0-7
/proc/4323/task/4336/stat : 4336 (java) S 4321 4321 4277 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978999216848 139980403971995 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4337] ppid=4321 vsize=28233776 memory=288230621803970871 CPUtime=1.75 cores=0-7
/proc/4323/task/4337/stat : 4337 (java) S 4321 4321 4277 0 -1 1077944384 10470 0 0 0 173 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978998163488 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4338] ppid=4321 vsize=28233776 memory=16099282004477816 CPUtime=1.97 cores=0-7
/proc/4323/task/4338/stat : 4338 (java) S 4321 4321 4277 0 -1 1077944384 14322 0 0 0 194 3 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978997110944 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4339] ppid=4321 vsize=28233776 memory=9945 CPUtime=2.07 cores=0-7
/proc/4323/task/4339/stat : 4339 (java) S 4321 4321 4277 0 -1 1077944384 13246 0 0 0 205 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978996058112 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4340] ppid=4321 vsize=28233776 memory=9924 CPUtime=0.66 cores=0-7
/proc/4323/task/4340/stat : 4340 (java) S 4321 4321 4277 0 -1 1077944384 8686 0 0 0 64 2 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978995005856 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4341] ppid=4321 vsize=28233776 memory=9924 CPUtime=0 cores=0-7
/proc/4323/task/4341/stat : 4341 (java) S 4321 4321 4277 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978993953504 139980403963605 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
[pid=4323/tid=4342] ppid=4321 vsize=28233776 memory=9928 CPUtime=0.13 cores=0-7
/proc/4323/task/4342/stat : 4342 (java) S 4321 4321 4277 0 -1 1077944384 740 0 0 0 6 7 0 0 20 0 20 0 511221595 28911386624 5971832 33554432000 4194304 4196468 140725238004576 139978992901040 139980403964546 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 2 0 0 6293624 6294260 25231360 140725238010838 140725238011014 140725238011014 140725238013903 0
Current children cumulated CPU time: 1090.68 s
Current children cumulated vsize: 28346904 KiB
Current children cumulated memory: 23888776 KiB

[startup+318.4 s]
/proc/loadavg: 4.22 4.92 6.76 2/213 4371
/proc/meminfo: memFree=804728/32770624 swapFree=66997036/67108860
[pid=4321] ppid=4318 vsize=113128 memory=1448 CPUtime=0 cores=0-7
/proc/4321/stat : 4321 (xcsp3-exec) S 4318 4321 4277 0 -1 4202496 544 0 0 0 0 0 0 0 20 0 1 0 511221589 115843072 362 33554432000 4194304 5098028 140726039284544 140726039282648 140037490262652 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 13656064 140726039290706 140726039290965 140726039290965 140726039293894 0
/proc/4321/statm: 28282 362 304 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1448 KiB

Child status: 1
Real time (s): 318.409
CPU time (s): 1091.1
CPU user time (s): 1036.42
CPU system time (s): 54.6767
CPU usage (%): 342.673
Max. virtual memory (cumulated for all children) (KiB): 28346904
Max. memory (cumulated for all children) (KiB): 23888776

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1036.42
system time used= 54.6767
maximum resident set size= 23887612
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 2678069
page faults= 0
swaps= 0
block input operations= 0
block output operations= 608
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 25332
involuntary context switches= 14651


# summary of solver processes directly reported to runsolver:
#   pid: 4321
#   total CPU time (s): 1091.1
#   total CPU user time (s): 1036.42
#   total CPU system time (s): 54.6767

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.09148 second user time and 3.34513 second system time

The end

Launcher Data

Begin job on node126 at 2019-09-24 20:25:00
IDJOB=4406751
IDBENCH=126913
IDSOLVER=2871
FILE ID=node126/4406751-1569349538
RUNJOBID= node126-1569349500-4304
PBS_JOBID= 21705090
Free space on /var/tmp= 13480 MiB

SOLVER NAME= choco-solver 2019-09-24 parallel
BENCH NAME= XCSP17/RoomMate/RoomMate-int-s1/RoomMate-sr0600-int.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-4406751-1569349538/watcher-4406751-1569349538 -o /var/tmp/evaluation-result-4406751-1569349538/solver-4406751-1569349538 -C 20160 -W 2520 -M 31000 --bin-var /var/tmp/runsolver-exch-node126-1569349500-4304 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 531286946 HOME/instance-4406751-1569349538.xml

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

MD5SUM BENCH= 944fe5e858b8dc1e5468427caea6b95a
RANDOM SEED=531286946

node126.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.45
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.56
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.45
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.56
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.45
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.56
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.45
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.56
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        24424348 kB
MemAvailable:   31844752 kB
Buffers:           95956 kB
Cached:          7554708 kB
SwapCached:         7628 kB
Active:          3827328 kB
Inactive:        3833928 kB
Active(anon):       4100 kB
Inactive(anon):    56900 kB
Active(file):    3823228 kB
Inactive(file):  3777028 kB
Unevictable:      109440 kB
Mlocked:          109440 kB
SwapTotal:      67108860 kB
SwapFree:       66997036 kB
Dirty:             55624 kB
Writeback:             0 kB
AnonPages:        113284 kB
Mapped:            53972 kB
Shmem:             41616 kB
Slab:             276988 kB
SReclaimable:     248608 kB
SUnreclaim:        28380 kB
KernelStack:        3312 kB
PageTables:         5312 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     515136 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:      130432 kB
DirectMap2M:    33415168 kB

Free space on /var/tmp at the end= 13456 MiB
End job on node126 at 2019-09-24 20:30:19