Trace number 4393805

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-06-14 parallelOPT1429 213.379 57.7083

General information on the benchmark

NameKnapsack/Knapsack-m1-s50/
Knapsack-50-200-16.xml
MD5SUMe3af77ac2ce2de59a61fc382fed7941a
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark1429
Best CPU time to get the best result obtained on this benchmark70.3799
Satisfiable
(Un)Satisfiability was proved
Number of variables50
Number of constraints1
Number of domains1
Minimum domain size2
Maximum domain size2
Distribution of domain sizes[{"size":2,"count":50}]
Minimum variable degree2
Maximum variable degree2
Distribution of variable degrees[{"degree":2,"count":50}]
Minimum constraint arity50
Maximum constraint arity50
Distribution of constraint arities[{"arity":50,"count":1}]
Number of extensional constraints0
Number of intensional constraints0
Distribution of constraint types[{"type":"sum","count":1}]
Optimization problemYES
Type of objectivemax SUM

Quality of the solution as a function of time


Download the above graph as a PDF file / as an EPS file

Solver Data

0.00/0.00	c java -server -Xmx24000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4393805-1568433828.xml"  -tl '20160s' -p 8
0.13/0.18	c Choco e747e1e
0.13/0.18	c [HOME/instance-4393805-1568433828.xml, -tl, 20160s, -p, 8]
0.34/0.22	c 8 solvers in parallel
0.34/0.28	c parse instance...
0.71/0.46	c solve instance...
0.71/0.50	o 0 
0.71/0.51	o 136 
1.06/0.52	o 151 
1.06/0.52	o 171 
1.06/0.53	o 176 
1.06/0.53	o 612 
1.06/0.55	o 624 
1.06/0.55	o 635 
1.06/0.55	o 649 
1.06/0.55	o 656 
1.06/0.55	o 660 
1.06/0.56	o 667 
1.06/0.56	o 674 
1.06/0.58	o 678 
1.06/0.58	o 706 
1.06/0.58	o 712 
1.06/0.58	o 723 
1.06/0.59	o 726 
1.06/0.60	o 737 
1.06/0.60	o 867 
1.42/0.62	o 869 
1.42/0.64	o 889 
1.42/0.65	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (33/37)
1.42/0.65		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
1.42/0.65		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
1.42/0.65		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
1.42/0.65		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
1.42/0.65		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
1.42/0.65	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (33/37)
1.42/0.65		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
1.42/0.65		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
1.42/0.65		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
1.42/0.65		at org.chocosolver.solver.Solver.repair(Solver.java:443)
1.42/0.65		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
1.42/0.65		at org.chocosolver.solver.Solver.solve(Solver.java:262)
1.42/0.65		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
1.42/0.65		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
1.42/0.65		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
1.42/0.65		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
1.42/0.65		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
1.42/0.65		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
1.42/0.65		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
1.42/0.65		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
1.42/0.65		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
1.42/0.65		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
1.42/0.65	o 957 
1.42/0.65	o 966 
1.42/0.66	o 1001 
1.42/0.67	o 1034 
1.42/0.68	o 1102 
2.01/0.74	o 1103 
2.01/0.76	o 1124 
2.01/0.77	o 1163 
2.01/0.79	o 1185 
2.01/0.79	o 1210 
2.01/0.80	o 1213 
2.66/0.81	o 1224 
2.66/0.81	o 1265 
2.66/0.84	o 1291 
2.66/0.85	o 1303 
2.66/0.90	o 1319 
3.36/0.90	o 1356 
3.36/0.92	o 1378 
3.36/0.93	o 1387 
3.36/0.99	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (33/37)
3.36/0.99		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
3.36/0.99		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
3.36/0.99		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
3.36/0.99		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
3.36/0.99		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
3.36/0.99	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (33/37)
3.36/0.99		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
3.36/0.99		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
3.36/0.99		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
3.36/0.99		at org.chocosolver.solver.Solver.repair(Solver.java:443)
3.36/0.99		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
3.36/0.99		at org.chocosolver.solver.Solver.solve(Solver.java:262)
3.36/0.99		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
3.36/0.99		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
3.36/0.99		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
3.36/0.99		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
3.36/0.99		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
3.36/0.99		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
3.36/0.99		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
3.36/0.99		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
3.36/0.99		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
3.36/0.99		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
3.36/0.99	o 1419 
4.08/1.08	o 1424 
4.86/1.17	o 1429 
213.20/57.67	s OPTIMUM FOUND
213.20/57.67	v <instantiation>
213.20/57.67	v 	<list>x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] x[27] x[28] x[29] x[30] x[31] x[32] x[33] x[34] x[35] x[36] x[37] x[38] x[39] x[40] x[41] x[42] x[43] x[44] x[45] x[46] x[47] x[48] x[49] </list>
213.20/57.67	v 	<values>1 0 0 1 1 0 1 0 1 0 1 1 1 0 0 0 0 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 1 1 1 </values>
213.20/57.67	v </instantiation>

Verifier Data

