Trace number 4394406

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 parallelOPT1070 59.7832 8.18164

General information on the benchmark

NameKnapsack/Knapsack-m1-s50/
Knapsack-50-200-07.xml
MD5SUMc416c7749524dd4f925e3cf47c007fb7
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark1070
Best CPU time to get the best result obtained on this benchmark21.6695
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-4394406-1568433819.xml"  -tl '20160s' -p 8
0.13/0.18	c Choco e747e1e
0.13/0.18	c [HOME/instance-4394406-1568433819.xml, -tl, 20160s, -p, 8]
0.33/0.22	c 8 solvers in parallel
0.33/0.28	c parse instance...
0.71/0.47	c solve instance...
0.71/0.50	o 0 
0.71/0.51	o 56 
0.71/0.51	o 217 
1.03/0.52	o 244 
1.03/0.52	o 333 
1.03/0.54	o 677 
1.03/0.57	o 684 
1.03/0.57	o 687 
1.03/0.58	o 714 
1.03/0.59	o 755 
1.03/0.60	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (39/44)
1.03/0.60		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
1.03/0.60		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
1.03/0.60		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
1.03/0.60		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
1.03/0.60		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
1.03/0.60	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (39/44)
1.03/0.60		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
1.03/0.60		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
1.03/0.60		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
1.03/0.60		at org.chocosolver.solver.Solver.repair(Solver.java:443)
1.03/0.60		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
1.03/0.60		at org.chocosolver.solver.Solver.solve(Solver.java:262)
1.03/0.60		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
1.03/0.60		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
1.03/0.60		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
1.03/0.60		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
1.03/0.60		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
1.03/0.60		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
1.03/0.60		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
1.03/0.60		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
1.03/0.60		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
1.03/0.60		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
1.03/0.60	o 756 
1.42/0.61	o 769 
1.42/0.62	o 811 
1.42/0.63	o 822 
1.42/0.64	o 873 
1.42/0.67	o 901 
2.03/0.70	o 907 
2.03/0.71	o 916 
2.03/0.72	o 928 
2.03/0.75	o 930 
2.03/0.76	o 943 
2.03/0.77	o 944 
2.03/0.77	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (36/38)
2.03/0.77		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
2.03/0.77		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
2.03/0.77		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
2.03/0.77		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
2.03/0.77		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
2.03/0.77	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (36/38)
2.03/0.77		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
2.03/0.77		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
2.03/0.77		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
2.03/0.77		at org.chocosolver.solver.Solver.repair(Solver.java:443)
2.03/0.77		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
2.03/0.77		at org.chocosolver.solver.Solver.solve(Solver.java:262)
2.03/0.77		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
2.03/0.77		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
2.03/0.77		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
2.03/0.77		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
2.03/0.77		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
2.03/0.77		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
2.03/0.77		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
2.03/0.77		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
2.03/0.77		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
2.03/0.77		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
2.03/0.77	o 965 
2.70/0.80	o 966 
2.70/0.82	o 972 
2.70/0.84	o 976 
2.70/0.85	o 981 
2.70/0.86	o 985 
2.70/0.86	o 1043 
2.70/0.88	o 1045 
3.37/0.95	o 1054 
4.16/1.05	o 1069 
4.16/1.09	o 1070 
59.40/8.15	s OPTIMUM FOUND
59.40/8.15	v <instantiation>
59.40/8.15	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>
59.40/8.15	v 	<values>0 1 0 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 1 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 </values>
59.40/8.15	v </instantiation>

Verifier Data

OK	1070

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4394406-1568433819/watcher-4394406-1568433819 -o /tmp/evaluation-result-4394406-1568433819/solver-4394406-1568433819 -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 1248425735 HOME/instance-4394406-1568433819.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=25431, runsolver pid=25428
Current StackSize limit: 8192 KiB


