Trace number 4269845

Some explanations

A solver is run under the control of another program named runsolver. runsolver is in charge of imposing the CPU time limit and the memory limit to the solver. It also monitors some information about the process. The trace of the execution of a solver is divided into four (or five) parts:
  1. SOLVER DATA
    This is the output of the solver (stdout and stderr).
    Note that some very long lines in this section may be truncated by your web browser ! In such a case, you may want to use the "Download as text" link to get the trace as a text file.

    When the --timestamp option is passed to the runsolver program, each line output by the solver is prepended with a timestamp which indicates at what time the line was output by the solver. Times are relative to the start of the program, given in seconds. The first timestamp (if present) is estimated CPU time. The last timestamp is wall clock time.

    As some 'v lines' may be very long (sometimes several megabytes), the 'v line' output by your solver may be split on several lines to help limit the size of the trace recorded in the database. In any case, the exact output of your solver is preserved in a trace file.
  2. VERIFIER DATA
    The output of the solver is piped to a verifier program which will search a value line "v " and, if found, will check that the given interpretation satisfies all constraints.
  3. CONVERSION SCRIPT DATA (Optionnal)
    When a conversion script is used, this section shows the messages that were output by the conversion script.
  4. WATCHER DATA
    This is the informations gathered by the runsolver program. It first prints the different limits. There's a first limit on CPU time set to X seconds (see the parameters in the trace). After this time has ellapsed, runsolver sends a SIGTERM and 2 seconds later a SIGKILL to the solver. For safety, there's also another limit set to X+30 seconds which will send a SIGXPU to the solver. The last limit is on the virtual memory used by the process (see the parameters in the trace).
    Every ten seconds, the runsolver process fetches the content of /proc/loadavg, /proc/pid/stat and /proc/pid/statm (see man proc) and prints it as raw data. This is only recorded in case we need to investigate the behaviour of a solver. The memory used by the solver (vsize) is also given every ten seconds.
    When the solver exits, runsolver prints some informations such as status and time. CPU usage is the ratio CPU Time/Real Time.
  5. LAUNCHER DATA
    These informations are related to the script which will launch the solver. The most important informations are the command line given to the solver, the md5sum of the different files and the dump of the /proc/cpuinfo and /proc/meminfo which provides some useful information on the computer.

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
choco-solver 4.0.5 seq (2017-08-09)? 2497.1101 702.409

General information on the benchmark

NameSuperSolutions/SuperSolutions-Queens-s1/
SuperQueens-02.xml
MD5SUM80353dd8c937a5bb459a24b290639269
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables200
Number of constraints14950
Number of domains1
Minimum domain size100
Maximum domain size100
Distribution of domain sizes[{"size":100,"count":200}]
Minimum variable degree100
Maximum variable degree199
Distribution of variable degrees[{"degree":100,"count":100},{"degree":199,"count":100}]
Minimum constraint arity2
Maximum constraint arity2
Distribution of constraint arities[{"arity":2,"count":14950}]
Number of extensional constraints0
Number of intensional constraints14950
Distribution of constraint types[{"type":"intension","count":14950}]
Optimization problemNO
Type of objective

Solver Data