OK	1429

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 (14564 MiB free)
  memory of node 1: 16384 MiB (15636 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4393805-1568433828/watcher-4393805-1568433828 -o /tmp/evaluation-result-4393805-1568433828/solver-4393805-1568433828 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node117-1568427144-15778 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1024135601 HOME/instance-4393805-1568433828.xml 

running on 8 cores: 0,2,4,6,1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 20160 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 20190 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 31744000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 31795200 KiB
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
solver pid=25789, runsolver pid=25786
Current StackSize limit: 8192 KiB


[startup+0.100143 s]*
/proc/loadavg: 7.10 5.74 4.14 3/212 25810
/proc/meminfo: memFree=30910412/32770624 swapFree=66947792/67108860
[pid=25789] ppid=25786 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25789/stat : 25789 (xcsp3-exec) S 25786 25789 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419324761 115843072 364 33554432000 4194304 5098028 140725431441488 140725431439592 140168433058428 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 23302144 140725431448437 140725431448681 140725431448681 140725431451594 0
/proc/25789/statm: 28282 364 305 221 0 87 0
[pid=25791] ppid=25789 vsize=28227388 memory=28760 CPUtime=0.13 cores=0-7
/proc/25791/stat : 25791 (java) S 25789 25789 15751 0 -1 1077944320 5692 0 0 0 11 2 0 0 20 0 20 0 419324762 28904845312 7190 33554432000 4194304 4196468 140734865032736 140734865015280 140331770986231 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
/proc/25791/statm: 7056847 7190 3112 1 0 7019032 0
[pid=25791/tid=25792] ppid=25789 vsize=28227388 memory=8317482817917895235 CPUtime=0.09 cores=0-7
/proc/25791/task/25792/stat : 25792 (java) R 25789 25789 15751 0 -1 4202560 3599 0 0 0 8 1 0 0 20 0 20 0 419324762 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331775222312 140331755066718 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25793] ppid=25789 vsize=28227388 memory=4872558044660077418 CPUtime=0 cores=0-7
/proc/25791/task/25793/stat : 25793 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331690838288 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25794] ppid=25789 vsize=28227388 memory=140086315501184 CPUtime=0 cores=0-7
/proc/25791/task/25794/stat : 25794 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331689785744 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25795] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25795/stat : 25795 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331688733200 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25796] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25796/stat : 25796 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331687680656 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25797] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25797/stat : 25797 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331686628112 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25798] ppid=25789 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25791/task/25798/stat : 25798 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331685575568 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25799] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25799/stat : 25799 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331684523024 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25800] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25800/stat : 25800 (java) S 25789 25789 15751 0 -1 1077944384 4 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 7190 33554432000 4194304 4196468 140734865032736 140331683470480 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25801] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25801/stat : 25801 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324764 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330886330352 140331770997378 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25802] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25802/stat : 25802 (java) S 25789 25789 15751 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419324765 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330885276576 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25803] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25803/stat : 25803 (java) S 25789 25789 15751 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419324765 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330884223984 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25804] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25804/stat : 25804 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324767 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330883172560 140331771004827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25805] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25805/stat : 25805 (java) S 25789 25789 15751 0 -1 1077944384 309 0 0 0 0 0 0 0 20 0 20 0 419324767 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330882120176 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25806] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25806/stat : 25806 (java) S 25789 25789 15751 0 -1 1077944384 123 0 0 0 0 0 0 0 20 0 20 0 419324767 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330881067632 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25807] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25807/stat : 25807 (java) S 25789 25789 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419324767 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330880015088 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25808] ppid=25789 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/25791/task/25808/stat : 25808 (java) S 25789 25789 15751 0 -1 1077944384 348 0 0 0 2 0 0 0 20 0 20 0 419324767 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330878962544 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25809] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25809/stat : 25809 (java) S 25789 25789 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419324768 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330877909216 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25810] ppid=25789 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25791/task/25810/stat : 25810 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324768 28904845312 7190 33554432000 4194304 4196468 140734865032736 140330876856752 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 30216 KiB