[startup+0.100124 s]*
/proc/loadavg: 6.85 5.67 4.11 2/213 25452
/proc/meminfo: memFree=30910812/32770624 swapFree=66947792/67108860
[pid=25431] ppid=25428 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25431/stat : 25431 (xcsp3-exec) S 25428 25431 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419323874 115843072 364 33554432000 4194304 5098028 140722704791856 140722704789960 140401023476348 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15556608 140722704794485 140722704794729 140722704794729 140722704797642 0
/proc/25431/statm: 28282 364 305 221 0 87 0
[pid=25433] ppid=25431 vsize=28227388 memory=29100 CPUtime=0.13 cores=0-7
/proc/25433/stat : 25433 (java) S 25431 25431 15751 0 -1 1077944320 5762 0 0 0 12 1 0 0 20 0 20 0 419323874 28904845312 7275 33554432000 4194304 4196468 140731855074624 140731855057168 140702262488823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
/proc/25433/statm: 7056847 7275 3121 1 0 7019032 0
[pid=25433/tid=25434] ppid=25431 vsize=28227388 memory=8317482817917895235 CPUtime=0.08 cores=0-7
/proc/25433/task/25434/stat : 25434 (java) R 25431 25431 15751 0 -1 4202560 3646 0 0 0 8 0 0 0 20 0 20 0 419323874 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702266728064 140702262510749 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25435] ppid=25431 vsize=28227388 memory=4872558044660077418 CPUtime=0 cores=0-7
/proc/25433/task/25435/stat : 25435 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702215109648 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25436] ppid=25431 vsize=28227388 memory=139694290138752 CPUtime=0 cores=0-7
/proc/25433/task/25436/stat : 25436 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702214057104 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25437] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25437/stat : 25437 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702213004048 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25438] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25438/stat : 25438 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702211951504 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25439] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25439/stat : 25439 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702210898448 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25440] ppid=25431 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25433/task/25440/stat : 25440 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702209845904 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25441] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25441/stat : 25441 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702208792848 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25442] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25442/stat : 25442 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 7275 33554432000 4194304 4196468 140731855074624 140702207740304 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25443] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25443/stat : 25443 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323877 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700390894320 140702262499970 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25444] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25444/stat : 25444 (java) S 25431 25431 15751 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419323877 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700389840544 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25445] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25445/stat : 25445 (java) S 25431 25431 15751 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419323877 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700388787440 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25446] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25446/stat : 25446 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700387736016 140702262507419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25447] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25447/stat : 25447 (java) R 25431 25431 15751 0 -1 1077944384 301 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700386683120 140702262499970 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25448] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25448/stat : 25448 (java) S 25431 25431 15751 0 -1 1077944384 121 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700385630576 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25449] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25449/stat : 25449 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700384577520 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25450] ppid=25431 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/25433/task/25450/stat : 25450 (java) R 25431 25431 15751 0 -1 4202560 377 0 0 0 2 0 0 0 20 0 20 0 419323880 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700383524976 140702262510170 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25451] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25451/stat : 25451 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700382473184 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25452] ppid=25431 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25433/task/25452/stat : 25452 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 7275 33554432000 4194304 4196468 140731855074624 140700381420720 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 30556 KiB

[startup+0.210748 s]*
/proc/loadavg: 6.85 5.67 4.11 3/213 25452
/proc/meminfo: memFree=30897696/32770624 swapFree=66947792/67108860
[pid=25431] ppid=25428 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25431/stat : 25431 (xcsp3-exec) S 25428 25431 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419323874 115843072 364 33554432000 4194304 5098028 140722704791856 140722704789960 140401023476348 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15556608 140722704794485 140722704794729 140722704794729 140722704797642 0
/proc/25431/statm: 28282 364 305 221 0 87 0
[pid=25433] ppid=25431 vsize=28227388 memory=40988 CPUtime=0.33 cores=0-7
/proc/25433/stat : 25433 (java) S 25431 25431 15751 0 -1 1077944320 9510 0 0 0 31 2 0 0 20 0 20 0 419323874 28904845312 10247 33554432000 4194304 4196468 140731855074624 140731855057168 140702262488823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
/proc/25433/statm: 7056847 10247 3293 1 0 7019032 0
[pid=25433/tid=25434] ppid=25431 vsize=28227388 memory=8318255677412212789 CPUtime=0.2 cores=0-7
/proc/25433/task/25434/stat : 25434 (java) R 25431 25431 15751 0 -1 4202560 6632 0 0 0 18 2 0 0 20 0 20 0 419323874 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702266728496 140702243328325 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25435] ppid=25431 vsize=28227388 memory=328 CPUtime=0 cores=0-7
/proc/25433/task/25435/stat : 25435 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702215109648 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25436] ppid=25431 vsize=28227388 memory=139694293104637 CPUtime=0 cores=0-7
/proc/25433/task/25436/stat : 25436 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702214057104 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25437] ppid=25431 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25433/task/25437/stat : 25437 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702213004048 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25438] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25438/stat : 25438 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702211951504 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25439] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25439/stat : 25439 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702210898448 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25440] ppid=25431 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25433/task/25440/stat : 25440 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702209845904 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25441] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25441/stat : 25441 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702208792848 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25442] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25442/stat : 25442 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28904845312 10247 33554432000 4194304 4196468 140731855074624 140702207740304 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25443] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25443/stat : 25443 (java) S 25431 25431 15751 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 419323877 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700390894320 140702262499970 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25444] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25444/stat : 25444 (java) S 25431 25431 15751 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419323877 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700389840544 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25445] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25445/stat : 25445 (java) S 25431 25431 15751 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419323877 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700388787440 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25446] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25446/stat : 25446 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700387736016 140702262507419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25447] ppid=25431 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/25433/task/25447/stat : 25447 (java) R 25431 25431 15751 0 -1 1077944384 395 0 0 0 1 0 0 0 20 0 20 0 419323880 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700386683120 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25448] ppid=25431 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/25433/task/25448/stat : 25448 (java) S 25431 25431 15751 0 -1 1077944384 369 0 0 0 2 0 0 0 20 0 20 0 419323880 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700385630576 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25449] ppid=25431 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25433/task/25449/stat : 25449 (java) S 25431 25431 15751 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700384577520 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25450] ppid=25431 vsize=28227388 memory=-1 CPUtime=0.08 cores=0-7
/proc/25433/task/25450/stat : 25450 (java) R 25431 25431 15751 0 -1 4202560 781 0 0 0 8 0 0 0 20 0 20 0 419323880 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700383524976 140702254511766 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25451] ppid=25431 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25451/stat : 25451 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700382473184 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25452] ppid=25431 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/25433/task/25452/stat : 25452 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323880 28904845312 10247 33554432000 4194304 4196468 140731855074624 140700381420720 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
Current children cumulated CPU time: 0.33 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 42444 KiB