0.00/0.10	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4269845-1502846763.xml"  -tl '2520s' -p 1 -x 0
0.08/0.28	c [HOME/instance-4269845-1502846763.xml, -tl, 2520s, -p, 1, -x, 0]
0.25/0.34	c simple solver
0.25/0.41	c parse instance...
2292.17/649.43	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
2379.24/671.97		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.computeSupports(PropCompactTable.java:98)
2379.24/671.97		at org.chocosolver.solver.constraints.extension.nary.PropCompactTable.<init>(PropCompactTable.java:61)
2393.23/675.56		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1857)
2393.23/675.56		at org.chocosolver.solver.constraints.IIntConstraintFactory.table(IIntConstraintFactory.java:1813)
2393.23/675.56		at org.chocosolver.solver.expression.discrete.relational.ReExpression.extension(ReExpression.java:150)
2404.17/678.38		at org.chocosolver.parser.xcsp.XCSPParser.buildCtrIntension(XCSPParser.java:112)
2404.17/678.38		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
2404.17/678.38		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
2404.17/678.38		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
2420.10/682.46		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$346(XCallbacks.java:440)
2420.10/682.46		at org.xcsp.parser.XCallbacks$$Lambda$52/1668627309.accept(Unknown Source)
2420.10/682.46		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
2420.10/682.46		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
2433.35/685.87		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
2433.35/685.87		at org.chocosolver.parser.xcsp.XCSPParser.loadGroup(XCSPParser.java:1406)
2433.35/685.87		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
2458.33/692.32		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
2458.33/692.32		at org.xcsp.parser.XCallbacks.loadInstance(XCallbacks.java:260)
2458.33/692.32		at org.chocosolver.parser.xcsp.XCSPParser.model(XCSPParser.java:88)
2458.33/692.32		at org.chocosolver.parser.xcsp.XCSP.parse(XCSP.java:112)
2474.98/696.60		at org.chocosolver.parser.xcsp.XCSP.buildModel(XCSP.java:99)
2474.98/696.60		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:23)
2474.98/696.60	s UNKNOWN
2496.99/702.36	c Unexpected resolution interruption!

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (15402 MiB free)
  memory of node 1: 16384 MiB (15265 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4269845-1502846763/watcher-4269845-1502846763 -o /tmp/evaluation-result-4269845-1502846763/solver-4269845-1502846763 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node134-1502649032-24470 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 318365820 HOME/instance-4269845-1502846763.xml 

running on 4 cores: 0,2,4,6

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 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
Current StackSize limit: 8192 KiB

solver pid=27573, runsolver pid=27570

[startup+0.100154 s]*
/proc/loadavg: 1.83 1.92 1.99 2/201 27574
/proc/meminfo: memFree=31403440/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1380 KiB

[startup+0.2136 s]*
/proc/loadavg: 1.83 1.92 1.99 4/216 27589
/proc/meminfo: memFree=31391684/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
[pid=27575] ppid=27573 vsize=13974352 memory=25796 CPUtime=0.08 cores=0,2,4,6
/proc/27575/stat : 27575 (java) S 27573 27573 4674 0 -1 1077944320 4840 0 0 0 7 1 0 0 20 0 15 0 132182886 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140730475589072 140031228935927 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
/proc/27575/statm: 3493588 6449 2724 1 0 3482964 0
[pid=27575/tid=27576] ppid=27573 vsize=13974352 memory=7311146985107750967 CPUtime=0.06 cores=0,2,4,6
/proc/27575/task/27576/stat : 27576 (java) R 27573 27573 4674 0 -1 4202560 2994 0 0 0 5 1 0 0 20 0 15 0 132182886 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140031233161616 140031228957853 0 4 1 16800974 0 0 0 -1 4 0 0 4 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27577] ppid=27573 vsize=13974352 memory=12630 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27577/stat : 27577 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140031170881808 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27578] ppid=27573 vsize=13974352 memory=139930380654360 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27578/stat : 27578 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140031169829264 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27579] ppid=27573 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27579/stat : 27579 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140031168776720 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27580] ppid=27573 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27580/stat : 27580 (java) S 27573 27573 4674 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 132182887 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030826257040 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27581] ppid=27573 vsize=13974352 memory=139930380629632 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27581/stat : 27581 (java) S 27573 27573 4674 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 132182888 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030774704624 140031228947074 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27582] ppid=27573 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27582/stat : 27582 (java) S 27573 27573 4674 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 132182888 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030773650848 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27583] ppid=27573 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27583/stat : 27583 (java) S 27573 27573 4674 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 132182889 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030772598256 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27584] ppid=27573 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27584/stat : 27584 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030771546832 140031228954523 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27585] ppid=27573 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27585/stat : 27585 (java) S 27573 27573 4674 0 -1 1077944384 297 0 0 0 0 0 0 0 20 0 15 0 132182891 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030770493424 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27586] ppid=27573 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27586/stat : 27586 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030769440880 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27587] ppid=27573 vsize=13974352 memory=139930380629632 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27587/stat : 27587 (java) S 27573 27573 4674 0 -1 1077944384 245 0 0 0 0 0 0 0 20 0 15 0 132182891 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030768388336 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27588] ppid=27573 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27588/stat : 27588 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030767336032 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27589] ppid=27573 vsize=13974352 memory=139930380629632 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27589/stat : 27589 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182896 14309736448 6449 18446744073709551615 4194304 4196468 140730475606528 140030766283568 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
Current children cumulated CPU time: 0.08 s
Current children cumulated vsize: 13983864 KiB
Current children cumulated memory: 27176 KiB

