Trace number 4249517

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 NameAnswerobjective functionCPU timeWall clock time
R1: choco-solver 4.0.5 (2017-07-05)? 441.368 276.853

General information on the benchmark

NameBinPacking/
BinPacking-tab-fu/BinPacking-tab-fu0500-12.xml
MD5SUMc3cbaa9ce8e56a4446daa69c64b890b7
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark73
Best CPU time to get the best result obtained on this benchmark2520.0801
Satisfiable
(Un)Satisfiability was proved
Number of variables1919
Number of constraints277
Number of domains2
Minimum domain size82
Maximum domain size275
Distribution of domain sizes[{"size":82,"count":1918},{"size":275,"count":1}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":1644},{"degree":4,"count":274}]
Minimum constraint arity7
Maximum constraint arity1918
Distribution of constraint arities[{"arity":7,"count":274},{"arity":275,"count":1},{"arity":1918,"count":2}]
Number of extensional constraints274
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":274},{"type":"lex","count":1},{"type":"count","count":1},{"type":"cardinality","count":1}]
Optimization problemYES
Type of objectivemax VAR

Solver Data

0.00/0.00	c java -server -Xmx10000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4249517-1500694830.xml"  -tl '2400s' -p 8 -x 0
0.00/0.21	c [HOME/instance-4249517-1500694830.xml, -tl, 2400s, -p, 8, -x, 0]
0.00/0.28	c 8 solvers in parallel
0.00/0.37	c parse instance...
401.85/270.36	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
401.85/270.36		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
401.85/270.36		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
401.85/270.36		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1853)
401.85/270.36		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1809)
401.85/270.36		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:313)
401.85/270.36		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:413)
401.85/270.36		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:130)
401.85/270.36		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
401.85/270.36		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
401.85/270.36		at org.xcsp.parser.XCallbacks$$Lambda$70/1025309396.accept(Unknown Source)
401.85/270.36		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
418.55/273.18		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
418.55/273.18		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
418.55/273.18		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
418.55/273.18		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
418.55/273.18		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
418.55/273.18		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
418.55/273.18		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
418.55/273.18		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:114)
418.55/273.18		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:101)
418.55/273.18		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
441.31/276.81	s UNKNOWN
441.31/276.81	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver Copyright (C) 2010-2013 Olivier ROUSSEL

This is runsolver version 3.3.7 (svn: 2553)

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.

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4249517-1500694830/watcher-4249517-1500694830 -o /tmp/evaluation-result-4249517-1500694830/solver-4249517-1500694830 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node104-1500684128-16797 --watchdog 2560 ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 1217765256 HOME/instance-4249517-1500694830.xml 

pid=11365
running on 8 cores: 1,3,5,7,9,11,13,15

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Current StackSize limit: 8192 KiB


[startup+0 s]
/proc/loadavg: 16.11 14.94 14.38 10/271 11368
/proc/meminfo: memFree=28410076/32770624 swapFree=5892/129700
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0

[startup+0.100098 s]
/proc/loadavg: 16.11 14.94 14.38 10/271 11368
/proc/meminfo: memFree=28410076/32770624 swapFree=5892/129700
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.200304 s]
/proc/loadavg: 16.11 14.94 14.38 10/271 11368
/proc/meminfo: memFree=28410076/32770624 swapFree=5892/129700
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.300278 s]
/proc/loadavg: 16.11 14.94 14.38 10/271 11368
/proc/meminfo: memFree=28410076/32770624 swapFree=5892/129700
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+0.700237 s]
/proc/loadavg: 16.11 14.94 14.38 10/271 11368
/proc/meminfo: memFree=28410076/32770624 swapFree=5892/129700
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
Current children cumulated CPU time (s) 0
Current children cumulated vsize (KiB) 9512