[startup+0.311176 s]*
/proc/loadavg: 6.85 5.67 4.11 3/213 25452
/proc/meminfo: memFree=30890300/32770624 swapFree=66947792/67108860
[pid=25431] ppid=25428 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25431/stat : 25431 (xcsp3-exec) S 25428 25431 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419323874 115843072 364 33554432000 4194304 5098028 140722704791856 140722704789960 140401023476348 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15556608 140722704794485 140722704794729 140722704794729 140722704797642 0
/proc/25431/statm: 28282 364 305 221 0 87 0
[pid=25433] ppid=25431 vsize=28231644 memory=50492 CPUtime=0.53 cores=0-7
/proc/25433/stat : 25433 (java) S 25431 25431 15751 0 -1 1077944320 10960 0 0 0 49 4 0 0 20 0 20 0 419323874 28909203456 12623 33554432000 4194304 4196468 140731855074624 140731855057168 140702262488823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
/proc/25433/statm: 7057911 12623 3353 1 0 7019032 0
[pid=25433/tid=25434] ppid=25431 vsize=28231644 memory=8317482817917895235 CPUtime=0.3 cores=0-7
/proc/25433/task/25434/stat : 25434 (java) R 25431 25431 15751 0 -1 4202560 7827 0 0 0 27 3 0 0 20 0 20 0 419323874 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702266719936 140702246569310 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25435] ppid=25431 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25435/stat : 25435 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702215109648 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25436] ppid=25431 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25436/stat : 25436 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419323875 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702214057104 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25437] ppid=25431 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25437/stat : 25437 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702213004048 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25438] ppid=25431 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25438/stat : 25438 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323875 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702211951504 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25439] ppid=25431 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25439/stat : 25439 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702210898448 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25440] ppid=25431 vsize=28231644 memory=139694146939567 CPUtime=0 cores=0-7
/proc/25433/task/25440/stat : 25440 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702209845904 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25441] ppid=25431 vsize=28231644 memory=139694146941872 CPUtime=0 cores=0-7
/proc/25433/task/25441/stat : 25441 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702208792848 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25442] ppid=25431 vsize=28231644 memory=139694146944176 CPUtime=0 cores=0-7
/proc/25433/task/25442/stat : 25442 (java) S 25431 25431 15751 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419323875 28909203456 12628 33554432000 4194304 4196468 140731855074624 140702207740304 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25443] ppid=25431 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25443/stat : 25443 (java) S 25431 25431 15751 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 419323877 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700390894320 140702262499970 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25444] ppid=25431 vsize=28231644 memory=279388293902224 CPUtime=0 cores=0-7
/proc/25433/task/25444/stat : 25444 (java) S 25431 25431 15751 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419323877 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700389840544 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25445] ppid=25431 vsize=28231644 memory=279388293899920 CPUtime=0 cores=0-7
/proc/25433/task/25445/stat : 25445 (java) S 25431 25431 15751 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419323877 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700388787440 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25446] ppid=25431 vsize=28231644 memory=279388293906832 CPUtime=0 cores=0-7
/proc/25433/task/25446/stat : 25446 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323880 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700387736016 140702262507419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25447] ppid=25431 vsize=28231644 memory=279388293848112 CPUtime=0.03 cores=0-7
/proc/25433/task/25447/stat : 25447 (java) S 25431 25431 15751 0 -1 1077944384 410 0 0 0 3 0 0 0 20 0 20 0 419323880 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700386683120 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25448] ppid=25431 vsize=28231644 memory=279388293920656 CPUtime=0.04 cores=0-7
/proc/25433/task/25448/stat : 25448 (java) R 25431 25431 15751 0 -1 4202560 484 0 0 0 4 0 0 0 20 0 20 0 419323880 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700385630672 140702244032999 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25449] ppid=25431 vsize=28231644 memory=279388293927568 CPUtime=0.01 cores=0-7
/proc/25433/task/25449/stat : 25449 (java) S 25431 25431 15751 0 -1 1077944384 36 0 0 0 1 0 0 0 20 0 20 0 419323880 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700384577520 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25450] ppid=25431 vsize=28231644 memory=279388293925264 CPUtime=0.12 cores=0-7
/proc/25433/task/25450/stat : 25450 (java) S 25431 25431 15751 0 -1 1077944384 893 0 0 0 12 0 0 0 20 0 20 0 419323880 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700383524976 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25451] ppid=25431 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25451/stat : 25451 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419323880 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700382473184 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25452] ppid=25431 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/25433/task/25452/stat : 25452 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419323880 28909203456 12628 33554432000 4194304 4196468 140731855074624 140700381420720 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51948 KiB

