Trace number 4406555

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
choco-solver 2019-09-24? 122.009 47.2182

General information on the benchmark

NameBinPacking/BinPacking-tab-sw120/
BinPacking-tab-sw120-75.xml
MD5SUM9cdf82428becd6b5ad716031980a59d2
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark0
Best CPU time to get the best result obtained on this benchmark2400.05
Satisfiable
(Un)Satisfiability was proved
Number of variables133
Number of constraints25
Number of domains2
Minimum domain size23
Maximum domain size47
Distribution of domain sizes[{"size":23,"count":1},{"size":47,"count":132}]
Minimum variable degree2
Maximum variable degree4
Distribution of variable degrees[{"degree":2,"count":1},{"degree":3,"count":110},{"degree":4,"count":22}]
Minimum constraint arity6
Maximum constraint arity132
Distribution of constraint arities[{"arity":6,"count":22},{"arity":23,"count":1},{"arity":132,"count":2}]
Number of extensional constraints22
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":22},{"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 -Xmx12000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4406555-1569403433.xml"  -tl '2400s' -p 1
0.13/0.19	c Choco e747e1e
0.13/0.20	c [HOME/instance-4406555-1569403433.xml, -tl, 2400s, -p, 1]
0.34/0.24	c simple solver
0.34/0.31	c parse instance...
121.88/47.15	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
121.88/47.15		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:101)
121.88/47.15		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
121.88/47.15		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2108)
121.88/47.15		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:2055)
121.88/47.15		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrExtension(XCSPParser.java:317)
121.88/47.15		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
121.88/47.15		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
121.88/47.15		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:527)
121.88/47.15		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:510)
121.88/47.15		at org.xcsp.parser.XCallbacks$$Lambda$110/961419791.accept(Unknown Source)
121.88/47.15		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
121.88/47.15		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
121.88/47.15		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:507)
121.88/47.15		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1416)
121.88/47.15		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:422)
121.88/47.15		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:407)
121.88/47.15		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:297)
121.88/47.15		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:320)
121.88/47.15		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
121.88/47.15		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:111)
121.88/47.15		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
121.88/47.15		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:22)
121.88/47.15	s UNKNOWN
121.88/47.15	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: 16375 MiB (15228 MiB free)
  memory of node 1: 16384 MiB (9503 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4406555-1569403433/watcher-4406555-1569403433 -o /tmp/evaluation-result-4406555-1569403433/solver-4406555-1569403433 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node116-1569396628-22040 --watchdog 2560 xcsp3-exec -dir HOME -tl 2400 -p 1 -ml 12000 -tdir HOME -seed 13758179 HOME/instance-4406555-1569403433.xml 

running on 4 cores: 4-7

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
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
solver pid=23914, runsolver pid=23911
Current StackSize limit: 8192 KiB


[startup+0.106647 s]*
/proc/loadavg: 1.55 1.48 1.59 3/229 23930
/proc/meminfo: memFree=25309252/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/statm: 28282 362 304 221 0 87 0
[pid=23916] ppid=23914 vsize=15144776 memory=29368 CPUtime=0.13 cores=4-7
/proc/23916/stat : 23916 (java) S 23914 23914 22008 0 -1 1077944320 5808 0 0 0 12 1 0 0 20 0 15 0 516284995 15508250624 7342 33554432000 4194304 4196468 140729118228944 140729118211488 139773080141559 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
/proc/23916/statm: 3786194 7342 3118 1 0 3748377 0
[pid=23916/tid=23917] ppid=23914 vsize=15144776 memory=8036256212623698507 CPUtime=0.09 cores=4-7
/proc/23916/task/23917/stat : 23917 (java) R 23914 23914 22008 0 -1 4202560 3738 0 0 0 9 0 0 0 20 0 15 0 516284996 15508250624 7342 33554432000 4194304 4196468 140729118228944 139773084376096 139773066209642 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23918] ppid=23914 vsize=15144776 memory=-3689451258167578675 CPUtime=0 cores=4-7
/proc/23916/task/23918/stat : 23918 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15508250624 7342 33554432000 4194304 4196468 140729118228944 139773008181904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23919] ppid=23914 vsize=15144776 memory=140598112855680 CPUtime=0 cores=4-7
/proc/23916/task/23919/stat : 23919 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15508250624 7342 33554432000 4194304 4196468 140729118228944 139773007129104 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23920] ppid=23914 vsize=15144776 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23920/stat : 23920 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15508250624 7342 33554432000 4194304 4196468 140729118228944 139773006076304 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23921] ppid=23914 vsize=15144776 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23921/stat : 23921 (java) S 23914 23914 22008 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 516284996 15508250624 7342 33554432000 4194304 4196468 140729118228944 139773005023504 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23922] ppid=23914 vsize=15144776 memory=140598112855680 CPUtime=0 cores=4-7
/proc/23916/task/23922/stat : 23922 (java) S 23914 23914 22008 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 516284998 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772548348784 139773080152706 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23923] ppid=23914 vsize=15144776 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23923/stat : 23923 (java) S 23914 23914 22008 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 516284998 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772547294752 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23924] ppid=23914 vsize=15144776 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23924/stat : 23924 (java) S 23914 23914 22008 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 516284999 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772546241904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23925] ppid=23914 vsize=15144776 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23925/stat : 23925 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285001 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772545190224 139773080160155 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23926] ppid=23914 vsize=15144776 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23926/stat : 23926 (java) S 23914 23914 22008 0 -1 1077944384 296 0 0 0 0 0 0 0 20 0 15 0 516285001 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772544137584 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23927] ppid=23914 vsize=15144776 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23927/stat : 23927 (java) S 23914 23914 22008 0 -1 1077944384 123 0 0 0 0 0 0 0 20 0 15 0 516285001 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772543084784 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23928] ppid=23914 vsize=15144776 memory=140598112855680 CPUtime=0.02 cores=4-7
/proc/23916/task/23928/stat : 23928 (java) R 23914 23914 22008 0 -1 4202560 349 0 0 0 2 0 0 0 20 0 15 0 516285001 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772542031984 139773072378686 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23929] ppid=23914 vsize=15144776 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23929/stat : 23929 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285002 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772540979424 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23930] ppid=23914 vsize=15144776 memory=140598112855680 CPUtime=0 cores=4-7
/proc/23916/task/23930/stat : 23930 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516285002 15508250624 7342 33554432000 4194304 4196468 140729118228944 139772539927728 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 30816 KiB