[startup+0.210477 s]*
/proc/loadavg: 7.10 5.74 4.14 2/212 25810
/proc/meminfo: memFree=30899100/32770624 swapFree=66947792/67108860
[pid=25789] ppid=25786 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25789/stat : 25789 (xcsp3-exec) S 25786 25789 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419324761 115843072 364 33554432000 4194304 5098028 140725431441488 140725431439592 140168433058428 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 23302144 140725431448437 140725431448681 140725431448681 140725431451594 0
/proc/25789/statm: 28282 364 305 221 0 87 0
[pid=25791] ppid=25789 vsize=28227388 memory=40908 CPUtime=0.34 cores=0-7
/proc/25791/stat : 25791 (java) S 25789 25789 15751 0 -1 1077944320 9547 0 0 0 30 4 0 0 20 0 20 0 419324762 28904845312 10227 33554432000 4194304 4196468 140734865032736 140734865015280 140331770986231 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
/proc/25791/statm: 7056847 10227 3269 1 0 7019032 0
[pid=25791/tid=25792] ppid=25789 vsize=28227388 memory=8318255677412212789 CPUtime=0.19 cores=0-7
/proc/25791/task/25792/stat : 25792 (java) R 25789 25789 15751 0 -1 4202560 6638 0 0 0 17 2 0 0 20 0 20 0 419324762 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331775218144 140331770998166 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25793] ppid=25789 vsize=28227388 memory=328 CPUtime=0 cores=0-7
/proc/25791/task/25793/stat : 25793 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331690838288 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25794] ppid=25789 vsize=28227388 memory=140086318467069 CPUtime=0 cores=0-7
/proc/25791/task/25794/stat : 25794 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331689785744 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25795] ppid=25789 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25791/task/25795/stat : 25795 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331688733200 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25796] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25796/stat : 25796 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331687680656 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25797] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25797/stat : 25797 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331686628112 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25798] ppid=25789 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25791/task/25798/stat : 25798 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331685575568 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25799] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25799/stat : 25799 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331684523024 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25800] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25800/stat : 25800 (java) S 25789 25789 15751 0 -1 1077944384 4 0 0 0 0 0 0 0 20 0 20 0 419324763 28904845312 10227 33554432000 4194304 4196468 140734865032736 140331683470480 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25801] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25801/stat : 25801 (java) S 25789 25789 15751 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 20 0 419324764 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330886330352 140331770997378 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25802] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25802/stat : 25802 (java) S 25789 25789 15751 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419324765 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330885276576 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25803] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25803/stat : 25803 (java) S 25789 25789 15751 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419324765 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330884223984 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25804] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25804/stat : 25804 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324767 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330883172560 140331771004827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25805] ppid=25789 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/25791/task/25805/stat : 25805 (java) S 25789 25789 15751 0 -1 1077944384 636 0 0 0 1 0 0 0 20 0 20 0 419324767 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330882120176 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25806] ppid=25789 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/25791/task/25806/stat : 25806 (java) S 25789 25789 15751 0 -1 1077944384 187 0 0 0 1 0 0 0 20 0 20 0 419324767 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330881067632 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25807] ppid=25789 vsize=28227388 memory=-1 CPUtime=0.01 cores=0-7
/proc/25791/task/25807/stat : 25807 (java) S 25789 25789 15751 0 -1 1077944384 50 0 0 0 1 0 0 0 20 0 20 0 419324767 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330880015088 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25808] ppid=25789 vsize=28227388 memory=-1 CPUtime=0.08 cores=0-7
/proc/25791/task/25808/stat : 25808 (java) R 25789 25789 15751 0 -1 4202560 722 0 0 0 8 0 0 0 20 0 20 0 419324767 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330878962544 140331763227621 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25809] ppid=25789 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25809/stat : 25809 (java) S 25789 25789 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419324768 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330877909216 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25810] ppid=25789 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25791/task/25810/stat : 25810 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324768 28904845312 10227 33554432000 4194304 4196468 140734865032736 140330876856752 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 42364 KiB

[startup+0.310292 s]*
/proc/loadavg: 7.10 5.74 4.14 6/212 25810
/proc/meminfo: memFree=30891220/32770624 swapFree=66947792/67108860
[pid=25789] ppid=25786 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25789/stat : 25789 (xcsp3-exec) S 25786 25789 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419324761 115843072 364 33554432000 4194304 5098028 140725431441488 140725431439592 140168433058428 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 23302144 140725431448437 140725431448681 140725431448681 140725431451594 0
/proc/25789/statm: 28282 364 305 221 0 87 0
[pid=25791] ppid=25789 vsize=28231644 memory=50108 CPUtime=0.53 cores=0-7
/proc/25791/stat : 25791 (java) S 25789 25789 15751 0 -1 1077944320 10903 0 0 0 48 5 0 0 20 0 20 0 419324762 28909203456 12527 33554432000 4194304 4196468 140734865032736 140734865015280 140331770986231 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
/proc/25791/statm: 7057911 12527 3361 1 0 7019032 0
[pid=25791/tid=25792] ppid=25789 vsize=28231644 memory=8317482817917895235 CPUtime=0.29 cores=0-7
/proc/25791/task/25792/stat : 25792 (java) R 25789 25789 15751 0 -1 4202560 7806 0 0 0 26 3 0 0 20 0 20 0 419324762 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331775217344 140331755066718 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25793] ppid=25789 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25793/stat : 25793 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331690838288 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25794] ppid=25789 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25794/stat : 25794 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331689785744 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25795] ppid=25789 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25795/stat : 25795 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331688733200 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25796] ppid=25789 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25796/stat : 25796 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331687680656 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25797] ppid=25789 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25797/stat : 25797 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331686628112 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25798] ppid=25789 vsize=28231644 memory=140086196923055 CPUtime=0 cores=0-7
/proc/25791/task/25798/stat : 25798 (java) S 25789 25789 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419324763 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331685575568 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25799] ppid=25789 vsize=28231644 memory=140086196925360 CPUtime=0 cores=0-7
/proc/25791/task/25799/stat : 25799 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324763 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331684523024 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25800] ppid=25789 vsize=28231644 memory=140086196927664 CPUtime=0 cores=0-7
/proc/25791/task/25800/stat : 25800 (java) S 25789 25789 15751 0 -1 1077944384 4 0 0 0 0 0 0 0 20 0 20 0 419324763 28909203456 12527 33554432000 4194304 4196468 140734865032736 140331683470480 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25801] ppid=25789 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25801/stat : 25801 (java) S 25789 25789 15751 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 20 0 419324764 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330886330352 140331770997378 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25802] ppid=25789 vsize=28231644 memory=280172393869200 CPUtime=0 cores=0-7
/proc/25791/task/25802/stat : 25802 (java) S 25789 25789 15751 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419324765 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330885276576 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25803] ppid=25789 vsize=28231644 memory=280172393866896 CPUtime=0 cores=0-7
/proc/25791/task/25803/stat : 25803 (java) S 25789 25789 15751 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419324765 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330884223984 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25804] ppid=25789 vsize=28231644 memory=280172393873808 CPUtime=0 cores=0-7
/proc/25791/task/25804/stat : 25804 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324767 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330883172560 140331771004827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25805] ppid=25789 vsize=28231644 memory=280172393815088 CPUtime=0.03 cores=0-7
/proc/25791/task/25805/stat : 25805 (java) R 25789 25789 15751 0 -1 4202560 727 0 0 0 3 0 0 0 20 0 20 0 419324767 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330882110560 140331752504587 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25806] ppid=25789 vsize=28231644 memory=280172393887632 CPUtime=0.02 cores=0-7
/proc/25791/task/25806/stat : 25806 (java) S 25789 25789 15751 0 -1 1077944384 202 0 0 0 2 0 0 0 20 0 20 0 419324767 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330881067632 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25807] ppid=25789 vsize=28231644 memory=280172393894544 CPUtime=0.02 cores=0-7
/proc/25791/task/25807/stat : 25807 (java) S 25789 25789 15751 0 -1 1077944384 50 0 0 0 2 0 0 0 20 0 20 0 419324767 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330880015088 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25808] ppid=25789 vsize=28231644 memory=280172393892240 CPUtime=0.12 cores=0-7
/proc/25791/task/25808/stat : 25808 (java) S 25789 25789 15751 0 -1 1077944384 813 0 0 0 12 0 0 0 20 0 20 0 419324767 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330878962544 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25809] ppid=25789 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25809/stat : 25809 (java) S 25789 25789 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419324768 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330877909216 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25810] ppid=25789 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/25791/task/25810/stat : 25810 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419324768 28909203456 12527 33554432000 4194304 4196468 140734865032736 140330876856752 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51564 KiB