[startup+0.702453 s]
/proc/loadavg: 6.85 5.67 4.11 5/222 25469
/proc/meminfo: memFree=30842716/32770624 swapFree=66947792/67108860
[pid=25431] ppid=25428 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25431/stat : 25431 (xcsp3-exec) S 25428 25431 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419323874 115843072 364 33554432000 4194304 5098028 140722704791856 140722704789960 140401023476348 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15556608 140722704794485 140722704794729 140722704794729 140722704797642 0
/proc/25431/statm: 28282 364 305 221 0 87 0
[pid=25433] ppid=25431 vsize=28767308 memory=182444 CPUtime=2.03 cores=0-7
/proc/25433/stat : 25433 (java) S 25431 25431 15751 0 -1 1077944320 17690 0 0 0 194 9 0 0 20 0 28 0 419323874 29457723392 45611 33554432000 4194304 4196468 140731855074624 140731855057168 140702262488823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
/proc/25433/statm: 7191827 45611 3482 1 0 7152929 0
[pid=25433/tid=25434] ppid=25431 vsize=28767308 memory=0 CPUtime=0.48 cores=0-7
/proc/25433/task/25434/stat : 25434 (java) S 25431 25431 15751 0 -1 1077944384 9115 0 0 0 45 3 0 0 20 0 28 0 419323874 29457723392 45611 33554432000 4194304 4196468 140731855074624 140702266729600 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25435] ppid=25431 vsize=28767308 memory=139694147150704 CPUtime=0 cores=0-7
/proc/25433/task/25435/stat : 25435 (java) S 25431 25431 15751 0 -1 1077944384 15 0 0 0 0 0 0 0 20 0 28 0 419323875 29457723392 45611 33554432000 4194304 4196468 140731855074624 140702215109648 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25436] ppid=25431 vsize=28767308 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25436/stat : 25436 (java) S 25431 25431 15751 0 -1 1077944384 7 0 0 0 0 0 0 0 20 0 28 0 419323875 29457723392 45611 33554432000 4194304 4196468 140731855074624 140702214057104 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25437] ppid=25431 vsize=28767308 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25437/stat : 25437 (java) S 25431 25431 15751 0 -1 1077944384 4 0 0 0 0 0 0 0 20 0 28 0 419323875 29457723392 45611 33554432000 4194304 4196468 140731855074624 140702213004048 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0

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

[pid=25433/tid=25450] ppid=25431 vsize=28834892 memory=780 CPUtime=0.75 cores=0-7
/proc/25433/task/25450/stat : 25450 (java) S 25431 25431 15751 0 -1 1077944384 4192 0 0 0 74 1 0 0 20 0 28 0 419323880 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700383524976 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25451] ppid=25431 vsize=28834892 memory=2832 CPUtime=0 cores=0-7
/proc/25433/task/25451/stat : 25451 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 419323880 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700382473184 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25452] ppid=25431 vsize=28834892 memory=1720 CPUtime=0 cores=0-7
/proc/25433/task/25452/stat : 25452 (java) S 25431 25431 15751 0 -1 1077944384 62 0 0 0 0 0 0 0 20 0 28 0 419323880 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700381420720 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25716] ppid=25431 vsize=28834892 memory=1200 CPUtime=5.42 cores=0-7
/proc/25433/task/25716/stat : 25716 (java) R 25431 25431 15751 0 -1 4202560 387 0 0 0 541 1 0 0 20 0 28 0 419323984 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700055920032 140702262510170 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25717] ppid=25431 vsize=28834892 memory=5964 CPUtime=5.61 cores=0-7
/proc/25433/task/25717/stat : 25717 (java) R 25431 25431 15751 0 -1 4202560 68 0 0 0 560 1 0 0 20 0 28 0 419323984 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700062236800 140702262500758 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25718] ppid=25431 vsize=28834892 memory=14012 CPUtime=5.53 cores=0-7
/proc/25433/task/25718/stat : 25718 (java) R 25431 25431 15751 0 -1 4202560 1072 0 0 0 547 6 0 0 20 0 28 0 419323984 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700060131376 140701876412822 0 4 0 16800975 0 0 0 -1 7 0 0 2 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25719] ppid=25431 vsize=28834892 memory=10992 CPUtime=5.54 cores=0-7
/proc/25433/task/25719/stat : 25719 (java) R 25431 25431 15751 0 -1 4202560 354 0 0 0 551 3 0 0 20 0 28 0 419323984 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700063289216 140702247061133 0 4 0 16800975 0 0 0 -1 4 0 0 1 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25720] ppid=25431 vsize=28834892 memory=12024 CPUtime=5.53 cores=0-7
/proc/25433/task/25720/stat : 25720 (java) R 25431 25431 15751 0 -1 4202560 270 0 0 0 549 4 0 0 20 0 28 0 419323984 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700061184000 140702262500758 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25721] ppid=25431 vsize=28834892 memory=2120 CPUtime=5.42 cores=0-7
/proc/25433/task/25721/stat : 25721 (java) R 25431 25431 15751 0 -1 4202560 258 0 0 0 540 2 0 0 20 0 28 0 419323984 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700378668672 140702262500758 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25722] ppid=25431 vsize=28834892 memory=500 CPUtime=5 cores=0-7
/proc/25433/task/25722/stat : 25722 (java) R 25431 25431 15751 0 -1 4202560 90 0 0 0 499 1 0 0 20 0 28 0 419323984 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700056972960 140702262510170 0 4 0 16800975 0 0 0 -1 3 0 0 2 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25723] ppid=25431 vsize=28834892 memory=1556 CPUtime=5 cores=0-7
/proc/25433/task/25723/stat : 25723 (java) R 25431 25431 15751 0 -1 4202560 351 0 0 0 495 5 0 0 20 0 28 0 419323985 29526929408 303566 33554432000 4194304 4196468 140731855074624 140700059079040 140701878303813 0 4 0 16800975 0 0 0 -1 6 0 0 1 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
Current children cumulated CPU time: 55.48 s
Current children cumulated vsize: 28948020 KiB
Current children cumulated memory: 1215720 KiB