[startup+1.50082 s]
/proc/loadavg: 16.11 14.94 14.38 10/292 11389
/proc/meminfo: memFree=28215824/32770624 swapFree=5892/129812
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
[pid=11369] ppid=11368 vsize=13267208 CPUtime=2.73 cores=1,3,5,7,9,11,13,15
/proc/11369/stat : 11369 (java) S 11368 11368 15667 0 -1 1077944320 12759 0 0 0 260 13 0 0 20 0 20 0 4752658 13585620992 51655 33554432000 4194304 4196468 140732764013840 140732763996384 140510979837687 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
/proc/11369/statm: 3316802 51655 3208 1 0 3304035 0
[pid=11369/tid=11370] ppid=11368 vsize=13267208 CPUtime=1.46 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11370/stat : 11370 (java) R 11368 11368 15667 0 -1 4202560 6510 0 0 0 141 5 0 0 20 0 20 0 4752658 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510984076312 140510613751466 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11372] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11372/stat : 11372 (java) S 11368 11368 15667 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510932458512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11373] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11373/stat : 11373 (java) S 11368 11368 15667 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510931405968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11374] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11374/stat : 11374 (java) S 11368 11368 15667 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510930352912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11375] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11375/stat : 11375 (java) S 11368 11368 15667 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510575917968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11376] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11376/stat : 11376 (java) S 11368 11368 15667 0 -1 1077944384 8 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510574864912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11377] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11377/stat : 11377 (java) S 11368 11368 15667 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510573812368 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11378] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11378/stat : 11378 (java) S 11368 11368 15667 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510572759312 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11379] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11379/stat : 11379 (java) S 11368 11368 15667 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510571706768 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11380] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11380/stat : 11380 (java) S 11368 11368 15667 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 20 0 4752661 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510307867376 140510979848834 0 0 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11381] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11381/stat : 11381 (java) S 11368 11368 15667 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 4752662 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510306813600 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11382] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11382/stat : 11382 (java) S 11368 11368 15667 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 20 0 4752662 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510305760496 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11383] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11383/stat : 11383 (java) S 11368 11368 15667 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4752666 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510304709072 140510979856283 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11384] ppid=11368 vsize=13267208 CPUtime=0.27 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11384/stat : 11384 (java) S 11368 11368 15667 0 -1 1077944384 1621 0 0 0 27 0 0 0 20 0 20 0 4752666 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510303656176 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11385] ppid=11368 vsize=13267208 CPUtime=0.26 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11385/stat : 11385 (java) S 11368 11368 15667 0 -1 1077944384 1041 0 0 0 26 0 0 0 20 0 20 0 4752666 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510302603632 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11386] ppid=11368 vsize=13267208 CPUtime=0.24 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11386/stat : 11386 (java) S 11368 11368 15667 0 -1 1077944384 635 0 0 0 24 0 0 0 20 0 20 0 4752666 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510301550576 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11387] ppid=11368 vsize=13267208 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11387/stat : 11387 (java) S 11368 11368 15667 0 -1 1077944384 1487 0 0 0 33 0 0 0 20 0 20 0 4752666 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510300498032 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11388] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11388/stat : 11388 (java) S 11368 11368 15667 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4752667 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510299446240 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11389] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11389/stat : 11389 (java) S 11368 11368 15667 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4752667 13585620992 51655 33554432000 4194304 4196468 140732764013840 140510298393776 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
Current children cumulated CPU time (s) 2.73
Current children cumulated vsize (KiB) 13276720