[startup+0.700979 s]
/proc/loadavg: 7.10 5.74 4.14 4/213 25819
/proc/meminfo: memFree=30853612/32770624 swapFree=66947792/67108860
[pid=25789] ppid=25786 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25789/stat : 25789 (xcsp3-exec) S 25786 25789 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419324761 115843072 364 33554432000 4194304 5098028 140725431441488 140725431439592 140168433058428 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 23302144 140725431448437 140725431448681 140725431448681 140725431451594 0
/proc/25789/statm: 28282 364 305 221 0 87 0
[pid=25791] ppid=25789 vsize=28899408 memory=192108 CPUtime=2.01 cores=0-7
/proc/25791/stat : 25791 (java) S 25789 25789 15751 0 -1 1077944320 18994 0 0 0 188 13 0 0 20 0 28 0 419324762 29592993792 48027 33554432000 4194304 4196468 140734865032736 140734865015280 140331770986231 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
/proc/25791/statm: 7224852 48027 3478 1 0 7185954 0
[pid=25791/tid=25792] ppid=25789 vsize=28899408 memory=0 CPUtime=0.48 cores=0-7
/proc/25791/task/25792/stat : 25792 (java) S 25789 25789 15751 0 -1 1077944384 9158 0 0 0 44 4 0 0 20 0 28 0 419324762 29592993792 48027 33554432000 4194304 4196468 140734865032736 140331775227008 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25793] ppid=25789 vsize=28899408 memory=140086197134192 CPUtime=0 cores=0-7
/proc/25791/task/25793/stat : 25793 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 419324763 29592993792 48027 33554432000 4194304 4196468 140734865032736 140331690838288 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25794] ppid=25789 vsize=28899408 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25794/stat : 25794 (java) S 25789 25789 15751 0 -1 1077944384 13 0 0 0 0 0 0 0 20 0 28 0 419324763 29592993792 48027 33554432000 4194304 4196468 140734865032736 140331689785744 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25795] ppid=25789 vsize=28899408 memory=0 CPUtime=0 cores=0-7
/proc/25791/task/25795/stat : 25795 (java) S 25789 25789 15751 0 -1 1077944384 11 0 0 0 0 0 0 0 20 0 28 0 419324763 29592993792 48027 33554432000 4194304 4196468 140734865032736 140331688733200 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0

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

[pid=25791/tid=26164] ppid=25789 vsize=28901456 memory=0 CPUtime=54.64 cores=0-7
/proc/25791/task/26164/stat : 26164 (java) R 25789 25789 15751 0 -1 4202560 2831 0 0 0 5452 12 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329872695272 140331371521288 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26165] ppid=25789 vsize=28901456 memory=303430223234596890 CPUtime=20.82 cores=0-7
/proc/25791/task/26165/stat : 26165 (java) S 25789 25789 15751 0 -1 1077944384 1570 0 0 0 2063 19 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329879016592 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26166] ppid=25789 vsize=28901456 memory=301741416391115062 CPUtime=20.27 cores=0-7
/proc/25791/task/26166/stat : 26166 (java) S 25789 25789 15751 0 -1 1077944384 240 0 0 0 2022 5 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329875858704 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26167] ppid=25789 vsize=28901456 memory=15534115864709562 CPUtime=20.6 cores=0-7
/proc/25791/task/26167/stat : 26167 (java) S 25789 25789 15751 0 -1 1077944384 1407 0 0 0 2038 22 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329876911504 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26168] ppid=25789 vsize=28901456 memory=6944613755328037012 CPUtime=20.4 cores=0-7
/proc/25791/task/26168/stat : 26168 (java) S 25789 25789 15751 0 -1 1077944384 1680 0 0 0 2021 19 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329877964304 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26169] ppid=25789 vsize=28901456 memory=6944613755328037012 CPUtime=20.73 cores=0-7
/proc/25791/task/26169/stat : 26169 (java) S 25789 25789 15751 0 -1 1077944384 2343 0 0 0 2038 35 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329870594704 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
Current children cumulated CPU time: 212.4 s
Current children cumulated vsize: 29014584 KiB
Current children cumulated memory: 3517260 KiB