[startup+0.21146 s]*
/proc/loadavg: 1.55 1.48 1.59 3/229 23930
/proc/meminfo: memFree=25296384/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/statm: 28282 362 304 221 0 87 0
[pid=23916] ppid=23914 vsize=15144776 memory=40908 CPUtime=0.34 cores=4-7
/proc/23916/stat : 23916 (java) S 23914 23914 22008 0 -1 1077944320 9390 0 0 0 31 3 0 0 20 0 15 0 516284995 15508250624 10227 33554432000 4194304 4196468 140729118228944 140729118211488 139773080141559 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
/proc/23916/statm: 3786194 10227 3301 1 0 3748377 0
[pid=23916/tid=23917] ppid=23914 vsize=15144776 memory=7883960649037381690 CPUtime=0.2 cores=4-7
/proc/23916/task/23917/stat : 23917 (java) R 23914 23914 22008 0 -1 4202560 6587 0 0 0 18 2 0 0 20 0 15 0 516284996 15508250624 10227 33554432000 4194304 4196468 140729118228944 139773084375680 139773080163485 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23918] ppid=23914 vsize=15144776 memory=9642 CPUtime=0 cores=4-7
/proc/23916/task/23918/stat : 23918 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15508250624 10227 33554432000 4194304 4196468 140729118228944 139773008181904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23919] ppid=23914 vsize=15144776 memory=3831685 CPUtime=0 cores=4-7
/proc/23916/task/23919/stat : 23919 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15508250624 10227 33554432000 4194304 4196468 140729118228944 139773007129104 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23920] ppid=23914 vsize=15144776 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23920/stat : 23920 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15508250624 10227 33554432000 4194304 4196468 140729118228944 139773006076304 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23921] ppid=23914 vsize=15144776 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23921/stat : 23921 (java) S 23914 23914 22008 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 516284996 15508250624 10227 33554432000 4194304 4196468 140729118228944 139773005023504 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23922] ppid=23914 vsize=15144776 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23922/stat : 23922 (java) S 23914 23914 22008 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 516284998 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772548348784 139773080152706 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23923] ppid=23914 vsize=15144776 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23923/stat : 23923 (java) S 23914 23914 22008 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 516284998 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772547294752 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23924] ppid=23914 vsize=15144776 memory=140598112855680 CPUtime=0 cores=4-7
/proc/23916/task/23924/stat : 23924 (java) S 23914 23914 22008 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 516284999 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772546241904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23925] ppid=23914 vsize=15144776 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23925/stat : 23925 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285001 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772545190224 139773080160155 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23926] ppid=23914 vsize=15144776 memory=0 CPUtime=0.03 cores=4-7
/proc/23916/task/23926/stat : 23926 (java) S 23914 23914 22008 0 -1 1077944384 395 0 0 0 3 0 0 0 20 0 15 0 516285001 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772544137584 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23927] ppid=23914 vsize=15144776 memory=-1 CPUtime=0.02 cores=4-7
/proc/23916/task/23927/stat : 23927 (java) S 23914 23914 22008 0 -1 1077944384 362 0 0 0 2 0 0 0 20 0 15 0 516285001 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772543084784 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23928] ppid=23914 vsize=15144776 memory=0 CPUtime=0.07 cores=4-7
/proc/23916/task/23928/stat : 23928 (java) R 23914 23914 22008 0 -1 4202560 745 0 0 0 7 0 0 0 20 0 15 0 516285001 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772542031984 139773058801245 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23929] ppid=23914 vsize=15144776 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23929/stat : 23929 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285002 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772540979424 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23930] ppid=23914 vsize=15144776 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23930/stat : 23930 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516285002 15508250624 10227 33554432000 4194304 4196468 140729118228944 139772539927728 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 15257904 KiB
Current children cumulated memory: 42356 KiB