[startup+3.10081 s]
/proc/loadavg: 16.11 14.94 14.38 11/292 11389
/proc/meminfo: memFree=28214088/32770624 swapFree=5892/129792
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
[pid=11369] ppid=11368 vsize=13267208 CPUtime=4.33 cores=1,3,5,7,9,11,13,15
/proc/11369/stat : 11369 (java) S 11368 11368 15667 0 -1 1077944320 13262 0 0 0 420 13 0 0 20 0 20 0 4752658 13585620992 51768 33554432000 4194304 4196468 140732764013840 140732763996384 140510979837687 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
/proc/11369/statm: 3316802 51768 3210 1 0 3304035 0
[pid=11369/tid=11370] ppid=11368 vsize=13267208 CPUtime=3.06 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11370/stat : 11370 (java) R 11368 11368 15667 0 -1 4202560 6976 0 0 0 301 5 0 0 20 0 20 0 4752658 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510984076896 140510962300660 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11372] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11372/stat : 11372 (java) S 11368 11368 15667 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510932458512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11373] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11373/stat : 11373 (java) S 11368 11368 15667 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510931405968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11374] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11374/stat : 11374 (java) S 11368 11368 15667 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510930352912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11375] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11375/stat : 11375 (java) S 11368 11368 15667 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510575917968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11376] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11376/stat : 11376 (java) S 11368 11368 15667 0 -1 1077944384 8 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510574864912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11377] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11377/stat : 11377 (java) S 11368 11368 15667 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510573812368 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11378] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11378/stat : 11378 (java) S 11368 11368 15667 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510572759312 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11379] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11379/stat : 11379 (java) S 11368 11368 15667 0 -1 1077944384 12 0 0 0 0 0 0 0 20 0 20 0 4752659 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510571706768 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11380] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11380/stat : 11380 (java) S 11368 11368 15667 0 -1 1077944384 84 0 0 0 0 0 0 0 20 0 20 0 4752661 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510307867376 140510979848834 0 0 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11381] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11381/stat : 11381 (java) S 11368 11368 15667 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 4752662 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510306813600 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11382] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11382/stat : 11382 (java) S 11368 11368 15667 0 -1 1077944384 23 0 0 0 0 0 0 0 20 0 20 0 4752662 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510305760496 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11383] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11383/stat : 11383 (java) S 11368 11368 15667 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4752666 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510304709072 140510979856283 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11384] ppid=11368 vsize=13267208 CPUtime=0.27 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11384/stat : 11384 (java) S 11368 11368 15667 0 -1 1077944384 1621 0 0 0 27 0 0 0 20 0 20 0 4752666 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510303656176 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11385] ppid=11368 vsize=13267208 CPUtime=0.26 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11385/stat : 11385 (java) S 11368 11368 15667 0 -1 1077944384 1041 0 0 0 26 0 0 0 20 0 20 0 4752666 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510302603632 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11386] ppid=11368 vsize=13267208 CPUtime=0.24 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11386/stat : 11386 (java) S 11368 11368 15667 0 -1 1077944384 635 0 0 0 24 0 0 0 20 0 20 0 4752666 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510301550576 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11387] ppid=11368 vsize=13267208 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11387/stat : 11387 (java) S 11368 11368 15667 0 -1 1077944384 1496 0 0 0 33 0 0 0 20 0 20 0 4752666 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510300498032 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11388] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11388/stat : 11388 (java) S 11368 11368 15667 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4752667 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510299446240 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11389] ppid=11368 vsize=13267208 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11389/stat : 11389 (java) S 11368 11368 15667 0 -1 1077944384 28 0 0 0 0 0 0 0 20 0 20 0 4752667 13585620992 51768 33554432000 4194304 4196468 140732764013840 140510298393776 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 14 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
Current children cumulated CPU time (s) 4.33
Current children cumulated vsize (KiB) 13276720

[startup+6.30089 s]
/proc/loadavg: 15.54 14.84 14.35 10/292 11389
/proc/meminfo: memFree=28187692/32770624 swapFree=5892/129808
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
[pid=11369] ppid=11368 vsize=13269256 CPUtime=7.98 cores=1,3,5,7,9,11,13,15
/proc/11369/stat : 11369 (java) S 11368 11368 15667 0 -1 1077944320 17908 0 0 0 775 23 0 0 20 0 20 0 4752658 13587718144 58305 33554432000 4194304 4196468 140732764013840 140732763996384 140510979837687 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
/proc/11369/statm: 3317314 58305 3222 1 0 3304547 0
[pid=11369/tid=11370] ppid=11368 vsize=13269256 CPUtime=6.22 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11370/stat : 11370 (java) R 11368 11368 15667 0 -1 4202560 8399 0 0 0 617 5 0 0 20 0 20 0 4752658 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510984072672 140510614381156 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11372] ppid=11368 vsize=13269256 CPUtime=0.02 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11372/stat : 11372 (java) S 11368 11368 15667 0 -1 1077944384 58 0 0 0 1 1 0 0 20 0 20 0 4752659 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510932458512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11373] ppid=11368 vsize=13269256 CPUtime=0.03 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11373/stat : 11373 (java) S 11368 11368 15667 0 -1 1077944384 25 0 0 0 1 2 0 0 20 0 20 0 4752659 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510931405968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11374] ppid=11368 vsize=13269256 CPUtime=0.03 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11374/stat : 11374 (java) S 11368 11368 15667 0 -1 1077944384 37 0 0 0 1 2 0 0 20 0 20 0 4752659 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510930352912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11375] ppid=11368 vsize=13269256 CPUtime=0.02 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11375/stat : 11375 (java) S 11368 11368 15667 0 -1 1077944384 55 0 0 0 1 1 0 0 20 0 20 0 4752659 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510575917968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11376] ppid=11368 vsize=13269256 CPUtime=0.02 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11376/stat : 11376 (java) S 11368 11368 15667 0 -1 1077944384 28 0 0 0 1 1 0 0 20 0 20 0 4752659 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510574864912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11377] ppid=11368 vsize=13269256 CPUtime=0.02 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11377/stat : 11377 (java) S 11368 11368 15667 0 -1 1077944384 22 0 0 0 1 1 0 0 20 0 20 0 4752659 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510573812368 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11378] ppid=11368 vsize=13269256 CPUtime=0.02 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11378/stat : 11378 (java) S 11368 11368 15667 0 -1 1077944384 136 0 0 0 1 1 0 0 20 0 20 0 4752659 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510572759312 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11379] ppid=11368 vsize=13269256 CPUtime=0.02 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11379/stat : 11379 (java) S 11368 11368 15667 0 -1 1077944384 127 0 0 0 1 1 0 0 20 0 20 0 4752659 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510571706768 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11380] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11380/stat : 11380 (java) S 11368 11368 15667 0 -1 1077944384 197 0 0 0 0 0 0 0 20 0 20 0 4752661 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510307867376 140510979848834 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11381] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11381/stat : 11381 (java) S 11368 11368 15667 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 20 0 4752662 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510306813664 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11382] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11382/stat : 11382 (java) S 11368 11368 15667 0 -1 1077944384 46 0 0 0 0 0 0 0 20 0 20 0 4752662 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510305760512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11383] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11383/stat : 11383 (java) S 11368 11368 15667 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4752666 13587718144 58305 33554432000 4194304 4196468 140732764013840 140510304709072 140510979856283 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0

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