[startup+57.201 s]
/proc/loadavg: 4.54 5.40 4.13 2/220 26172
/proc/meminfo: memFree=27418156/32770624 swapFree=66947792/67108860
[pid=25789] ppid=25786 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25789/stat : 25789 (xcsp3-exec) S 25786 25789 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419324761 115843072 364 33554432000 4194304 5098028 140725431441488 140725431439592 140168433058428 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 23302144 140725431448437 140725431448681 140725431448681 140725431451594 0
/proc/25789/statm: 28282 364 305 221 0 87 0
[pid=25791] ppid=25789 vsize=28901456 memory=3515804 CPUtime=212.8 cores=0-7
/proc/25791/stat : 25791 (java) S 25789 25789 15751 0 -1 1077944320 78340 0 0 0 21069 211 0 0 20 0 28 0 419324762 29595090944 878951 33554432000 4194304 4196468 140734865032736 140734865015280 140331770986231 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
/proc/25791/statm: 7225364 878951 3527 1 0 7186466 0
[pid=25791/tid=25792] ppid=25789 vsize=28901456 memory=3515804 CPUtime=0.48 cores=0-7
/proc/25791/task/25792/stat : 25792 (java) S 25789 25789 15751 0 -1 1077944384 9158 0 0 0 44 4 0 0 20 0 28 0 419324762 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331775227008 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25793] ppid=25789 vsize=28901456 memory=6791534058613427641 CPUtime=0.15 cores=0-7
/proc/25791/task/25793/stat : 25793 (java) S 25789 25789 15751 0 -1 1077944384 233 0 0 0 9 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331690838288 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25794] ppid=25789 vsize=28901456 memory=0 CPUtime=0.16 cores=0-7
/proc/25791/task/25794/stat : 25794 (java) S 25789 25789 15751 0 -1 1077944384 222 0 0 0 10 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331689785744 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25795] ppid=25789 vsize=28901456 memory=6655300316396806240 CPUtime=0.16 cores=0-7
/proc/25791/task/25795/stat : 25795 (java) S 25789 25789 15751 0 -1 1077944384 950 0 0 0 10 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331688733200 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25796] ppid=25789 vsize=28901456 memory=6944656575208382560 CPUtime=0.17 cores=0-7
/proc/25791/task/25796/stat : 25796 (java) S 25789 25789 15751 0 -1 1077944384 244 0 0 0 10 7 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331687680656 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25797] ppid=25789 vsize=28901456 memory=6944656592455097440 CPUtime=0.15 cores=0-7
/proc/25791/task/25797/stat : 25797 (java) S 25789 25789 15751 0 -1 1077944384 217 0 0 0 10 5 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331686628112 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25798] ppid=25789 vsize=28901456 memory=6656426216303648864 CPUtime=0.16 cores=0-7
/proc/25791/task/25798/stat : 25798 (java) S 25789 25789 15751 0 -1 1077944384 652 0 0 0 10 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331685575568 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25799] ppid=25789 vsize=28901456 memory=6943526294502006880 CPUtime=0.16 cores=0-7
/proc/25791/task/25799/stat : 25799 (java) S 25789 25789 15751 0 -1 1077944384 684 0 0 0 10 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331684523024 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25800] ppid=25789 vsize=28901456 memory=6944656592455359580 CPUtime=0.17 cores=0-7
/proc/25791/task/25800/stat : 25800 (java) S 25789 25789 15751 0 -1 1077944384 216 0 0 0 10 7 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331683470480 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25801] ppid=25789 vsize=28901456 memory=6944652177228980320 CPUtime=0.02 cores=0-7
/proc/25791/task/25801/stat : 25801 (java) S 25789 25789 15751 0 -1 1077944384 2767 0 0 0 2 0 0 0 20 0 28 0 419324764 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330886330352 140331770997378 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25802] ppid=25789 vsize=28901456 memory=6656426216303648864 CPUtime=0 cores=0-7
/proc/25791/task/25802/stat : 25802 (java) S 25789 25789 15751 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 28 0 419324765 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330885276640 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25803] ppid=25789 vsize=28901456 memory=6944652177228980320 CPUtime=0 cores=0-7
/proc/25791/task/25803/stat : 25803 (java) S 25789 25789 15751 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 28 0 419324765 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330884224000 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25804] ppid=25789 vsize=28901456 memory=6944652177228980320 CPUtime=0 cores=0-7
/proc/25791/task/25804/stat : 25804 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330883172560 140331771004827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25805] ppid=25789 vsize=28901456 memory=0 CPUtime=2.85 cores=0-7
/proc/25791/task/25805/stat : 25805 (java) S 25789 25789 15751 0 -1 1077944384 12625 0 0 0 281 4 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330882120176 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25806] ppid=25789 vsize=28901456 memory=140086198239201 CPUtime=3.01 cores=0-7
/proc/25791/task/25806/stat : 25806 (java) S 25789 25789 15751 0 -1 1077944384 9691 0 0 0 298 3 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330881067632 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25807] ppid=25789 vsize=28901456 memory=6791534058613427641 CPUtime=3.17 cores=0-7
/proc/25791/task/25807/stat : 25807 (java) S 25789 25789 15751 0 -1 1077944384 13002 0 0 0 313 4 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330880015088 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25808] ppid=25789 vsize=28901456 memory=4872558044660077418 CPUtime=0.82 cores=0-7
/proc/25791/task/25808/stat : 25808 (java) S 25789 25789 15751 0 -1 1077944384 7062 0 0 0 80 2 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330878962544 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25809] ppid=25789 vsize=28901456 memory=500 CPUtime=0 cores=0-7
/proc/25791/task/25809/stat : 25809 (java) S 25789 25789 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 419324768 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330877909216 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25810] ppid=25789 vsize=28901456 memory=1556 CPUtime=0.02 cores=0-7
/proc/25791/task/25810/stat : 25810 (java) S 25789 25789 15751 0 -1 1077944384 1455 0 0 0 0 2 0 0 20 0 28 0 419324768 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330876856752 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26162] ppid=25789 vsize=28901456 memory=924 CPUtime=20.23 cores=0-7
/proc/25791/task/26162/stat : 26162 (java) S 25789 25789 15751 0 -1 1077944384 1057 0 0 0 2018 5 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329874804128 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26163] ppid=25789 vsize=28901456 memory=1672 CPUtime=20.17 cores=0-7
/proc/25791/task/26163/stat : 26163 (java) S 25789 25789 15751 0 -1 1077944384 252 0 0 0 2010 7 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329880069008 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26164] ppid=25789 vsize=28901456 memory=796 CPUtime=55.04 cores=0-7
/proc/25791/task/26164/stat : 26164 (java) R 25789 25789 15751 0 -1 4202560 2831 0 0 0 5492 12 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329872695272 140331362624676 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26165] ppid=25789 vsize=28901456 memory=1436 CPUtime=20.82 cores=0-7
/proc/25791/task/26165/stat : 26165 (java) S 25789 25789 15751 0 -1 1077944384 1570 0 0 0 2063 19 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329879016592 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26166] ppid=25789 vsize=28901456 memory=1984 CPUtime=20.27 cores=0-7
/proc/25791/task/26166/stat : 26166 (java) S 25789 25789 15751 0 -1 1077944384 240 0 0 0 2022 5 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329875858704 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26167] ppid=25789 vsize=28901456 memory=2424 CPUtime=20.6 cores=0-7
/proc/25791/task/26167/stat : 26167 (java) S 25789 25789 15751 0 -1 1077944384 1407 0 0 0 2038 22 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329876911504 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26168] ppid=25789 vsize=28901456 memory=1764 CPUtime=20.4 cores=0-7
/proc/25791/task/26168/stat : 26168 (java) S 25789 25789 15751 0 -1 1077944384 1680 0 0 0 2021 19 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329877964304 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26169] ppid=25789 vsize=28901456 memory=111636 CPUtime=20.73 cores=0-7
/proc/25791/task/26169/stat : 26169 (java) S 25789 25789 15751 0 -1 1077944384 2343 0 0 0 2038 35 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329870594704 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
Current children cumulated CPU time: 212.8 s
Current children cumulated vsize: 29014584 KiB
Current children cumulated memory: 3517260 KiB