[startup+0.311577 s]*
/proc/loadavg: 1.55 1.48 1.59 3/229 23930
/proc/meminfo: memFree=25292020/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/statm: 28282 362 304 221 0 87 0
[pid=23916] ppid=23914 vsize=15149032 memory=46860 CPUtime=0.52 cores=4-7
/proc/23916/stat : 23916 (java) S 23914 23914 22008 0 -1 1077944320 10528 0 0 0 49 3 0 0 20 0 15 0 516284995 15512608768 11715 33554432000 4194304 4196468 140729118228944 140729118211488 139773080141559 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
/proc/23916/statm: 3787258 11715 3322 1 0 3748377 0
[pid=23916/tid=23917] ppid=23914 vsize=15149032 memory=8389772277269004345 CPUtime=0.29 cores=4-7
/proc/23916/task/23917/stat : 23917 (java) R 23914 23914 22008 0 -1 4202560 7597 0 0 0 27 2 0 0 20 0 15 0 516284996 15512608768 11715 33554432000 4194304 4196468 140729118228944 139773084365184 139773064222046 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23918] ppid=23914 vsize=15149032 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23918/stat : 23918 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15512608768 11715 33554432000 4194304 4196468 140729118228944 139773008181904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23919] ppid=23914 vsize=15149032 memory=3835949 CPUtime=0 cores=4-7
/proc/23916/task/23919/stat : 23919 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15512608768 11715 33554432000 4194304 4196468 140729118228944 139773007129104 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23920] ppid=23914 vsize=15149032 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23920/stat : 23920 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516284996 15512608768 11715 33554432000 4194304 4196468 140729118228944 139773006076304 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23921] ppid=23914 vsize=15149032 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23921/stat : 23921 (java) S 23914 23914 22008 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 516284996 15512608768 11715 33554432000 4194304 4196468 140729118228944 139773005023504 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23922] ppid=23914 vsize=15149032 memory=140598112855680 CPUtime=0 cores=4-7
/proc/23916/task/23922/stat : 23922 (java) S 23914 23914 22008 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 516284998 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772548348784 139773080152706 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23923] ppid=23914 vsize=15149032 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23923/stat : 23923 (java) S 23914 23914 22008 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 516284998 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772547294752 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23924] ppid=23914 vsize=15149032 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23924/stat : 23924 (java) S 23914 23914 22008 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 516284999 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772546241904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23925] ppid=23914 vsize=15149032 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23925/stat : 23925 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285001 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772545190224 139773080160155 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23926] ppid=23914 vsize=15149032 memory=0 CPUtime=0.04 cores=4-7
/proc/23916/task/23926/stat : 23926 (java) S 23914 23914 22008 0 -1 1077944384 404 0 0 0 4 0 0 0 20 0 15 0 516285001 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772544137584 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23927] ppid=23914 vsize=15149032 memory=-1 CPUtime=0.03 cores=4-7
/proc/23916/task/23927/stat : 23927 (java) S 23914 23914 22008 0 -1 1077944384 385 0 0 0 3 0 0 0 20 0 15 0 516285001 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772543084784 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23928] ppid=23914 vsize=15149032 memory=140598112855680 CPUtime=0.12 cores=4-7
/proc/23916/task/23928/stat : 23928 (java) S 23914 23914 22008 0 -1 1077944384 839 0 0 0 12 0 0 0 20 0 15 0 516285001 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772542031984 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23929] ppid=23914 vsize=15149032 memory=-1 CPUtime=0 cores=4-7
/proc/23916/task/23929/stat : 23929 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285002 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772540979424 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23930] ppid=23914 vsize=15149032 memory=140598112855680 CPUtime=0 cores=4-7
/proc/23916/task/23930/stat : 23930 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516285002 15512608768 11715 33554432000 4194304 4196468 140729118228944 139772539927728 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
Current children cumulated CPU time: 0.52 s
Current children cumulated vsize: 15262160 KiB
Current children cumulated memory: 48308 KiB