/proc/11369/task/11384/stat : 11384 (java) S 11368 11368 15667 0 -1 1077944384 4214 0 0 0 59 1 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510303656176 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11385] ppid=11368 vsize=13269256 CPUtime=0.65 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11385/stat : 11385 (java) S 11368 11368 15667 0 -1 1077944384 4087 0 0 0 64 1 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510302603632 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11386] ppid=11368 vsize=13269256 CPUtime=0.63 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11386/stat : 11386 (java) S 11368 11368 15667 0 -1 1077944384 3703 0 0 0 63 0 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510301550576 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11387] ppid=11368 vsize=13269256 CPUtime=0.58 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11387/stat : 11387 (java) S 11368 11368 15667 0 -1 1077944384 5245 0 0 0 57 1 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510300498032 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11388] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11388/stat : 11388 (java) S 11368 11368 15667 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4752667 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510299446240 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11389] ppid=11368 vsize=13269256 CPUtime=0.15 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11389/stat : 11389 (java) S 11368 11368 15667 0 -1 1077944384 307 0 0 0 9 6 0 0 20 0 20 0 4752667 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510298393776 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 14 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
Current children cumulated CPU time (s) 436.56
Current children cumulated vsize (KiB) 13278768

[startup+276.301 s]
/proc/loadavg: 9.53 11.46 13.00 17/291 11489
/proc/meminfo: memFree=19591612/32770624 swapFree=5892/130188
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
[pid=11369] ppid=11368 vsize=13269256 CPUtime=438.49 cores=1,3,5,7,9,11,13,15
/proc/11369/stat : 11369 (java) S 11368 11368 15667 0 -1 1077944320 135145 0 0 0 39699 4150 0 0 20 0 20 0 4752658 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140732763996384 140510979837687 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
/proc/11369/statm: 3317314 2629654 3257 1 0 3304547 0
[pid=11369/tid=11370] ppid=11368 vsize=13269256 CPUtime=245.07 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11370/stat : 11370 (java) S 11368 11368 15667 0 -1 1077944384 14625 0 0 0 24496 11 0 0 20 0 20 0 4752658 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510984079280 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11372] ppid=11368 vsize=13269256 CPUtime=22.54 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11372/stat : 11372 (java) S 11368 11368 15667 0 -1 1077944384 8595 0 0 0 1762 492 0 0 20 0 20 0 4752659 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510932458512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11373] ppid=11368 vsize=13269256 CPUtime=23.03 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11373/stat : 11373 (java) S 11368 11368 15667 0 -1 1077944384 6469 0 0 0 1765 538 0 0 20 0 20 0 4752659 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510931405968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11374] ppid=11368 vsize=13269256 CPUtime=22.75 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11374/stat : 11374 (java) S 11368 11368 15667 0 -1 1077944384 12921 0 0 0 1763 512 0 0 20 0 20 0 4752659 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510930352912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11375] ppid=11368 vsize=13269256 CPUtime=23.06 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11375/stat : 11375 (java) S 11368 11368 15667 0 -1 1077944384 9233 0 0 0 1792 514 0 0 20 0 20 0 4752659 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510575917968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11376] ppid=11368 vsize=13269256 CPUtime=22.88 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11376/stat : 11376 (java) S 11368 11368 15667 0 -1 1077944384 6578 0 0 0 1787 501 0 0 20 0 20 0 4752659 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510574864912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11377] ppid=11368 vsize=13269256 CPUtime=23 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11377/stat : 11377 (java) S 11368 11368 15667 0 -1 1077944384 8865 0 0 0 1761 539 0 0 20 0 20 0 4752659 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510573812368 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11378] ppid=11368 vsize=13269256 CPUtime=23.03 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11378/stat : 11378 (java) S 11368 11368 15667 0 -1 1077944384 9014 0 0 0 1801 502 0 0 20 0 20 0 4752659 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510572759312 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11379] ppid=11368 vsize=13269256 CPUtime=22.65 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11379/stat : 11379 (java) S 11368 11368 15667 0 -1 1077944384 5750 0 0 0 1745 520 0 0 20 0 20 0 4752659 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510571706768 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11380] ppid=11368 vsize=13269256 CPUtime=7.74 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11380/stat : 11380 (java) R 11368 11368 15667 0 -1 4202560 34139 0 0 0 771 3 0 0 20 0 20 0 4752661 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510307865808 140510958207867 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11381] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11381/stat : 11381 (java) S 11368 11368 15667 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 20 0 4752662 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510306813664 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11382] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11382/stat : 11382 (java) S 11368 11368 15667 0 -1 1077944384 111 0 0 0 0 0 0 0 20 0 20 0 4752662 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510305760512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11383] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11383/stat : 11383 (java) S 11368 11368 15667 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510304709072 140510979856283 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11384] ppid=11368 vsize=13269256 CPUtime=0.6 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11384/stat : 11384 (java) S 11368 11368 15667 0 -1 1077944384 4214 0 0 0 59 1 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510303656176 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11385] ppid=11368 vsize=13269256 CPUtime=0.65 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11385/stat : 11385 (java) S 11368 11368 15667 0 -1 1077944384 4087 0 0 0 64 1 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510302603632 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11386] ppid=11368 vsize=13269256 CPUtime=0.63 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11386/stat : 11386 (java) S 11368 11368 15667 0 -1 1077944384 3703 0 0 0 63 0 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510301550576 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11387] ppid=11368 vsize=13269256 CPUtime=0.58 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11387/stat : 11387 (java) S 11368 11368 15667 0 -1 1077944384 5245 0 0 0 57 1 0 0 20 0 20 0 4752666 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510300498032 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11388] ppid=11368 vsize=13269256 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11388/stat : 11388 (java) S 11368 11368 15667 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 4752667 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510299446240 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11389] ppid=11368 vsize=13269256 CPUtime=0.15 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11389/stat : 11389 (java) S 11368 11368 15667 0 -1 1077944384 307 0 0 0 9 6 0 0 20 0 20 0 4752667 13587718144 2629654 33554432000 4194304 4196468 140732764013840 140510298393776 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 14 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
Current children cumulated CPU time (s) 438.49
Current children cumulated vsize (KiB) 13278768