[startup+57.6011 s]
/proc/loadavg: 4.54 5.40 4.13 2/220 26172
/proc/meminfo: memFree=27418156/32770624 swapFree=66947792/67108860
[pid=25789] ppid=25786 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25789/stat : 25789 (xcsp3-exec) S 25786 25789 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419324761 115843072 364 33554432000 4194304 5098028 140725431441488 140725431439592 140168433058428 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 23302144 140725431448437 140725431448681 140725431448681 140725431451594 0
/proc/25789/statm: 28282 364 305 221 0 87 0
[pid=25791] ppid=25789 vsize=28901456 memory=3515804 CPUtime=213.2 cores=0-7
/proc/25791/stat : 25791 (java) S 25789 25789 15751 0 -1 1077944320 78456 0 0 0 21109 211 0 0 20 0 28 0 419324762 29595090944 878951 33554432000 4194304 4196468 140734865032736 140734865015280 140331770986231 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
/proc/25791/statm: 7225364 878951 3527 1 0 7186466 0
[pid=25791/tid=25792] ppid=25789 vsize=28901456 memory=4136 CPUtime=0.48 cores=0-7
/proc/25791/task/25792/stat : 25792 (java) S 25789 25789 15751 0 -1 1077944384 9158 0 0 0 44 4 0 0 20 0 28 0 419324762 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331775227008 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25793] ppid=25789 vsize=28901456 memory=6791534058613427641 CPUtime=0.15 cores=0-7
/proc/25791/task/25793/stat : 25793 (java) S 25789 25789 15751 0 -1 1077944384 233 0 0 0 9 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331690838288 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25794] ppid=25789 vsize=28901456 memory=2832 CPUtime=0.16 cores=0-7
/proc/25791/task/25794/stat : 25794 (java) S 25789 25789 15751 0 -1 1077944384 222 0 0 0 10 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331689785744 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25795] ppid=25789 vsize=28901456 memory=1720 CPUtime=0.16 cores=0-7
/proc/25791/task/25795/stat : 25795 (java) S 25789 25789 15751 0 -1 1077944384 950 0 0 0 10 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331688733200 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25796] ppid=25789 vsize=28901456 memory=1200 CPUtime=0.17 cores=0-7
/proc/25791/task/25796/stat : 25796 (java) S 25789 25789 15751 0 -1 1077944384 244 0 0 0 10 7 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331687680656 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25797] ppid=25789 vsize=28901456 memory=5964 CPUtime=0.15 cores=0-7
/proc/25791/task/25797/stat : 25797 (java) S 25789 25789 15751 0 -1 1077944384 217 0 0 0 10 5 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331686628112 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25798] ppid=25789 vsize=28901456 memory=14012 CPUtime=0.16 cores=0-7
/proc/25791/task/25798/stat : 25798 (java) S 25789 25789 15751 0 -1 1077944384 652 0 0 0 10 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331685575568 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25799] ppid=25789 vsize=28901456 memory=3515784 CPUtime=0.16 cores=0-7
/proc/25791/task/25799/stat : 25799 (java) S 25789 25789 15751 0 -1 1077944384 684 0 0 0 10 6 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331684523024 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25800] ppid=25789 vsize=28901456 memory=6944656575208382560 CPUtime=0.17 cores=0-7
/proc/25791/task/25800/stat : 25800 (java) S 25789 25789 15751 0 -1 1077944384 216 0 0 0 10 7 0 0 20 0 28 0 419324763 29595090944 878951 33554432000 4194304 4196468 140734865032736 140331683470480 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25801] ppid=25789 vsize=28901456 memory=113 CPUtime=0.02 cores=0-7
/proc/25791/task/25801/stat : 25801 (java) S 25789 25789 15751 0 -1 1077944384 2767 0 0 0 2 0 0 0 20 0 28 0 419324764 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330886330352 140331770997378 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25802] ppid=25789 vsize=28901456 memory=6944656592455359580 CPUtime=0 cores=0-7
/proc/25791/task/25802/stat : 25802 (java) S 25789 25789 15751 0 -1 1077944384 39 0 0 0 0 0 0 0 20 0 28 0 419324765 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330885276640 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25803] ppid=25789 vsize=28901456 memory=6944656575208382560 CPUtime=0 cores=0-7
/proc/25791/task/25803/stat : 25803 (java) S 25789 25789 15751 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 28 0 419324765 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330884224000 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25804] ppid=25789 vsize=28901456 memory=6944656575208382560 CPUtime=0 cores=0-7
/proc/25791/task/25804/stat : 25804 (java) S 25789 25789 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330883172560 140331771004827 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25805] ppid=25789 vsize=28901456 memory=2120 CPUtime=2.85 cores=0-7
/proc/25791/task/25805/stat : 25805 (java) S 25789 25789 15751 0 -1 1077944384 12625 0 0 0 281 4 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330882120176 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25806] ppid=25789 vsize=28901456 memory=500 CPUtime=3.01 cores=0-7
/proc/25791/task/25806/stat : 25806 (java) S 25789 25789 15751 0 -1 1077944384 9691 0 0 0 298 3 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330881067632 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25807] ppid=25789 vsize=28901456 memory=1556 CPUtime=3.17 cores=0-7
/proc/25791/task/25807/stat : 25807 (java) S 25789 25789 15751 0 -1 1077944384 13002 0 0 0 313 4 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330880015088 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25808] ppid=25789 vsize=28901456 memory=924 CPUtime=0.82 cores=0-7
/proc/25791/task/25808/stat : 25808 (java) S 25789 25789 15751 0 -1 1077944384 7062 0 0 0 80 2 0 0 20 0 28 0 419324767 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330878962544 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25809] ppid=25789 vsize=28901456 memory=1672 CPUtime=0 cores=0-7
/proc/25791/task/25809/stat : 25809 (java) S 25789 25789 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 419324768 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330877909216 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=25810] ppid=25789 vsize=28901456 memory=796 CPUtime=0.02 cores=0-7
/proc/25791/task/25810/stat : 25810 (java) S 25789 25789 15751 0 -1 1077944384 1486 0 0 0 0 2 0 0 20 0 28 0 419324768 29595090944 878951 33554432000 4194304 4196468 140734865032736 140330876856752 140331770997378 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26162] ppid=25789 vsize=28901456 memory=1436 CPUtime=20.23 cores=0-7
/proc/25791/task/26162/stat : 26162 (java) S 25789 25789 15751 0 -1 1077944384 1057 0 0 0 2018 5 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329874804128 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26163] ppid=25789 vsize=28901456 memory=6791534058613427641 CPUtime=20.17 cores=0-7
/proc/25791/task/26163/stat : 26163 (java) S 25789 25789 15751 0 -1 1077944384 252 0 0 0 2010 7 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329880069008 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26164] ppid=25789 vsize=28901456 memory=-7522837415797432224 CPUtime=55.44 cores=0-7
/proc/25791/task/26164/stat : 26164 (java) R 25789 25789 15751 0 -1 4202560 2916 0 0 0 5532 12 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329872695272 140331371521264 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26165] ppid=25789 vsize=28901456 memory=7667769123439800426 CPUtime=20.82 cores=0-7
/proc/25791/task/26165/stat : 26165 (java) S 25789 25789 15751 0 -1 1077944384 1570 0 0 0 2063 19 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329879016592 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26166] ppid=25789 vsize=28901456 memory=7013062643969123904 CPUtime=20.27 cores=0-7
/proc/25791/task/26166/stat : 26166 (java) S 25789 25789 15751 0 -1 1077944384 240 0 0 0 2022 5 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329875858704 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26167] ppid=25789 vsize=28901456 memory=7883662475049720174 CPUtime=20.6 cores=0-7
/proc/25791/task/26167/stat : 26167 (java) S 25789 25789 15751 0 -1 1077944384 1407 0 0 0 2038 22 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329876911504 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26168] ppid=25789 vsize=28901456 memory=6944656592455360569 CPUtime=20.4 cores=0-7
/proc/25791/task/26168/stat : 26168 (java) S 25789 25789 15751 0 -1 1077944384 1680 0 0 0 2021 19 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329877964304 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
[pid=25791/tid=26169] ppid=25789 vsize=28901456 memory=-7737605734073691286 CPUtime=20.73 cores=0-7
/proc/25791/task/26169/stat : 26169 (java) S 25789 25789 15751 0 -1 1077944384 2343 0 0 0 2038 35 0 0 20 0 28 0 419324879 29595090944 878951 33554432000 4194304 4196468 140734865032736 140329870594704 140331770996437 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 1 0 0 6293624 6294260 28758016 140734865036266 140734865036438 140734865036438 140734865039311 0
Current children cumulated CPU time: 213.2 s
Current children cumulated vsize: 29014584 KiB
Current children cumulated memory: 3517260 KiB