[startup+0.701753 s]
/proc/loadavg: 1.55 1.48 1.59 4/229 23930
/proc/meminfo: memFree=25203140/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/statm: 28282 362 304 221 0 87 0
[pid=23916] ppid=23914 vsize=15149032 memory=287756 CPUtime=1.25 cores=4-7
/proc/23916/stat : 23916 (java) S 23914 23914 22008 0 -1 1077944320 11757 0 0 0 103 22 0 0 20 0 15 0 516284995 15512608768 71939 33554432000 4194304 4196468 140729118228944 140729118211488 139773080141559 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
/proc/23916/statm: 3787258 71939 3401 1 0 3748377 0
[pid=23916/tid=23917] ppid=23914 vsize=15149032 memory=2120 CPUtime=0.61 cores=4-7
/proc/23916/task/23917/stat : 23917 (java) R 23914 23914 22008 0 -1 4202560 8086 0 0 0 55 6 0 0 20 0 15 0 516284996 15512608768 71939 33554432000 4194304 4196468 140729118228944 139773084373888 139773080163485 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23918] ppid=23914 vsize=15149032 memory=496 CPUtime=0.06 cores=4-7
/proc/23916/task/23918/stat : 23918 (java) S 23914 23914 22008 0 -1 1077944384 64 0 0 0 3 3 0 0 20 0 15 0 516284996 15512608768 71939 33554432000 4194304 4196468 140729118228944 139773008181904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23919] ppid=23914 vsize=15149032 memory=1556 CPUtime=0.05 cores=4-7
/proc/23916/task/23919/stat : 23919 (java) S 23914 23914 22008 0 -1 1077944384 64 0 0 0 2 3 0 0 20 0 15 0 516284996 15512608768 71939 33554432000 4194304 4196468 140729118228944 139773007129104 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23920] ppid=23914 vsize=15149032 memory=928 CPUtime=0.06 cores=4-7
/proc/23916/task/23920/stat : 23920 (java) S 23914 23914 22008 0 -1 1077944384 59 0 0 0 3 3 0 0 20 0 15 0 516284996 15512608768 71939 33554432000 4194304 4196468 140729118228944 139773006076304 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23921] ppid=23914 vsize=15149032 memory=1620 CPUtime=0.06 cores=4-7
/proc/23916/task/23921/stat : 23921 (java) S 23914 23914 22008 0 -1 1077944384 69 0 0 0 3 3 0 0 20 0 15 0 516284996 15512608768 71939 33554432000 4194304 4196468 140729118228944 139773005023504 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23922] ppid=23914 vsize=15149032 memory=780 CPUtime=0 cores=4-7
/proc/23916/task/23922/stat : 23922 (java) S 23914 23914 22008 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 516284998 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772548348784 139773080152706 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23923] ppid=23914 vsize=15149032 memory=1444 CPUtime=0 cores=4-7
/proc/23916/task/23923/stat : 23923 (java) S 23914 23914 22008 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 516284998 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772547294752 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23924] ppid=23914 vsize=15149032 memory=1984 CPUtime=0 cores=4-7
/proc/23916/task/23924/stat : 23924 (java) S 23914 23914 22008 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 15 0 516284999 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772546241904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23925] ppid=23914 vsize=15149032 memory=7086240636229996643 CPUtime=0 cores=4-7
/proc/23916/task/23925/stat : 23925 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285001 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772545190224 139773080160155 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23926] ppid=23914 vsize=15149032 memory=7453282923444726100 CPUtime=0.08 cores=4-7
/proc/23916/task/23926/stat : 23926 (java) S 23914 23914 22008 0 -1 1077944384 564 0 0 0 8 0 0 0 20 0 15 0 516285001 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772544137584 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23927] ppid=23914 vsize=15149032 memory=7007707949394126417 CPUtime=0.08 cores=4-7
/proc/23916/task/23927/stat : 23927 (java) S 23914 23914 22008 0 -1 1077944384 499 0 0 0 8 0 0 0 20 0 15 0 516285001 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772543084784 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23928] ppid=23914 vsize=15149032 memory=8514726395714826909 CPUtime=0.18 cores=4-7
/proc/23916/task/23928/stat : 23928 (java) S 23914 23914 22008 0 -1 1077944384 971 0 0 0 18 0 0 0 20 0 15 0 516285001 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772542031984 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23929] ppid=23914 vsize=15149032 memory=7450754132331424871 CPUtime=0 cores=4-7
/proc/23916/task/23929/stat : 23929 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285002 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772540979424 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23930] ppid=23914 vsize=15149032 memory=0 CPUtime=0 cores=4-7
/proc/23916/task/23930/stat : 23930 (java) S 23914 23914 22008 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 516285002 15512608768 71939 33554432000 4194304 4196468 140729118228944 139772539927728 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
Current children cumulated CPU time: 1.25 s
Current children cumulated vsize: 15262160 KiB
Current children cumulated memory: 289204 KiB

[startup+1.50093 s]
/proc/loadavg: 1.55 1.48 1.59 3/229 23930
/proc/meminfo: memFree=24327020/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/statm: 28282 362 304 221 0 87 0

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