[startup+0.310615 s]*
/proc/loadavg: 1.83 1.92 1.99 3/216 27589
/proc/meminfo: memFree=31376048/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
[pid=27575] ppid=27573 vsize=13974352 memory=37244 CPUtime=0.25 cores=0,2,4,6
/proc/27575/stat : 27575 (java) S 27573 27573 4674 0 -1 1077944320 8422 0 0 0 22 3 0 0 20 0 15 0 132182886 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140730475589072 140031228935927 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
/proc/27575/statm: 3493588 9311 2972 1 0 3482964 0
[pid=27575/tid=27576] ppid=27573 vsize=13974352 memory=-8774313645642428999 CPUtime=0.15 cores=0,2,4,6
/proc/27575/task/27576/stat : 27576 (java) R 27573 27573 4674 0 -1 4202560 5669 0 0 0 13 2 0 0 20 0 15 0 132182886 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140031233157456 140031228957853 0 4 1 16800974 0 0 0 -1 4 0 0 4 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27577] ppid=27573 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27577/stat : 27577 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140031170881808 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27578] ppid=27573 vsize=13974352 memory=139930380629632 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27578/stat : 27578 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140031169829264 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27579] ppid=27573 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27579/stat : 27579 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140031168776720 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27580] ppid=27573 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27580/stat : 27580 (java) S 27573 27573 4674 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 132182887 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030826257040 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27581] ppid=27573 vsize=13974352 memory=139930380629632 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27581/stat : 27581 (java) S 27573 27573 4674 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 132182888 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030774704624 140031228947074 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27582] ppid=27573 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27582/stat : 27582 (java) S 27573 27573 4674 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 132182888 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030773650848 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27583] ppid=27573 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27583/stat : 27583 (java) S 27573 27573 4674 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 132182889 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030772598256 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27584] ppid=27573 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27584/stat : 27584 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030771546832 140031228954523 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27585] ppid=27573 vsize=13974352 memory=0 CPUtime=0.01 cores=0,2,4,6
/proc/27575/task/27585/stat : 27585 (java) S 27573 27573 4674 0 -1 1077944384 431 0 0 0 1 0 0 0 20 0 15 0 132182891 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030770493424 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27586] ppid=27573 vsize=13974352 memory=-1 CPUtime=0.01 cores=0,2,4,6
/proc/27575/task/27586/stat : 27586 (java) S 27573 27573 4674 0 -1 1077944384 320 0 0 0 1 0 0 0 20 0 15 0 132182891 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030769440880 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27587] ppid=27573 vsize=13974352 memory=139930380629632 CPUtime=0.05 cores=0,2,4,6
/proc/27575/task/27587/stat : 27587 (java) S 27573 27573 4674 0 -1 1077944384 698 0 0 0 5 0 0 0 20 0 15 0 132182891 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030768388336 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27588] ppid=27573 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27588/stat : 27588 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030767336032 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27589] ppid=27573 vsize=13974352 memory=139930380629632 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27589/stat : 27589 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182896 14309736448 9311 18446744073709551615 4194304 4196468 140730475606528 140030766283568 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
Current children cumulated CPU time: 0.25 s
Current children cumulated vsize: 13983864 KiB
Current children cumulated memory: 38624 KiB

[startup+0.701212 s]
/proc/loadavg: 1.83 1.92 1.99 5/216 27589
/proc/meminfo: memFree=31357292/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
[pid=27575] ppid=27573 vsize=13978684 memory=81592 CPUtime=1.31 cores=0,2,4,6
/proc/27575/stat : 27575 (java) S 27573 27573 4674 0 -1 1077944320 12526 0 0 0 126 5 0 0 20 0 15 0 132182886 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140730475589072 140031228935927 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
/proc/27575/statm: 3494671 20398 3168 1 0 3482964 0
[pid=27575/tid=27576] ppid=27573 vsize=13978684 memory=0 CPUtime=0.54 cores=0,2,4,6
/proc/27575/task/27576/stat : 27576 (java) R 27573 27573 4674 0 -1 4202560 7345 0 0 0 50 4 0 0 20 0 15 0 132182886 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140031233169928 140030852051304 0 4 1 16800974 0 0 0 -1 6 0 0 4 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27577] ppid=27573 vsize=13978684 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27577/stat : 27577 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140031170881808 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27578] ppid=27573 vsize=13978684 memory=6372429994736969575 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27578/stat : 27578 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140031169829264 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27579] ppid=27573 vsize=13978684 memory=7373916858537504097 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27579/stat : 27579 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140031168776720 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27580] ppid=27573 vsize=13978684 memory=4638778398332698720 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27580/stat : 27580 (java) S 27573 27573 4674 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 132182887 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030826257040 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27581] ppid=27573 vsize=13978684 memory=3054156605268203416 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27581/stat : 27581 (java) S 27573 27573 4674 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 132182888 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030774704624 140031228947074 0 0 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27582] ppid=27573 vsize=13978684 memory=-9109213556524817781 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27582/stat : 27582 (java) S 27573 27573 4674 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 132182888 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030773650848 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27583] ppid=27573 vsize=13978684 memory=-7739291840220455296 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27583/stat : 27583 (java) S 27573 27573 4674 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 132182889 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030772598256 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27584] ppid=27573 vsize=13978684 memory=-7522837415797432223 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27584/stat : 27584 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030771546832 140031228954523 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27585] ppid=27573 vsize=13978684 memory=4137292528961491315 CPUtime=0.24 cores=0,2,4,6
/proc/27575/task/27585/stat : 27585 (java) R 27573 27573 4674 0 -1 4202560 1358 0 0 0 24 0 0 0 20 0 15 0 132182891 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030770483808 140031207565473 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27586] ppid=27573 vsize=13978684 memory=59180 CPUtime=0.24 cores=0,2,4,6
/proc/27575/task/27586/stat : 27586 (java) R 27573 27573 4674 0 -1 4202560 1061 0 0 0 24 0 0 0 20 0 15 0 132182891 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030769429440 140031212434905 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27587] ppid=27573 vsize=13978684 memory=-8774313645642428999 CPUtime=0.27 cores=0,2,4,6
/proc/27575/task/27587/stat : 27587 (java) S 27573 27573 4674 0 -1 1077944384 1455 0 0 0 27 0 0 0 20 0 15 0 132182891 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030768388336 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27588] ppid=27573 vsize=13978684 memory=4872558044660077418 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27588/stat : 27588 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030767336032 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27589] ppid=27573 vsize=13978684 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27589/stat : 27589 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182896 14314172416 20398 18446744073709551615 4194304 4196468 140730475606528 140030766283568 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
Current children cumulated CPU time: 1.31 s
Current children cumulated vsize: 13988196 KiB
Current children cumulated memory: 82972 KiB