[startup+8.00445 s]*
/proc/loadavg: 7.10 5.74 4.14 9/220 25724
/proc/meminfo: memFree=29723772/32770624 swapFree=66947792/67108860
[pid=25431] ppid=25428 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25431/stat : 25431 (xcsp3-exec) S 25428 25431 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419323874 115843072 364 33554432000 4194304 5098028 140722704791856 140722704789960 140401023476348 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15556608 140722704794485 140722704794729 140722704794729 140722704797642 0
/proc/25431/statm: 28282 364 305 221 0 87 0
[pid=25433] ppid=25431 vsize=28834892 memory=1214312 CPUtime=58.69 cores=0-7
/proc/25433/stat : 25433 (java) S 25431 25431 15751 0 -1 1077944320 65702 0 0 0 5796 73 0 0 20 0 28 0 419323874 29526929408 303578 33554432000 4194304 4196468 140731855074624 140731855057168 140702262488823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
/proc/25433/statm: 7208723 303578 3520 1 0 7169825 0
[pid=25433/tid=25434] ppid=25431 vsize=28834892 memory=8317482817917895235 CPUtime=0.48 cores=0-7
/proc/25433/task/25434/stat : 25434 (java) S 25431 25431 15751 0 -1 1077944384 9116 0 0 0 45 3 0 0 20 0 28 0 419323874 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702266729600 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25435] ppid=25431 vsize=28834892 memory=4872558044660077418 CPUtime=0.05 cores=0-7
/proc/25433/task/25435/stat : 25435 (java) S 25431 25431 15751 0 -1 1077944384 122 0 0 0 4 1 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702215109648 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25436] ppid=25431 vsize=28834892 memory=-7751062316387021378 CPUtime=0.08 cores=0-7
/proc/25433/task/25436/stat : 25436 (java) S 25431 25431 15751 0 -1 1077944384 251 0 0 0 7 1 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702214057104 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25437] ppid=25431 vsize=28834892 memory=0 CPUtime=0.07 cores=0-7
/proc/25433/task/25437/stat : 25437 (java) S 25431 25431 15751 0 -1 1077944384 632 0 0 0 6 1 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702213004048 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25438] ppid=25431 vsize=28834892 memory=0 CPUtime=0.05 cores=0-7
/proc/25433/task/25438/stat : 25438 (java) S 25431 25431 15751 0 -1 1077944384 57 0 0 0 3 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702211951504 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25439] ppid=25431 vsize=28834892 memory=139698585106047 CPUtime=0.07 cores=0-7
/proc/25433/task/25439/stat : 25439 (java) S 25431 25431 15751 0 -1 1077944384 59 0 0 0 5 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702210898448 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25440] ppid=25431 vsize=28834892 memory=6944656575208382560 CPUtime=0.06 cores=0-7
/proc/25433/task/25440/stat : 25440 (java) S 25431 25431 15751 0 -1 1077944384 116 0 0 0 4 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702209845904 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25441] ppid=25431 vsize=28834892 memory=316941035152618857 CPUtime=0.09 cores=0-7
/proc/25433/task/25441/stat : 25441 (java) S 25431 25431 15751 0 -1 1077944384 86 0 0 0 7 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702208792848 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25442] ppid=25431 vsize=28834892 memory=4082082764776999456 CPUtime=0.1 cores=0-7
/proc/25433/task/25442/stat : 25442 (java) S 25431 25431 15751 0 -1 1077944384 162 0 0 0 8 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702207740304 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25443] ppid=25431 vsize=28834892 memory=7234563792693522279 CPUtime=0.01 cores=0-7
/proc/25433/task/25443/stat : 25443 (java) S 25431 25431 15751 0 -1 1077944384 1190 0 0 0 1 0 0 0 20 0 28 0 419323877 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700390894320 140702262499970 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25444] ppid=25431 vsize=28834892 memory=6944656592455360604 CPUtime=0 cores=0-7
/proc/25433/task/25444/stat : 25444 (java) S 25431 25431 15751 0 -1 1077944384 40 0 0 0 0 0 0 0 20 0 28 0 419323877 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700389840608 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25445] ppid=25431 vsize=28834892 memory=7381231995194798184 CPUtime=0 cores=0-7
/proc/25433/task/25445/stat : 25445 (java) S 25431 25431 15751 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 28 0 419323877 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700388787440 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25446] ppid=25431 vsize=28834892 memory=7590655979367786604 CPUtime=0 cores=0-7
/proc/25433/task/25446/stat : 25446 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700387736016 140702262507419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25447] ppid=25431 vsize=28834892 memory=7739264875342095209 CPUtime=2.92 cores=0-7
/proc/25433/task/25447/stat : 25447 (java) S 25431 25431 15751 0 -1 1077944384 11973 0 0 0 289 3 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700386683120 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25448] ppid=25431 vsize=28834892 memory=7812427491484128106 CPUtime=2.35 cores=0-7
/proc/25433/task/25448/stat : 25448 (java) S 25431 25431 15751 0 -1 1077944384 10168 0 0 0 233 2 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700385630576 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25449] ppid=25431 vsize=28834892 memory=7373946476333148822 CPUtime=2.79 cores=0-7
/proc/25433/task/25449/stat : 25449 (java) S 25431 25431 15751 0 -1 1077944384 18279 0 0 0 274 5 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700384577520 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25450] ppid=25431 vsize=28834892 memory=29946253283 CPUtime=0.75 cores=0-7
/proc/25433/task/25450/stat : 25450 (java) S 25431 25431 15751 0 -1 1077944384 4194 0 0 0 74 1 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700383524976 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25451] ppid=25431 vsize=28834892 memory=279388294174304 CPUtime=0 cores=0-7
/proc/25433/task/25451/stat : 25451 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700382473184 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25452] ppid=25431 vsize=28834892 memory=279388294197008 CPUtime=0 cores=0-7
/proc/25433/task/25452/stat : 25452 (java) S 25431 25431 15751 0 -1 1077944384 62 0 0 0 0 0 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700381420720 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25716] ppid=25431 vsize=28834892 memory=56 CPUtime=5.82 cores=0-7
/proc/25433/task/25716/stat : 25716 (java) R 25431 25431 15751 0 -1 4202560 389 0 0 0 581 1 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700055919936 140702262510170 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25717] ppid=25431 vsize=28834892 memory=7649399401444816177 CPUtime=6.01 cores=0-7
/proc/25433/task/25717/stat : 25717 (java) R 25431 25431 15751 0 -1 4202560 70 0 0 0 599 2 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700062236704 140702262500758 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25718] ppid=25431 vsize=28834892 memory=7649399358511920434 CPUtime=5.93 cores=0-7
/proc/25433/task/25718/stat : 25718 (java) R 25431 25431 15751 0 -1 4202560 1093 0 0 0 587 6 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700060131312 140701876412827 0 4 0 16800975 0 0 0 -1 7 0 0 2 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25719] ppid=25431 vsize=28834892 memory=7649399362806887730 CPUtime=5.95 cores=0-7
/proc/25433/task/25719/stat : 25719 (java) R 25431 25431 15751 0 -1 4202560 365 0 0 0 591 4 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700063289216 140702262500758 0 4 0 16800975 0 0 0 -1 0 0 0 1 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25720] ppid=25431 vsize=28834892 memory=6943526294502006880 CPUtime=5.94 cores=0-7
/proc/25433/task/25720/stat : 25720 (java) R 25431 25431 15751 0 -1 4202560 277 0 0 0 589 5 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700061184000 140701876090588 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25721] ppid=25431 vsize=28834892 memory=6944656592387989600 CPUtime=5.83 cores=0-7
/proc/25433/task/25721/stat : 25721 (java) R 25431 25431 15751 0 -1 4202560 265 0 0 0 580 3 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700378668672 140702262500758 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25722] ppid=25431 vsize=28834892 memory=7649399388509779250 CPUtime=5.41 cores=0-7
/proc/25433/task/25722/stat : 25722 (java) S 25431 25431 15751 0 -1 1077944384 108 0 0 0 539 2 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700056972960 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 2 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25723] ppid=25431 vsize=28834892 memory=7649399392804746546 CPUtime=5.41 cores=0-7
/proc/25433/task/25723/stat : 25723 (java) R 25431 25431 15751 0 -1 4202560 382 0 0 0 535 6 0 0 20 0 28 0 419323985 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700059079040 140701875856486 0 4 0 16800975 0 0 0 -1 4 0 0 1 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
Current children cumulated CPU time: 58.69 s
Current children cumulated vsize: 28948020 KiB
Current children cumulated memory: 1215768 KiB