/proc/23916/task/23919/stat : 23919 (java) R 23914 23914 22008 0 -1 4202560 39764 0 0 0 1648 336 0 0 20 0 15 0 516284996 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139773007129304 139773065126579 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23920] ppid=23914 vsize=15151156 memory=6791534058613427641 CPUtime=19.88 cores=4-7
/proc/23916/task/23920/stat : 23920 (java) R 23914 23914 22008 0 -1 4202560 36082 0 0 0 1689 299 0 0 20 0 15 0 516284996 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139773006076192 139773065092268 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23921] ppid=23914 vsize=15151156 memory=780 CPUtime=19.92 cores=4-7
/proc/23916/task/23921/stat : 23921 (java) R 23914 23914 22008 0 -1 4202560 44570 0 0 0 1667 325 0 0 20 0 15 0 516284996 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139773005023400 139773072769767 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23922] ppid=23914 vsize=15151156 memory=0 CPUtime=7.52 cores=4-7
/proc/23916/task/23922/stat : 23922 (java) S 23914 23914 22008 0 -1 1077944384 28850 0 0 0 749 3 0 0 20 0 15 0 516284998 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772548347104 139773080151765 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23923] ppid=23914 vsize=15151156 memory=4449840 CPUtime=0 cores=4-7
/proc/23916/task/23923/stat : 23923 (java) S 23914 23914 22008 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 516284998 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772547294816 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23924] ppid=23914 vsize=15151156 memory=140597969497504 CPUtime=0 cores=4-7
/proc/23916/task/23924/stat : 23924 (java) S 23914 23914 22008 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 516284999 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772546241920 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23925] ppid=23914 vsize=15151156 memory=1448 CPUtime=0 cores=4-7
/proc/23916/task/23925/stat : 23925 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285001 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772545190224 139773080160155 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23926] ppid=23914 vsize=15151156 memory=10485508 CPUtime=0.52 cores=4-7
/proc/23916/task/23926/stat : 23926 (java) S 23914 23914 22008 0 -1 1077944384 2022 0 0 0 52 0 0 0 20 0 15 0 516285001 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772544137584 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23927] ppid=23914 vsize=15151156 memory=12552456 CPUtime=0.5 cores=4-7
/proc/23916/task/23927/stat : 23927 (java) S 23914 23914 22008 0 -1 1077944384 2258 0 0 0 50 0 0 0 20 0 15 0 516285001 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772543084784 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23928] ppid=23914 vsize=15151156 memory=1448 CPUtime=0.36 cores=4-7
/proc/23916/task/23928/stat : 23928 (java) S 23914 23914 22008 0 -1 1077944384 2339 0 0 0 35 1 0 0 20 0 15 0 516285001 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772542031984 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23929] ppid=23914 vsize=15151156 memory=12521648 CPUtime=0 cores=4-7
/proc/23916/task/23929/stat : 23929 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285002 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772540979424 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23930] ppid=23914 vsize=15151156 memory=1448 CPUtime=0.02 cores=4-7
/proc/23916/task/23930/stat : 23930 (java) S 23914 23914 22008 0 -1 1077944384 455 0 0 0 2 0 0 0 20 0 15 0 516285002 15514783744 3138114 33554432000 4194304 4196468 140729118228944 139772539927728 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
Current children cumulated CPU time: 102.4 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12553904 KiB

[startup+44.8008 s]
/proc/loadavg: 2.25 1.65 1.64 6/230 23932
/proc/meminfo: memFree=12738252/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/statm: 28282 362 304 221 0 87 0
[pid=23916] ppid=23914 vsize=15151156 memory=12575036 CPUtime=114.28 cores=4-7
/proc/23916/stat : 23916 (java) S 23914 23914 22008 0 -1 1077944320 222333 0 0 0 10120 1308 0 0 20 0 15 0 516284995 15514783744 3143759 33554432000 4194304 4196468 140729118228944 140729118211488 139773080141559 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
/proc/23916/statm: 3787789 3143759 3495 1 0 3748889 0
[pid=23916/tid=23917] ppid=23914 vsize=15151156 memory=1448 CPUtime=13.96 cores=4-7
/proc/23916/task/23917/stat : 23917 (java) S 23914 23914 22008 0 -1 1077944384 15319 0 0 0 1373 23 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773084379696 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23918] ppid=23914 vsize=15151156 memory=12574992 CPUtime=22.69 cores=4-7
/proc/23916/task/23918/stat : 23918 (java) R 23914 23914 22008 0 -1 4202560 26635 0 0 0 1956 313 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773008182024 139773072769767 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23919] ppid=23914 vsize=15151156 memory=6791534058613427641 CPUtime=22.76 cores=4-7
/proc/23916/task/23919/stat : 23919 (java) R 23914 23914 22008 0 -1 4202560 39880 0 0 0 1939 337 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773007128912 139773072769767 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23920] ppid=23914 vsize=15151156 memory=11001144 CPUtime=22.81 cores=4-7
/proc/23916/task/23920/stat : 23920 (java) R 23914 23914 22008 0 -1 4202560 58328 0 0 0 1981 300 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773006076504 139773073244545 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23921] ppid=23914 vsize=15151156 memory=14973369246290159 CPUtime=22.78 cores=4-7
/proc/23916/task/23921/stat : 23921 (java) R 23914 23914 22008 0 -1 4202560 44747 0 0 0 1952 326 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773005023624 139773072769767 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23922] ppid=23914 vsize=15151156 memory=3608 CPUtime=7.79 cores=4-7
/proc/23916/task/23922/stat : 23922 (java) S 23914 23914 22008 0 -1 1077944384 29001 0 0 0 776 3 0 0 20 0 15 0 516284998 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772548347344 139773080151765 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23923] ppid=23914 vsize=15151156 memory=984 CPUtime=0 cores=4-7
/proc/23916/task/23923/stat : 23923 (java) S 23914 23914 22008 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 516284998 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772547294816 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23924] ppid=23914 vsize=15151156 memory=2044 CPUtime=0 cores=4-7
/proc/23916/task/23924/stat : 23924 (java) S 23914 23914 22008 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 516284999 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772546241920 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23925] ppid=23914 vsize=15151156 memory=1368 CPUtime=0 cores=4-7
/proc/23916/task/23925/stat : 23925 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772545190224 139773080160155 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23926] ppid=23914 vsize=15151156 memory=1056 CPUtime=0.52 cores=4-7
/proc/23916/task/23926/stat : 23926 (java) S 23914 23914 22008 0 -1 1077944384 2022 0 0 0 52 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772544137584 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23927] ppid=23914 vsize=15151156 memory=3608 CPUtime=0.5 cores=4-7
/proc/23916/task/23927/stat : 23927 (java) S 23914 23914 22008 0 -1 1077944384 2258 0 0 0 50 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772543084784 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23928] ppid=23914 vsize=15151156 memory=64064 CPUtime=0.36 cores=4-7
/proc/23916/task/23928/stat : 23928 (java) S 23914 23914 22008 0 -1 1077944384 2339 0 0 0 35 1 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772542031984 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23929] ppid=23914 vsize=15151156 memory=984 CPUtime=0 cores=4-7
/proc/23916/task/23929/stat : 23929 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285002 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772540979424 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23930] ppid=23914 vsize=15151156 memory=2044 CPUtime=0.02 cores=4-7
/proc/23916/task/23930/stat : 23930 (java) S 23914 23914 22008 0 -1 1077944384 455 0 0 0 2 0 0 0 20 0 15 0 516285002 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772539927728 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
Current children cumulated CPU time: 114.28 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12576484 KiB