[startup+276.701 s]
/proc/loadavg: 9.53 11.46 13.00 17/292 11490
/proc/meminfo: memFree=19591612/32770624 swapFree=5892/130192
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
[pid=11369] ppid=11368 vsize=13335820 CPUtime=441.21 cores=1,3,5,7,9,11,13,15
/proc/11369/stat : 11369 (java) S 11368 11368 15667 0 -1 1077944320 135354 0 0 0 39971 4150 0 0 20 0 21 0 4752658 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140732763996384 140510979837687 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
/proc/11369/statm: 3333955 2629657 3257 1 0 3321188 0
[pid=11369/tid=11370] ppid=11368 vsize=13335820 CPUtime=245.07 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11370/stat : 11370 (java) S 11368 11368 15667 0 -1 1077944384 14648 0 0 0 24496 11 0 0 20 0 21 0 4752658 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510984078368 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11372] ppid=11368 vsize=13335820 CPUtime=22.88 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11372/stat : 11372 (java) S 11368 11368 15667 0 -1 1077944384 8722 0 0 0 1796 492 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510932458512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11373] ppid=11368 vsize=13335820 CPUtime=23.36 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11373/stat : 11373 (java) S 11368 11368 15667 0 -1 1077944384 6469 0 0 0 1798 538 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510931405968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11374] ppid=11368 vsize=13335820 CPUtime=23.08 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11374/stat : 11374 (java) S 11368 11368 15667 0 -1 1077944384 12924 0 0 0 1796 512 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510930352912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11375] ppid=11368 vsize=13335820 CPUtime=23.39 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11375/stat : 11375 (java) S 11368 11368 15667 0 -1 1077944384 9236 0 0 0 1825 514 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510575917968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11376] ppid=11368 vsize=13335820 CPUtime=23.22 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11376/stat : 11376 (java) S 11368 11368 15667 0 -1 1077944384 6593 0 0 0 1821 501 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510574864912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11377] ppid=11368 vsize=13335820 CPUtime=23.32 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11377/stat : 11377 (java) S 11368 11368 15667 0 -1 1077944384 8867 0 0 0 1793 539 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510573812368 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11378] ppid=11368 vsize=13335820 CPUtime=23.36 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11378/stat : 11378 (java) S 11368 11368 15667 0 -1 1077944384 9016 0 0 0 1834 502 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510572759312 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11379] ppid=11368 vsize=13335820 CPUtime=22.97 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11379/stat : 11379 (java) S 11368 11368 15667 0 -1 1077944384 5757 0 0 0 1777 520 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510571706768 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11380] ppid=11368 vsize=13335820 CPUtime=7.8 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11380/stat : 11380 (java) R 11368 11368 15667 0 -1 4202560 34140 0 0 0 777 3 0 0 20 0 21 0 4752661 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510307865808 140510964834039 0 0 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11381] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11381/stat : 11381 (java) S 11368 11368 15667 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 21 0 4752662 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510306813664 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11382] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11382/stat : 11382 (java) S 11368 11368 15667 0 -1 1077944384 111 0 0 0 0 0 0 0 20 0 21 0 4752662 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510305760512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11383] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11383/stat : 11383 (java) S 11368 11368 15667 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510304709072 140510979856283 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11384] ppid=11368 vsize=13335820 CPUtime=0.6 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11384/stat : 11384 (java) S 11368 11368 15667 0 -1 1077944384 4214 0 0 0 59 1 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510303656176 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11385] ppid=11368 vsize=13335820 CPUtime=0.65 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11385/stat : 11385 (java) S 11368 11368 15667 0 -1 1077944384 4087 0 0 0 64 1 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510302603632 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11386] ppid=11368 vsize=13335820 CPUtime=0.63 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11386/stat : 11386 (java) S 11368 11368 15667 0 -1 1077944384 3703 0 0 0 63 0 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510301550576 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11387] ppid=11368 vsize=13335820 CPUtime=0.58 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11387/stat : 11387 (java) S 11368 11368 15667 0 -1 1077944384 5245 0 0 0 57 1 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510300498032 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11388] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11388/stat : 11388 (java) S 11368 11368 15667 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4752667 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510299446240 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11389] ppid=11368 vsize=13335820 CPUtime=0.15 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11389/stat : 11389 (java) S 11368 11368 15667 0 -1 1077944384 307 0 0 0 9 6 0 0 20 0 21 0 4752667 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510298393776 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 14 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11490] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11490/stat : 11490 (java) S 11368 11368 15667 0 -1 1077944384 26 0 0 0 0 0 0 0 20 0 21 0 4780289 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510290382400 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
Current children cumulated CPU time (s) 441.21
Current children cumulated vsize (KiB) 13345332