[startup+1.50088 s]
/proc/loadavg: 2.00 1.95 2.00 5/216 27589
/proc/meminfo: memFree=31223436/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
[pid=27575] ppid=27573 vsize=13980732 memory=196200 CPUtime=3.17 cores=0,2,4,6
/proc/27575/stat : 27575 (java) S 27573 27573 4674 0 -1 1077944320 14670 0 0 0 308 9 0 0 20 0 15 0 132182886 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140730475589072 140031228935927 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
/proc/27575/statm: 3495183 49050 3197 1 0 3483476 0
[pid=27575/tid=27576] ppid=27573 vsize=13980732 memory=-8774313645642428999 CPUtime=1.32 cores=0,2,4,6
/proc/27575/task/27576/stat : 27576 (java) R 27573 27573 4674 0 -1 4202560 7960 0 0 0 126 6 0 0 20 0 15 0 132182886 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140031233153728 140030853132032 0 4 1 16800974 0 0 0 -1 4 0 0 4 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27577] ppid=27573 vsize=13980732 memory=3472468225655321615 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27577/stat : 27577 (java) S 27573 27573 4674 0 -1 1077944384 15 0 0 0 0 0 0 0 20 0 15 0 132182887 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140031170881808 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27578] ppid=27573 vsize=13980732 memory=7162362015053528304 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27578/stat : 27578 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182887 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140031169829264 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27579] ppid=27573 vsize=13980732 memory=4207739443882509777 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27579/stat : 27579 (java) S 27573 27573 4674 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 15 0 132182887 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140031168776720 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27580] ppid=27573 vsize=13980732 memory=3472468225655328434 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27580/stat : 27580 (java) S 27573 27573 4674 0 -1 1077944384 58 0 0 0 0 0 0 0 20 0 15 0 132182887 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030826257040 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27581] ppid=27573 vsize=13980732 memory=-8774313645642428999 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27581/stat : 27581 (java) S 27573 27573 4674 0 -1 1077944384 83 0 0 0 0 0 0 0 20 0 15 0 132182888 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030774704624 140031228947074 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27582] ppid=27573 vsize=13980732 memory=7089618335782288752 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27582/stat : 27582 (java) S 27573 27573 4674 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 132182888 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030773650848 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27583] ppid=27573 vsize=13980732 memory=-6804530832991035292 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27583/stat : 27583 (java) S 27573 27573 4674 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 132182889 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030772598256 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27584] ppid=27573 vsize=13980732 memory=6944656591801717918 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27584/stat : 27584 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030771546832 140031228954523 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27585] ppid=27573 vsize=13980732 memory=-8412652169205224307 CPUtime=0.7 cores=0,2,4,6
/proc/27575/task/27585/stat : 27585 (java) S 27573 27573 4674 0 -1 1077944384 1769 0 0 0 70 0 0 0 20 0 15 0 132182891 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030770493424 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27586] ppid=27573 vsize=13980732 memory=-6158907362674458256 CPUtime=0.72 cores=0,2,4,6
/proc/27575/task/27586/stat : 27586 (java) S 27573 27573 4674 0 -1 1077944384 1829 0 0 0 72 0 0 0 20 0 15 0 132182891 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030769440880 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27587] ppid=27573 vsize=13980732 memory=0 CPUtime=0.35 cores=0,2,4,6
/proc/27575/task/27587/stat : 27587 (java) S 27573 27573 4674 0 -1 1077944384 1651 0 0 0 35 0 0 0 20 0 15 0 132182891 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030768388336 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27588] ppid=27573 vsize=13980732 memory=-1088251628401078322 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27588/stat : 27588 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030767336032 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27589] ppid=27573 vsize=13980732 memory=6944656592455360604 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27589/stat : 27589 (java) S 27573 27573 4674 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 132182896 14316269568 49050 18446744073709551615 4194304 4196468 140730475606528 140030766283568 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0

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