[startup+46.4009 s]
/proc/loadavg: 2.25 1.65 1.64 6/229 23932
/proc/meminfo: memFree=12737804/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/statm: 28282 362 304 221 0 87 0
[pid=23916] ppid=23914 vsize=15151156 memory=12575036 CPUtime=120.47 cores=4-7
/proc/23916/stat : 23916 (java) S 23914 23914 22008 0 -1 1077944320 223292 0 0 0 10736 1311 0 0 20 0 15 0 516284995 15514783744 3143759 33554432000 4194304 4196468 140729118228944 140729118211488 139773080141559 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
/proc/23916/statm: 3787789 3143759 3495 1 0 3748889 0
[pid=23916/tid=23917] ppid=23914 vsize=15151156 memory=12575036 CPUtime=13.96 cores=4-7
/proc/23916/task/23917/stat : 23917 (java) S 23914 23914 22008 0 -1 1077944384 15319 0 0 0 1373 23 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773084379696 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23918] ppid=23914 vsize=15151156 memory=6791534058613427641 CPUtime=24.24 cores=4-7
/proc/23916/task/23918/stat : 23918 (java) R 23914 23914 22008 0 -1 4202560 26635 0 0 0 2110 314 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773008181712 139773072769767 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23919] ppid=23914 vsize=15151156 memory=928 CPUtime=24.29 cores=4-7
/proc/23916/task/23919/stat : 23919 (java) R 23914 23914 22008 0 -1 4202560 39880 0 0 0 2091 338 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773007128912 139773072769767 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23920] ppid=23914 vsize=15151156 memory=1620 CPUtime=24.41 cores=4-7
/proc/23916/task/23920/stat : 23920 (java) R 23914 23914 22008 0 -1 4202560 59286 0 0 0 2141 300 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773006076504 139773073244538 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23921] ppid=23914 vsize=15151156 memory=780 CPUtime=24.29 cores=4-7
/proc/23916/task/23921/stat : 23921 (java) R 23914 23914 22008 0 -1 4202560 44747 0 0 0 2103 326 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773005023624 139773072769767 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23922] ppid=23914 vsize=15151156 memory=1448 CPUtime=7.79 cores=4-7
/proc/23916/task/23922/stat : 23922 (java) S 23914 23914 22008 0 -1 1077944384 29001 0 0 0 776 3 0 0 20 0 15 0 516284998 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772548347344 139773080151765 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23923] ppid=23914 vsize=15151156 memory=12575036 CPUtime=0 cores=4-7
/proc/23916/task/23923/stat : 23923 (java) S 23914 23914 22008 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 516284998 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772547294816 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23924] ppid=23914 vsize=15151156 memory=3516 CPUtime=0 cores=4-7
/proc/23916/task/23924/stat : 23924 (java) S 23914 23914 22008 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 516284999 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772546241920 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23925] ppid=23914 vsize=15151156 memory=1088 CPUtime=0 cores=4-7
/proc/23916/task/23925/stat : 23925 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772545190224 139773080160155 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23926] ppid=23914 vsize=15151156 memory=1448 CPUtime=0.52 cores=4-7
/proc/23916/task/23926/stat : 23926 (java) S 23914 23914 22008 0 -1 1077944384 2022 0 0 0 52 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772544137632 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23927] ppid=23914 vsize=15151156 memory=12575036 CPUtime=0.5 cores=4-7
/proc/23916/task/23927/stat : 23927 (java) S 23914 23914 22008 0 -1 1077944384 2259 0 0 0 50 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772543084544 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23928] ppid=23914 vsize=15151156 memory=7235123340932769380 CPUtime=0.36 cores=4-7
/proc/23916/task/23928/stat : 23928 (java) S 23914 23914 22008 0 -1 1077944384 2339 0 0 0 35 1 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772542032032 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23929] ppid=23914 vsize=15151156 memory=11249 CPUtime=0 cores=4-7
/proc/23916/task/23929/stat : 23929 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285002 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772540979424 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23930] ppid=23914 vsize=15151156 memory=6944656592455359545 CPUtime=0.03 cores=4-7
/proc/23916/task/23930/stat : 23930 (java) S 23914 23914 22008 0 -1 1077944384 455 0 0 0 2 1 0 0 20 0 15 0 516285002 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772539927728 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
Current children cumulated CPU time: 120.47 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12576484 KiB