[startup+276.801 s]
/proc/loadavg: 9.53 11.46 13.00 17/292 11490
/proc/meminfo: memFree=19591612/32770624 swapFree=5892/130192
[pid=11368] ppid=11365 vsize=9512 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11368/stat : 11368 (xcsp3-exec) S 11365 11368 15667 0 -1 4202496 518 0 0 0 0 0 0 0 20 0 1 0 4752657 9740288 346 33554432000 4194304 5098028 140731110107552 140731110105656 140665157886588 0 65536 4100 65538 18446744071579417331 0 0 17 11 0 0 0 0 0 7196144 7232144 29392896 140731110114446 140731110114656 140731110114656 140731110117355 0
/proc/11368/statm: 2378 346 289 221 0 87 0
[pid=11369] ppid=11368 vsize=13335820 CPUtime=441.31 cores=1,3,5,7,9,11,13,15
/proc/11369/stat : 11369 (java) S 11368 11368 15667 0 -1 1077944320 135354 0 0 0 39981 4150 0 0 20 0 21 0 4752658 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140732763996384 140510979837687 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
/proc/11369/statm: 3333955 2629657 3257 1 0 3321188 0
[pid=11369/tid=11370] ppid=11368 vsize=13335820 CPUtime=245.07 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11370/stat : 11370 (java) S 11368 11368 15667 0 -1 1077944384 14648 0 0 0 24496 11 0 0 20 0 21 0 4752658 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510984078368 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11372] ppid=11368 vsize=13335820 CPUtime=22.88 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11372/stat : 11372 (java) S 11368 11368 15667 0 -1 1077944384 8722 0 0 0 1796 492 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510932458512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11373] ppid=11368 vsize=13335820 CPUtime=23.36 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11373/stat : 11373 (java) S 11368 11368 15667 0 -1 1077944384 6469 0 0 0 1798 538 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510931405968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11374] ppid=11368 vsize=13335820 CPUtime=23.08 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11374/stat : 11374 (java) S 11368 11368 15667 0 -1 1077944384 12924 0 0 0 1796 512 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510930352912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11375] ppid=11368 vsize=13335820 CPUtime=23.39 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11375/stat : 11375 (java) S 11368 11368 15667 0 -1 1077944384 9236 0 0 0 1825 514 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510575917968 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11376] ppid=11368 vsize=13335820 CPUtime=23.22 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11376/stat : 11376 (java) S 11368 11368 15667 0 -1 1077944384 6593 0 0 0 1821 501 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510574864912 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11377] ppid=11368 vsize=13335820 CPUtime=23.32 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11377/stat : 11377 (java) S 11368 11368 15667 0 -1 1077944384 8867 0 0 0 1793 539 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510573812368 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11378] ppid=11368 vsize=13335820 CPUtime=23.36 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11378/stat : 11378 (java) S 11368 11368 15667 0 -1 1077944384 9016 0 0 0 1834 502 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510572759312 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11379] ppid=11368 vsize=13335820 CPUtime=22.97 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11379/stat : 11379 (java) S 11368 11368 15667 0 -1 1077944384 5757 0 0 0 1777 520 0 0 20 0 21 0 4752659 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510571706768 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11380] ppid=11368 vsize=13335820 CPUtime=7.9 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11380/stat : 11380 (java) R 11368 11368 15667 0 -1 4202560 34140 0 0 0 787 3 0 0 20 0 21 0 4752661 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510307865808 140510958207867 0 0 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11381] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11381/stat : 11381 (java) S 11368 11368 15667 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 21 0 4752662 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510306813664 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11382] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11382/stat : 11382 (java) S 11368 11368 15667 0 -1 1077944384 111 0 0 0 0 0 0 0 20 0 21 0 4752662 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510305760512 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11383] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11383/stat : 11383 (java) S 11368 11368 15667 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510304709072 140510979856283 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11384] ppid=11368 vsize=13335820 CPUtime=0.6 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11384/stat : 11384 (java) S 11368 11368 15667 0 -1 1077944384 4214 0 0 0 59 1 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510303656176 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11385] ppid=11368 vsize=13335820 CPUtime=0.65 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11385/stat : 11385 (java) S 11368 11368 15667 0 -1 1077944384 4087 0 0 0 64 1 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510302603632 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11386] ppid=11368 vsize=13335820 CPUtime=0.63 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11386/stat : 11386 (java) S 11368 11368 15667 0 -1 1077944384 3703 0 0 0 63 0 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510301550576 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11387] ppid=11368 vsize=13335820 CPUtime=0.58 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11387/stat : 11387 (java) S 11368 11368 15667 0 -1 1077944384 5245 0 0 0 57 1 0 0 20 0 21 0 4752666 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510300498032 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11388] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11388/stat : 11388 (java) S 11368 11368 15667 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 4752667 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510299446240 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11389] ppid=11368 vsize=13335820 CPUtime=0.15 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11389/stat : 11389 (java) S 11368 11368 15667 0 -1 1077944384 307 0 0 0 9 6 0 0 20 0 21 0 4752667 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510298393776 140510979848834 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 14 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
[pid=11369/tid=11490] ppid=11368 vsize=13335820 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/11369/task/11490/stat : 11490 (java) S 11368 11368 15667 0 -1 1077944384 26 0 0 0 0 0 0 0 20 0 21 0 4780289 13655879680 2629657 33554432000 4194304 4196468 140732764013840 140510290382400 140510979847893 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 23662592 140732764021948 140732764022124 140732764022124 140732764024783 0
Current children cumulated CPU time (s) 441.31
Current children cumulated vsize (KiB) 13345332