[startup+57.7012 s]
/proc/loadavg: 4.54 5.40 4.13 2/220 26172
/proc/meminfo: memFree=27418156/32770624 swapFree=66947792/67108860
[pid=25789] ppid=25786 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25789/stat : 25789 (xcsp3-exec) S 25786 25789 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419324761 115843072 364 33554432000 4194304 5098028 140725431441488 140725431439592 140168433058428 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 23302144 140725431448437 140725431448681 140725431448681 140725431451594 0
/proc/25789/statm: 28282 364 305 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 113128 KiB
Current children cumulated memory: 1456 KiB

Child status: 0
Real time (s): 57.7083
CPU time (s): 213.379
CPU user time (s): 211.233
CPU system time (s): 2.14697
CPU usage (%): 369.756
Max. virtual memory (cumulated for all children) (KiB): 29016976
Max. memory (cumulated for all children) (KiB): 3517260

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 211.233
system time used= 2.14697
maximum resident set size= 3515912
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 83706
page faults= 0
swaps= 0
block input operations= 0
block output operations= 232
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 68108
involuntary context switches= 2239


# summary of solver processes directly reported to runsolver:
#   pid: 25789
#   total CPU time (s): 213.379
#   total CPU user time (s): 211.233
#   total CPU system time (s): 2.14697

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.5071 second user time and 0.674754 second system time