[startup+46.8008 s]
/proc/loadavg: 2.25 1.65 1.64 6/229 23932
/proc/meminfo: memFree=12737804/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/statm: 28282 362 304 221 0 87 0
[pid=23916] ppid=23914 vsize=15151156 memory=12575036 CPUtime=121.57 cores=4-7
/proc/23916/stat : 23916 (java) S 23914 23914 22008 0 -1 1077944320 223292 0 0 0 10846 1311 0 0 20 0 15 0 516284995 15514783744 3143759 33554432000 4194304 4196468 140729118228944 140729118211488 139773080141559 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
/proc/23916/statm: 3787789 3143759 3495 1 0 3748889 0
[pid=23916/tid=23917] ppid=23914 vsize=15151156 memory=780 CPUtime=13.96 cores=4-7
/proc/23916/task/23917/stat : 23917 (java) S 23914 23914 22008 0 -1 1077944384 15319 0 0 0 1373 23 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773084379696 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23918] ppid=23914 vsize=15151156 memory=3516 CPUtime=24.47 cores=4-7
/proc/23916/task/23918/stat : 23918 (java) S 23914 23914 22008 0 -1 1077944384 26635 0 0 0 2133 314 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773008181904 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23919] ppid=23914 vsize=15151156 memory=1088 CPUtime=24.52 cores=4-7
/proc/23916/task/23919/stat : 23919 (java) S 23914 23914 22008 0 -1 1077944384 39880 0 0 0 2114 338 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773007129104 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23920] ppid=23914 vsize=15151156 memory=2832 CPUtime=24.65 cores=4-7
/proc/23916/task/23920/stat : 23920 (java) S 23914 23914 22008 0 -1 1077944384 59286 0 0 0 2165 300 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773006076304 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23921] ppid=23914 vsize=15151156 memory=1564 CPUtime=24.52 cores=4-7
/proc/23916/task/23921/stat : 23921 (java) S 23914 23914 22008 0 -1 1077944384 44747 0 0 0 2126 326 0 0 20 0 15 0 516284996 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139773005023504 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23922] ppid=23914 vsize=15151156 memory=8392 CPUtime=7.94 cores=4-7
/proc/23916/task/23922/stat : 23922 (java) R 23914 23914 22008 0 -1 4202560 29001 0 0 0 791 3 0 0 20 0 15 0 516284998 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772548347344 139773064599179 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23923] ppid=23914 vsize=15151156 memory=14008 CPUtime=0 cores=4-7
/proc/23916/task/23923/stat : 23923 (java) S 23914 23914 22008 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 15 0 516284998 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772547294816 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23924] ppid=23914 vsize=15151156 memory=33416 CPUtime=0 cores=4-7
/proc/23916/task/23924/stat : 23924 (java) S 23914 23914 22008 0 -1 1077944384 66 0 0 0 0 0 0 0 20 0 15 0 516284999 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772546241920 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23925] ppid=23914 vsize=15151156 memory=14068 CPUtime=0 cores=4-7
/proc/23916/task/23925/stat : 23925 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772545190224 139773080160155 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23926] ppid=23914 vsize=15151156 memory=2120 CPUtime=0.52 cores=4-7
/proc/23916/task/23926/stat : 23926 (java) S 23914 23914 22008 0 -1 1077944384 2022 0 0 0 52 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772544137632 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23927] ppid=23914 vsize=15151156 memory=496 CPUtime=0.5 cores=4-7
/proc/23916/task/23927/stat : 23927 (java) S 23914 23914 22008 0 -1 1077944384 2259 0 0 0 50 0 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772543084544 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23928] ppid=23914 vsize=15151156 memory=1556 CPUtime=0.36 cores=4-7
/proc/23916/task/23928/stat : 23928 (java) S 23914 23914 22008 0 -1 1077944384 2339 0 0 0 35 1 0 0 20 0 15 0 516285001 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772542032032 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23929] ppid=23914 vsize=15151156 memory=928 CPUtime=0 cores=4-7
/proc/23916/task/23929/stat : 23929 (java) S 23914 23914 22008 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 516285002 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772540979424 139773080151765 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
[pid=23916/tid=23930] ppid=23914 vsize=15151156 memory=1620 CPUtime=0.03 cores=4-7
/proc/23916/task/23930/stat : 23930 (java) S 23914 23914 22008 0 -1 1077944384 455 0 0 0 2 1 0 0 20 0 15 0 516285002 15514783744 3143759 33554432000 4194304 4196468 140729118228944 139772539927728 139773080152706 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 27004928 140729118233583 140729118233754 140729118233754 140729118236623 0
Current children cumulated CPU time: 121.57 s
Current children cumulated vsize: 15264284 KiB
Current children cumulated memory: 12576484 KiB