Child status: 1
Real time (s): 276.853
CPU time (s): 441.368
CPU user time (s): 399.82
CPU system time (s): 41.5472
CPU usage (%): 159.423
Max. virtual memory (cumulated for all children) (KiB): 13345332

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 399.82
system time used= 41.5472
maximum resident set size= 10519084
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 135946
page faults= 0
swaps= 0
block input operations= 0
block output operations= 448
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 11874
involuntary context switches= 29340

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.74967 second user time and 3.45176 second system time

The end

Launcher Data

Begin job on node104 at 2017-07-22 05:40:30
IDJOB=4249517
IDBENCH=137017
IDSOLVER=2625
FILE ID=node104/4249517-1500694830
RUNJOBID= node104-1500684128-16797
PBS_JOBID= 20623031
Free space on /tmp= 62004 MiB

SOLVER NAME= choco-solver 4.0.5
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-fu/BinPacking-tab-fu0500-12.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 10000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4249517-1500694830/watcher-4249517-1500694830 -o /tmp/evaluation-result-4249517-1500694830/solver-4249517-1500694830 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node104-1500684128-16797 --watchdog 2560  ./xcsp3-exec -dir HOME -tl 2400 -p 8 -ml 10000 -tdir HOME -seed 1217765256 HOME/instance-4249517-1500694830.xml