/proc/27575/task/27583/stat : 27583 (java) S 27573 27573 4674 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 132182889 14316269568 2744589 18446744073709551615 4194304 4196468 140730475606528 140030772598272 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27584] ppid=27573 vsize=13980732 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27584/stat : 27584 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14316269568 2744589 18446744073709551615 4194304 4196468 140730475606528 140030771546832 140031228954523 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27585] ppid=27573 vsize=13980732 memory=10978356 CPUtime=1.89 cores=0,2,4,6
/proc/27575/task/27585/stat : 27585 (java) S 27573 27573 4674 0 -1 1077944384 7118 0 0 0 188 1 0 0 20 0 15 0 132182891 14316269568 2744589 18446744073709551615 4194304 4196468 140730475606528 140030770493424 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 8 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27586] ppid=27573 vsize=13980732 memory=10978356 CPUtime=3.2 cores=0,2,4,6
/proc/27575/task/27586/stat : 27586 (java) S 27573 27573 4674 0 -1 1077944384 10309 0 0 0 318 2 0 0 20 0 15 0 132182891 14316269568 2744589 18446744073709551615 4194304 4196468 140730475606528 140030769440640 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27587] ppid=27573 vsize=13980732 memory=1380 CPUtime=0.51 cores=0,2,4,6
/proc/27575/task/27587/stat : 27587 (java) S 27573 27573 4674 0 -1 1077944384 3145 0 0 0 50 1 0 0 20 0 15 0 132182891 14316269568 2744589 18446744073709551615 4194304 4196468 140730475606528 140030768388336 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 12 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27588] ppid=27573 vsize=13980732 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27588/stat : 27588 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14316269568 2744589 18446744073709551615 4194304 4196468 140730475606528 140030767336032 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27589] ppid=27573 vsize=13980732 memory=10978356 CPUtime=0.47 cores=0,2,4,6
/proc/27575/task/27589/stat : 27589 (java) S 27573 27573 4674 0 -1 1077944384 448 0 0 0 30 17 0 0 20 0 15 0 132182896 14316269568 2744589 18446744073709551615 4194304 4196468 140730475606528 140030766283568 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 9 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
Current children cumulated CPU time: 1796.1 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 10979736 KiB

[startup+582.311 s]
/proc/loadavg: 4.93 4.33 3.19 6/215 27624
/proc/meminfo: memFree=20418792/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
[pid=27575] ppid=27573 vsize=13980732 memory=10978396 CPUtime=2030.09 cores=0,2,4,6
/proc/27575/stat : 27575 (java) S 27573 27573 4674 0 -1 1077944320 254028 0 0 0 202063 946 0 0 20 0 15 0 132182886 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140730475589072 140031228935927 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
/proc/27575/statm: 3495183 2744599 3242 1 0 3483476 0
[pid=27575/tid=27576] ppid=27573 vsize=13980732 memory=10978396 CPUtime=83.96 cores=0,2,4,6
/proc/27575/task/27576/stat : 27576 (java) S 27573 27573 4674 0 -1 1077944384 13817 0 0 0 8386 10 0 0 20 0 15 0 132182886 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140031233175088 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 4 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27577] ppid=27573 vsize=13980732 memory=10978356 CPUtime=481.37 cores=0,2,4,6
/proc/27575/task/27577/stat : 27577 (java) R 27573 27573 4674 0 -1 4202560 27785 0 0 0 47903 234 0 0 20 0 15 0 132182887 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140031170881696 140031213633566 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27578] ppid=27573 vsize=13980732 memory=10978396 CPUtime=481.23 cores=0,2,4,6
/proc/27575/task/27578/stat : 27578 (java) R 27573 27573 4674 0 -1 4202560 34689 0 0 0 47879 244 0 0 20 0 15 0 132182887 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140031169829264 140031213920928 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27579] ppid=27573 vsize=13980732 memory=1380 CPUtime=481.23 cores=0,2,4,6
/proc/27575/task/27579/stat : 27579 (java) R 27573 27573 4674 0 -1 4202560 25526 0 0 0 47899 224 0 0 20 0 15 0 132182887 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140031168776920 140031213886920 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27580] ppid=27573 vsize=13980732 memory=4148 CPUtime=481.86 cores=0,2,4,6
/proc/27575/task/27580/stat : 27580 (java) R 27573 27573 4674 0 -1 4202560 33390 0 0 0 47966 220 0 0 20 0 15 0 132182887 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030826257240 140031213887090 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27581] ppid=27573 vsize=13980732 memory=1380 CPUtime=14.23 cores=0,2,4,6
/proc/27575/task/27581/stat : 27581 (java) S 27573 27573 4674 0 -1 1077944384 96420 0 0 0 1417 6 0 0 20 0 15 0 132182888 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030774702944 140031228946133 0 0 1 16800974 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27582] ppid=27573 vsize=13980732 memory=10978396 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27582/stat : 27582 (java) S 27573 27573 4674 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 15 0 132182888 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030773650912 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27583] ppid=27573 vsize=13980732 memory=10978396 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27583/stat : 27583 (java) S 27573 27573 4674 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 132182889 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030772598272 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27584] ppid=27573 vsize=13980732 memory=-8774313645642428999 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27584/stat : 27584 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030771546832 140031228954523 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27585] ppid=27573 vsize=13980732 memory=1380 CPUtime=1.89 cores=0,2,4,6
/proc/27575/task/27585/stat : 27585 (java) S 27573 27573 4674 0 -1 1077944384 7133 0 0 0 188 1 0 0 20 0 15 0 132182891 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030770493424 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 8 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27586] ppid=27573 vsize=13980732 memory=1380 CPUtime=3.2 cores=0,2,4,6
/proc/27575/task/27586/stat : 27586 (java) S 27573 27573 4674 0 -1 1077944384 10312 0 0 0 318 2 0 0 20 0 15 0 132182891 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030769440880 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27587] ppid=27573 vsize=13980732 memory=10978396 CPUtime=0.51 cores=0,2,4,6
/proc/27575/task/27587/stat : 27587 (java) S 27573 27573 4674 0 -1 1077944384 3152 0 0 0 50 1 0 0 20 0 15 0 132182891 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030768388336 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 12 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27588] ppid=27573 vsize=13980732 memory=2764 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27588/stat : 27588 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030767336032 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27589] ppid=27573 vsize=13980732 memory=0 CPUtime=0.52 cores=0,2,4,6
/proc/27575/task/27589/stat : 27589 (java) S 27573 27573 4674 0 -1 1077944384 505 0 0 0 34 18 0 0 20 0 15 0 132182896 14316269568 2744599 18446744073709551615 4194304 4196468 140730475606528 140030766283568 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 9 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
Current children cumulated CPU time: 2030.09 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 10979776 KiB