[startup+47.2008 s]
/proc/loadavg: 2.25 1.65 1.64 3/229 23932
/proc/meminfo: memFree=12737804/32770688 swapFree=67001280/67108860
[pid=23914] ppid=23911 vsize=113128 memory=1448 CPUtime=0 cores=4-7
/proc/23914/stat : 23914 (xcsp3-exec) S 23911 23914 22008 0 -1 4202496 543 0 0 0 0 0 0 0 20 0 1 0 516284995 115843072 362 33554432000 4194304 5098028 140729322988544 140729322986648 139881599070844 0 65536 4100 65538 18446744071579417331 0 0 17 6 0 0 0 0 0 7196144 7232144 17391616 140729322992508 140729322992749 140729322992749 140729322995658 0
/proc/23914/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): 47.2182
CPU time (s): 122.009
CPU user time (s): 108.825
CPU system time (s): 13.1843
CPU usage (%): 258.393
Max. virtual memory (cumulated for all children) (KiB): 15264284
Max. memory (cumulated for all children) (KiB): 12576512

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 108.825
system time used= 13.1843
maximum resident set size= 12575404
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 224203
page faults= 0
swaps= 0
block input operations= 0
block output operations= 152
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 5180
involuntary context switches= 1073


# summary of solver processes directly reported to runsolver:
#   pid: 23914
#   total CPU time (s): 122.009
#   total CPU user time (s): 108.825
#   total CPU system time (s): 13.1843

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.352448 second user time and 0.597667 second system time

The end

Launcher Data

Begin job on node116 at 2019-09-25 11:23:12
IDJOB=4406555
IDBENCH=138083
IDSOLVER=2870
FILE ID=node116/4406555-1569403433
RUNJOBID= node116-1569396628-22040
PBS_JOBID= 21705695
Free space on /tmp= 6444 MiB

SOLVER NAME= choco-solver 2019-09-24
BENCH NAME= XCSP17/BinPacking/BinPacking-tab-sw120/BinPacking-tab-sw120-75.xml
COMMAND LINE= xcsp3-exec -dir DIR -tl TIMEOUT -p 1 -ml 12000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4406555-1569403433/watcher-4406555-1569403433 -o /tmp/evaluation-result-4406555-1569403433/solver-4406555-1569403433 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node116-1569396628-22040 --watchdog 2560  xcsp3-exec -dir HOME -tl 2400 -p 1 -ml 12000 -tdir HOME -seed 13758179 HOME/instance-4406555-1569403433.xml

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

MD5SUM BENCH= 9cdf82428becd6b5ad716031980a59d2
RANDOM SEED=13758179

node116.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		: 2667.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.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		: 2667.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.12
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		: 2667.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.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		: 2667.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.12
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		: 2667.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 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		: 2667.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 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		: 2667.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 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		: 2667.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770688 kB
MemFree:        25325960 kB
MemAvailable:   31660488 kB
Buffers:          119908 kB
Cached:          6387020 kB
SwapCached:         3304 kB
Active:          3473332 kB
Inactive:        3223040 kB
Active(anon):     189196 kB
Inactive(anon):    56664 kB
Active(file):    3284136 kB
Inactive(file):  3166376 kB
Unevictable:      109488 kB
Mlocked:          109488 kB
SwapTotal:      67108860 kB
SwapFree:       67001280 kB
Dirty:            108916 kB
Writeback:             0 kB
AnonPages:        297172 kB
Mapped:            70560 kB
Shmem:             47784 kB
Slab:             341760 kB
SReclaimable:     312476 kB
SUnreclaim:        29284 kB
KernelStack:        3712 kB
PageTables:         6420 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494204 kB
Committed_AS:    1444292 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350212 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    235520 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      116160 kB
DirectMap2M:    33429504 kB

Free space on /tmp at the end= 6420 MiB
End job on node116 at 2019-09-25 11:24:00