The end

Launcher Data

Begin job on node117 at 2019-09-14 06:03:06
IDJOB=4393805
IDBENCH=133446
IDSOLVER=2841
FILE ID=node117/4393805-1568433828
RUNJOBID= node117-1568427144-15778
PBS_JOBID= 21702295
Free space on /tmp= 61184 MiB

SOLVER NAME= choco-solver parallel 2019-06-14
BENCH NAME= XCSP17/Knapsack/Knapsack-m1-s50/Knapsack-50-200-16.xml
COMMAND LINE= xcsp3-exec -dir DIR -tl TIMEOUT -p NBCORE -ml 24000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4393805-1568433828/watcher-4393805-1568433828 -o /tmp/evaluation-result-4393805-1568433828/solver-4393805-1568433828 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node117-1568427144-15778 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 1024135601 HOME/instance-4393805-1568433828.xml

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

MD5SUM BENCH= e3af77ac2ce2de59a61fc382fed7941a
RANDOM SEED=1024135601

node117.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.75
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.75
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.75
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.75
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:        30925996 kB
MemAvailable:   31861976 kB
Buffers:          148900 kB
Cached:          1053672 kB
SwapCached:        51712 kB
Active:           777708 kB
Inactive:         480192 kB
Active(anon):      20592 kB
Inactive(anon):    59356 kB
Active(file):     757116 kB
Inactive(file):   420836 kB
Unevictable:      110108 kB
Mlocked:          110108 kB
SwapTotal:      67108860 kB
SwapFree:       66947792 kB
Dirty:             26132 kB
Writeback:             0 kB
AnonPages:        286672 kB
Mapped:            33596 kB
Shmem:             15712 kB
Slab:             176600 kB
SReclaimable:     147724 kB
SUnreclaim:        28876 kB
KernelStack:        3888 kB
PageTables:         5404 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     498668 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    239616 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      118144 kB
DirectMap2M:    33427456 kB

Free space on /tmp at the end= 61160 MiB
End job on node117 at 2019-09-14 06:04:04