[startup+642.31 s]
/proc/loadavg: 4.48 4.31 3.26 6/215 27626
/proc/meminfo: memFree=20407076/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
[pid=27575] ppid=27573 vsize=13980732 memory=10978472 CPUtime=2264.46 cores=0,2,4,6
/proc/27575/stat : 27575 (java) S 27573 27573 4674 0 -1 1077944320 281663 0 0 0 225497 949 0 0 20 0 15 0 132182886 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140730475589072 140031228935927 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
/proc/27575/statm: 3495183 2744618 3242 1 0 3483476 0
[pid=27575/tid=27576] ppid=27573 vsize=13980732 memory=10978472 CPUtime=83.96 cores=0,2,4,6
/proc/27575/task/27576/stat : 27576 (java) S 27573 27573 4674 0 -1 1077944384 13862 0 0 0 8386 10 0 0 20 0 15 0 132182886 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140031233174720 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 4 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27577] ppid=27573 vsize=13980732 memory=1380 CPUtime=539.69 cores=0,2,4,6
/proc/27575/task/27577/stat : 27577 (java) R 27573 27573 4674 0 -1 4202560 29461 0 0 0 53735 234 0 0 20 0 15 0 132182887 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140031170881808 140031213633566 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27578] ppid=27573 vsize=13980732 memory=10978472 CPUtime=539.14 cores=0,2,4,6
/proc/27575/task/27578/stat : 27578 (java) R 27573 27573 4674 0 -1 4202560 37862 0 0 0 53669 245 0 0 20 0 15 0 132182887 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140031169829152 140031213887136 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27579] ppid=27573 vsize=13980732 memory=1380 CPUtime=539.57 cores=0,2,4,6
/proc/27575/task/27579/stat : 27579 (java) R 27573 27573 4674 0 -1 4202560 27191 0 0 0 53732 225 0 0 20 0 15 0 132182887 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140031168776920 140031213633519 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27580] ppid=27573 vsize=13980732 memory=10978472 CPUtime=540.09 cores=0,2,4,6
/proc/27575/task/27580/stat : 27580 (java) R 27573 27573 4674 0 -1 4202560 36026 0 0 0 53789 220 0 0 20 0 15 0 132182887 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030826257240 140031213633702 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27581] ppid=27573 vsize=13980732 memory=10978472 CPUtime=15.74 cores=0,2,4,6
/proc/27575/task/27581/stat : 27581 (java) S 27573 27573 4674 0 -1 1077944384 114776 0 0 0 1568 6 0 0 20 0 15 0 132182888 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030774702944 140031228946133 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27582] ppid=27573 vsize=13980732 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27582/stat : 27582 (java) S 27573 27573 4674 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 15 0 132182888 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030773650912 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27583] ppid=27573 vsize=13980732 memory=10978472 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27583/stat : 27583 (java) S 27573 27573 4674 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 132182889 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030772598272 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27584] ppid=27573 vsize=13980732 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27584/stat : 27584 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030771546832 140031228954523 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27585] ppid=27573 vsize=13980732 memory=3908 CPUtime=1.89 cores=0,2,4,6
/proc/27575/task/27585/stat : 27585 (java) S 27573 27573 4674 0 -1 1077944384 7146 0 0 0 188 1 0 0 20 0 15 0 132182891 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030770493424 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 8 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27586] ppid=27573 vsize=13980732 memory=1724 CPUtime=3.2 cores=0,2,4,6
/proc/27575/task/27586/stat : 27586 (java) S 27573 27573 4674 0 -1 1077944384 10329 0 0 0 318 2 0 0 20 0 15 0 132182891 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030769440880 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 1 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27587] ppid=27573 vsize=13980732 memory=2012 CPUtime=0.52 cores=0,2,4,6
/proc/27575/task/27587/stat : 27587 (java) S 27573 27573 4674 0 -1 1077944384 3166 0 0 0 51 1 0 0 20 0 15 0 132182891 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030768388096 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 12 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27588] ppid=27573 vsize=13980732 memory=3204 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27588/stat : 27588 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 132182891 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030767336032 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27589] ppid=27573 vsize=13980732 memory=1380 CPUtime=0.59 cores=0,2,4,6
/proc/27575/task/27589/stat : 27589 (java) S 27573 27573 4674 0 -1 1077944384 545 0 0 0 38 21 0 0 20 0 15 0 132182896 14316269568 2744618 18446744073709551615 4194304 4196468 140730475606528 140030766283568 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 9 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
Current children cumulated CPU time: 2264.46 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 10979852 KiB