[startup+8.11145 s]
/proc/loadavg: 7.10 5.74 4.14 9/220 25724
/proc/meminfo: memFree=29723772/32770624 swapFree=66947792/67108860
[pid=25431] ppid=25428 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/25431/stat : 25431 (xcsp3-exec) S 25428 25431 15751 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 419323874 115843072 364 33554432000 4194304 5098028 140722704791856 140722704789960 140401023476348 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 15556608 140722704794485 140722704794729 140722704794729 140722704797642 0
/proc/25431/statm: 28282 364 305 221 0 87 0
[pid=25433] ppid=25431 vsize=28834892 memory=1214312 CPUtime=59.4 cores=0-7
/proc/25433/stat : 25433 (java) S 25431 25431 15751 0 -1 1077944320 65745 0 0 0 5866 74 0 0 20 0 28 0 419323874 29526929408 303578 33554432000 4194304 4196468 140731855074624 140731855057168 140702262488823 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
/proc/25433/statm: 7208723 303578 3520 1 0 7169825 0
[pid=25433/tid=25434] ppid=25431 vsize=28834892 memory=1456 CPUtime=0.48 cores=0-7
/proc/25433/task/25434/stat : 25434 (java) S 25431 25431 15751 0 -1 1077944384 9116 0 0 0 45 3 0 0 20 0 28 0 419323874 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702266729600 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25435] ppid=25431 vsize=28834892 memory=1214312 CPUtime=0.05 cores=0-7
/proc/25433/task/25435/stat : 25435 (java) S 25431 25431 15751 0 -1 1077944384 122 0 0 0 4 1 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702215109648 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25436] ppid=25431 vsize=28834892 memory=0 CPUtime=0.08 cores=0-7
/proc/25433/task/25436/stat : 25436 (java) S 25431 25431 15751 0 -1 1077944384 251 0 0 0 7 1 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702214057104 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25437] ppid=25431 vsize=28834892 memory=0 CPUtime=0.07 cores=0-7
/proc/25433/task/25437/stat : 25437 (java) S 25431 25431 15751 0 -1 1077944384 632 0 0 0 6 1 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702213004048 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25438] ppid=25431 vsize=28834892 memory=0 CPUtime=0.05 cores=0-7
/proc/25433/task/25438/stat : 25438 (java) S 25431 25431 15751 0 -1 1077944384 57 0 0 0 3 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702211951504 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25439] ppid=25431 vsize=28834892 memory=0 CPUtime=0.07 cores=0-7
/proc/25433/task/25439/stat : 25439 (java) S 25431 25431 15751 0 -1 1077944384 59 0 0 0 5 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702210898448 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25440] ppid=25431 vsize=28834892 memory=0 CPUtime=0.06 cores=0-7
/proc/25433/task/25440/stat : 25440 (java) S 25431 25431 15751 0 -1 1077944384 116 0 0 0 4 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702209845904 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25441] ppid=25431 vsize=28834892 memory=1456 CPUtime=0.09 cores=0-7
/proc/25433/task/25441/stat : 25441 (java) S 25431 25431 15751 0 -1 1077944384 86 0 0 0 7 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702208792848 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25442] ppid=25431 vsize=28834892 memory=1181124 CPUtime=0.1 cores=0-7
/proc/25433/task/25442/stat : 25442 (java) S 25431 25431 15751 0 -1 1077944384 162 0 0 0 8 2 0 0 20 0 28 0 419323875 29526929408 303578 33554432000 4194304 4196468 140731855074624 140702207740304 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25443] ppid=25431 vsize=28834892 memory=2244 CPUtime=0.01 cores=0-7
/proc/25433/task/25443/stat : 25443 (java) S 25431 25431 15751 0 -1 1077944384 1190 0 0 0 1 0 0 0 20 0 28 0 419323877 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700390894320 140702262499970 0 0 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25444] ppid=25431 vsize=28834892 memory=7454130749351154278 CPUtime=0 cores=0-7
/proc/25433/task/25444/stat : 25444 (java) S 25431 25431 15751 0 -1 1077944384 40 0 0 0 0 0 0 0 20 0 28 0 419323877 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700389840608 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25445] ppid=25431 vsize=28834892 memory=1181032 CPUtime=0 cores=0-7
/proc/25433/task/25445/stat : 25445 (java) S 25431 25431 15751 0 -1 1077944384 47 0 0 0 0 0 0 0 20 0 28 0 419323877 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700388787440 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25446] ppid=25431 vsize=28834892 memory=0 CPUtime=0 cores=0-7
/proc/25433/task/25446/stat : 25446 (java) S 25431 25431 15751 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700387736016 140702262507419 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25447] ppid=25431 vsize=28834892 memory=0 CPUtime=2.93 cores=0-7
/proc/25433/task/25447/stat : 25447 (java) S 25431 25431 15751 0 -1 1077944384 11985 0 0 0 290 3 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700386683120 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25448] ppid=25431 vsize=28834892 memory=1456 CPUtime=2.35 cores=0-7
/proc/25433/task/25448/stat : 25448 (java) S 25431 25431 15751 0 -1 1077944384 10168 0 0 0 233 2 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700385630576 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25449] ppid=25431 vsize=28834892 memory=963948 CPUtime=2.79 cores=0-7
/proc/25433/task/25449/stat : 25449 (java) S 25431 25431 15751 0 -1 1077944384 18279 0 0 0 274 5 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700384577520 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25450] ppid=25431 vsize=28834892 memory=1181160 CPUtime=0.75 cores=0-7
/proc/25433/task/25450/stat : 25450 (java) S 25431 25431 15751 0 -1 1077944384 4200 0 0 0 74 1 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700383524976 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25451] ppid=25431 vsize=28834892 memory=4963 CPUtime=0 cores=0-7
/proc/25433/task/25451/stat : 25451 (java) S 25431 25431 15751 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700382473184 140702262499029 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25452] ppid=25431 vsize=28834892 memory=992 CPUtime=0 cores=0-7
/proc/25433/task/25452/stat : 25452 (java) S 25431 25431 15751 0 -1 1077944384 62 0 0 0 0 0 0 0 20 0 28 0 419323880 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700381420720 140702262499970 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25716] ppid=25431 vsize=28834892 memory=2044 CPUtime=5.92 cores=0-7
/proc/25433/task/25716/stat : 25716 (java) R 25431 25431 15751 0 -1 4202560 389 0 0 0 591 1 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700055919936 140702262500758 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25717] ppid=25431 vsize=28834892 memory=1428 CPUtime=6.08 cores=0-7
/proc/25433/task/25717/stat : 25717 (java) R 25431 25431 15751 0 -1 4202560 70 0 0 0 606 2 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700062236704 140702262510170 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25718] ppid=25431 vsize=28834892 memory=1214264 CPUtime=6.03 cores=0-7
/proc/25433/task/25718/stat : 25718 (java) R 25431 25431 15751 0 -1 4202560 1103 0 0 0 597 6 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700060127912 140701877690579 0 4 0 16800975 0 0 0 -1 7 0 0 2 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25719] ppid=25431 vsize=28834892 memory=279388294864832 CPUtime=6.04 cores=0-7
/proc/25433/task/25719/stat : 25719 (java) R 25431 25431 15751 0 -1 4202560 368 0 0 0 600 4 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700063289216 140702262510170 0 4 0 16800975 0 0 0 -1 4 0 0 1 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25720] ppid=25431 vsize=28834892 memory=1456 CPUtime=6.03 cores=0-7
/proc/25433/task/25720/stat : 25720 (java) R 25431 25431 15751 0 -1 4202560 280 0 0 0 598 5 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700061184000 140702262510170 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25721] ppid=25431 vsize=28834892 memory=1181124 CPUtime=5.9 cores=0-7
/proc/25433/task/25721/stat : 25721 (java) R 25431 25431 15751 0 -1 4202560 266 0 0 0 587 3 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700378668672 140702262510170 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25722] ppid=25431 vsize=28834892 memory=0 CPUtime=5.49 cores=0-7
/proc/25433/task/25722/stat : 25722 (java) R 25431 25431 15751 0 -1 4202560 109 0 0 0 547 2 0 0 20 0 28 0 419323984 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700056973056 140702262500758 0 4 0 16800975 0 0 0 -1 5 0 0 2 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
[pid=25433/tid=25723] ppid=25431 vsize=28834892 memory=0 CPUtime=5.5 cores=0-7
/proc/25433/task/25723/stat : 25723 (java) R 25431 25431 15751 0 -1 4202560 389 0 0 0 544 6 0 0 20 0 28 0 419323985 29526929408 303578 33554432000 4194304 4196468 140731855074624 140700059078944 140701875856527 0 4 0 16800975 0 0 0 -1 6 0 0 1 0 0 6293624 6294260 7081984 140731855078378 140731855078550 140731855078550 140731855081423 0
Current children cumulated CPU time: 59.4 s
Current children cumulated vsize: 28948020 KiB
Current children cumulated memory: 1215768 KiB