TIME LIMIT= 2400 seconds
MEMORY LIMIT= 15500 MiB
NBCORE= 8

MD5SUM BENCH= c3cbaa9ce8e56a4446daa69c64b890b7
RANDOM SEED=1217765256

node104.alineos.net Linux 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017

/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	: 8
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	: 5334.12
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		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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.57
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	: 8
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	: 5334.12
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		: 1867.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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.57
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	: 8
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	: 5334.12
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		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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.57
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	: 8
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	: 5334.12
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		: 1733.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
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.57
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 8
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	: 8
core id		: 0
cpu cores	: 4
apicid		: 1
initial apicid	: 1
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	: 5334.12
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 9
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 0
cpu cores	: 4
apicid		: 17
initial apicid	: 17
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.57
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 10
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	: 8
core id		: 1
cpu cores	: 4
apicid		: 3
initial apicid	: 3
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	: 5334.12
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 11
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 1
cpu cores	: 4
apicid		: 19
initial apicid	: 19
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.57
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 12
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	: 8
core id		: 2
cpu cores	: 4
apicid		: 5
initial apicid	: 5
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	: 5334.12
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 13
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2000.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 2
cpu cores	: 4
apicid		: 21
initial apicid	: 21
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.57
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 14
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	: 8
core id		: 3
cpu cores	: 4
apicid		: 7
initial apicid	: 7
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	: 5334.12
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 15
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 1600.000
cache size	: 8192 KB
physical id	: 1
siblings	: 8
core id		: 3
cpu cores	: 4
apicid		: 23
initial apicid	: 23
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.57
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        28410220 kB
MemAvailable:   28509264 kB
Buffers:          171992 kB
Cached:           190352 kB
SwapCached:          252 kB
Active:          3701140 kB
Inactive:         186072 kB
Active(anon):    3479640 kB
Inactive(anon):    56372 kB
Active(file):     221500 kB
Inactive(file):   129700 kB
Unevictable:        5892 kB
Mlocked:            5892 kB
SwapTotal:      67108860 kB
SwapFree:       67105472 kB
Dirty:             10336 kB
Writeback:             0 kB
AnonPages:       3536172 kB
Mapped:            42708 kB
Shmem:              8772 kB
Slab:             162004 kB
SReclaimable:     127356 kB
SUnreclaim:        34648 kB
KernelStack:        5008 kB
PageTables:        12616 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    4299684 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   3403776 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      132480 kB
DirectMap2M:    33413120 kB

Free space on /tmp at the end= 61996 MiB
End job on node104 at 2017-07-22 05:45:07