[startup+702.301 s]
/proc/loadavg: 4.67 4.38 3.35 6/216 27629
/proc/meminfo: memFree=20407008/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
[pid=27575] ppid=27573 vsize=14047296 memory=10978600 CPUtime=2496.99 cores=0,2,4,6
/proc/27575/stat : 27575 (java) S 27573 27573 4674 0 -1 1077944320 300951 0 0 0 248718 981 0 0 20 0 16 0 132182886 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140730475589072 140031228935927 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
/proc/27575/statm: 3511824 2744650 3243 1 0 3500117 0
[pid=27575/tid=27576] ppid=27573 vsize=14047296 memory=10978600 CPUtime=83.97 cores=0,2,4,6
/proc/27575/task/27576/stat : 27576 (java) S 27573 27573 4674 0 -1 1077944384 14001 0 0 0 8387 10 0 0 20 0 16 0 132182886 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140031233176608 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 4 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27577] ppid=27573 vsize=14047296 memory=1380 CPUtime=597.98 cores=0,2,4,6
/proc/27575/task/27577/stat : 27577 (java) S 27573 27573 4674 0 -1 1077944384 32532 0 0 0 59561 237 0 0 20 0 16 0 132182887 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140031170881808 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27578] ppid=27573 vsize=14047296 memory=10978564 CPUtime=596.99 cores=0,2,4,6
/proc/27575/task/27578/stat : 27578 (java) S 27573 27573 4674 0 -1 1077944384 40092 0 0 0 59446 253 0 0 20 0 16 0 132182887 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140031169829264 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27579] ppid=27573 vsize=14047296 memory=10978536 CPUtime=596.7 cores=0,2,4,6
/proc/27575/task/27579/stat : 27579 (java) S 27573 27573 4674 0 -1 1077944384 28815 0 0 0 59435 235 0 0 20 0 16 0 132182887 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140031168776720 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27580] ppid=27573 vsize=14047296 memory=10978548 CPUtime=597.98 cores=0,2,4,6
/proc/27575/task/27580/stat : 27580 (java) S 27573 27573 4674 0 -1 1077944384 38283 0 0 0 59569 229 0 0 20 0 16 0 132182887 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030826257040 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27581] ppid=27573 vsize=14047296 memory=1380 CPUtime=17.03 cores=0,2,4,6
/proc/27575/task/27581/stat : 27581 (java) R 27573 27573 4674 0 -1 4202560 124629 0 0 0 1697 6 0 0 20 0 16 0 132182888 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030774703168 140031213393497 0 0 1 16800974 0 0 0 -1 4 0 0 1 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27582] ppid=27573 vsize=14047296 memory=10978560 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27582/stat : 27582 (java) S 27573 27573 4674 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 16 0 132182888 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030773650912 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27583] ppid=27573 vsize=14047296 memory=10978600 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27583/stat : 27583 (java) S 27573 27573 4674 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 16 0 132182889 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030772598272 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27584] ppid=27573 vsize=14047296 memory=10978600 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27584/stat : 27584 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 132182891 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030771546832 140031228954523 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27585] ppid=27573 vsize=14047296 memory=10978600 CPUtime=1.89 cores=0,2,4,6
/proc/27575/task/27585/stat : 27585 (java) S 27573 27573 4674 0 -1 1077944384 7151 0 0 0 188 1 0 0 20 0 16 0 132182891 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030770493184 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 8 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27586] ppid=27573 vsize=14047296 memory=10978600 CPUtime=3.2 cores=0,2,4,6
/proc/27575/task/27586/stat : 27586 (java) S 27573 27573 4674 0 -1 1077944384 10335 0 0 0 318 2 0 0 20 0 16 0 132182891 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030769440928 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 1 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27587] ppid=27573 vsize=14047296 memory=4148 CPUtime=0.52 cores=0,2,4,6
/proc/27575/task/27587/stat : 27587 (java) S 27573 27573 4674 0 -1 1077944384 3203 0 0 0 51 1 0 0 20 0 16 0 132182891 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030768388384 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 12 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27588] ppid=27573 vsize=14047296 memory=38520 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27588/stat : 27588 (java) S 27573 27573 4674 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 132182891 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030767336032 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27589] ppid=27573 vsize=14047296 memory=1232 CPUtime=0.63 cores=0,2,4,6
/proc/27575/task/27589/stat : 27589 (java) S 27573 27573 4674 0 -1 1077944384 571 0 0 0 40 23 0 0 20 0 16 0 132182896 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030766283568 140031228947074 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 9 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
[pid=27575/tid=27629] ppid=27573 vsize=14047296 memory=644 CPUtime=0 cores=0,2,4,6
/proc/27575/task/27629/stat : 27629 (java) S 27573 27573 4674 0 -1 1077944384 40 0 0 0 0 0 0 0 20 0 16 0 132252535 14384431104 2744650 18446744073709551615 4194304 4196468 140730475606528 140030129066672 140031228946133 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 34004992 140730475610545 140730475610721 140730475610721 140730475614159 0
Current children cumulated CPU time: 2496.99 s
Current children cumulated vsize: 14056808 KiB
Current children cumulated memory: 10979980 KiB