Child status: 0
Real time (s): 8.18164
CPU time (s): 59.7832
CPU user time (s): 59.0136
CPU system time (s): 0.769629
CPU usage (%): 730.699
Max. virtual memory (cumulated for all children) (KiB): 28950684
Max. memory (cumulated for all children) (KiB): 1215768

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 59.0136
system time used= 0.769629
maximum resident set size= 1214436
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 66560
page faults= 0
swaps= 0
block input operations= 0
block output operations= 128
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 30525
involuntary context switches= 1666


# summary of solver processes directly reported to runsolver:
#   pid: 25431
#   total CPU time (s): 59.7832
#   total CPU user time (s): 59.0136
#   total CPU system time (s): 0.769629

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.098449 second user time and 0.139235 second system time

The end

Launcher Data

Begin job on node117 at 2019-09-14 06:02:57
IDJOB=4394406
IDBENCH=133445
IDSOLVER=2843
FILE ID=node117/4394406-1568433819
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-07.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-4394406-1568433819/watcher-4394406-1568433819 -o /tmp/evaluation-result-4394406-1568433819/solver-4394406-1568433819 -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 1248425735 HOME/instance-4394406-1568433819.xml

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

MD5SUM BENCH= c416c7749524dd4f925e3cf47c007fb7
RANDOM SEED=1248425735

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:        30926940 kB
MemAvailable:   31862444 kB
Buffers:          148848 kB
Cached:          1053080 kB
SwapCached:        51712 kB
Active:           776312 kB
Inactive:         480008 kB
Active(anon):      19488 kB
Inactive(anon):    59356 kB
Active(file):     756824 kB
Inactive(file):   420652 kB
Unevictable:      110108 kB
Mlocked:          110108 kB
SwapTotal:      67108860 kB
SwapFree:       66947792 kB
Dirty:             26016 kB
Writeback:             0 kB
AnonPages:        118144 kB
Mapped:            33132 kB
Shmem:             15712 kB
Slab:             176392 kB
SReclaimable:     147728 kB
SUnreclaim:        28664 kB
KernelStack:        3760 kB
PageTables:         5172 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:     71680 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:03:05