[startup+702.409 s]
# the end of solver process 27573 was just reported to runsolver
# cumulated CPU time of all completed processes:  user=2487.25 s, system=9.86026 s

Solver just ended.
??? end of watcher thread
Dumping a history of the last processes samples

[startup+702.401 s]
/proc/loadavg: 4.67 4.38 3.35 6/216 27629
/proc/meminfo: memFree=20407008/32770624 swapFree=67108764/67108860
[pid=27573] ppid=27570 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27573/stat : 27573 (xcsp3-exec) S 27570 27573 4674 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 132182875 9740288 345 18446744073709551615 4194304 5098028 140732985991200 140732985989304 140449066504828 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 26275840 140732985995641 140732985995845 140732985995845 140732985999339 0
/proc/27573/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1380 KiB

Child status: 1
Real time (s): 702.409
CPU time (s): 2497.11
CPU user time (s): 2487.25
CPU system time (s): 9.86026
CPU usage (%): 355.506
Max. virtual memory (cumulated for all children) (KiB): 14056808
Max. memory (cumulated for all children) (KiB): 10979980

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2487.25
system time used= 9.86026
maximum resident set size= 10978896
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 301715
page faults= 0
swaps= 0
block input operations= 0
block output operations= 880
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 25792
involuntary context switches= 25064


# summary of solver processes directly reported to runsolver:
#   pid: 27573
#   total CPU time (s): 2497.11
#   total CPU user time (s): 2487.25
#   total CPU system time (s): 9.86026

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 4.26667 second user time and 7.56312 second system time

The end

Launcher Data

Begin job on node134 at 2017-08-16 03:12:10
IDJOB=4269845
IDBENCH=138396
IDSOLVER=2660
FILE ID=node134/4269845-1502846763
RUNJOBID= node134-1502649032-24470
PBS_JOBID= 
Free space on /tmp= 62024 MiB

SOLVER NAME= choco-solver 4.0.5 seq
BENCH NAME= XCSP17/SuperSolutions/SuperSolutions-Queens-s1/SuperQueens-02.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -ml 11000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4269845-1502846763/watcher-4269845-1502846763 -o /tmp/evaluation-result-4269845-1502846763/solver-4269845-1502846763 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node134-1502649032-24470 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 318365820 HOME/instance-4269845-1502846763.xml

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

MD5SUM BENCH= 80353dd8c937a5bb459a24b290639269
RANDOM SEED=318365820

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

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

/proc/cpuinfo:
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 4
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 5
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 6
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

processor	: 7
vendor_id	: GenuineIntel
cpu family	: 6
model		: 26
model name	: Intel(R) Xeon(R) CPU           X5550  @ 2.67GHz
stepping	: 5
microcode	: 0x19
cpu MHz		: 2668.000
cache size	: 8192 KB
physical id	: 1
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5332.55
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        31403200 kB
MemAvailable:   31725392 kB
Buffers:          289460 kB
Cached:           335636 kB
SwapCached:            4 kB
Active:           650792 kB
Inactive:         265120 kB
Active(anon):     237756 kB
Inactive(anon):   102676 kB
Active(file):     413036 kB
Inactive(file):   162444 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108764 kB
Dirty:              8484 kB
Writeback:             0 kB
AnonPages:        290320 kB
Mapped:            74216 kB
Shmem:             49756 kB
Slab:             152628 kB
SReclaimable:     125096 kB
SUnreclaim:        27532 kB
KernelStack:        3536 kB
PageTables:         5628 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1290012 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      354332 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    231424 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      101760 kB
DirectMap2M:    33443840 kB

Free space on /tmp at the end= 62016 MiB
End job on node134 at 2017-08-16 03:23:53