Trace number 4394518

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 parallelOPT93 3458.69 443.313

General information on the benchmark

NameTravellingSalesman/TravellingSalesman-m1-n15/
TravellingSalesman-15-30-00.xml
MD5SUM0f9f8d62bc132272af22ef8ddad99d7d
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark93
Best CPU time to get the best result obtained on this benchmark108.124
Satisfiable
(Un)Satisfiability was proved
Number of variables30
Number of constraints16
Number of domains2
Minimum domain size15
Maximum domain size31
Distribution of domain sizes[{"size":15,"count":15},{"size":31,"count":15}]
Minimum variable degree2
Maximum variable degree3
Distribution of variable degrees[{"degree":2,"count":15},{"degree":3,"count":15}]
Minimum constraint arity3
Maximum constraint arity15
Distribution of constraint arities[{"arity":3,"count":15},{"arity":15,"count":1}]
Number of extensional constraints15
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":15},{"type":"allDifferent","count":1}]
Optimization problemYES
Type of objectivemin 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-4394518-1568439212.xml"  -tl '20160s' -p 8
0.13/0.18	c Choco e747e1e
0.13/0.18	c [HOME/instance-4394518-1568439212.xml, -tl, 20160s, -p, 8]
0.34/0.22	c 8 solvers in parallel
0.34/0.28	c parse instance...
1.08/0.56	c solve instance...
1.48/0.67	o 158 
2.05/0.70	o 141 
2.05/0.71	o 131 
2.05/0.71	o 130 
2.05/0.74	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (116/118)
2.05/0.74		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
2.05/0.74		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
2.05/0.74		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
2.05/0.74		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
2.05/0.74		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
2.05/0.74	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (116/118)
2.05/0.74		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
2.05/0.74		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
2.05/0.74		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
2.05/0.74		at org.chocosolver.solver.Solver.repair(Solver.java:443)
2.05/0.74		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
2.05/0.74		at org.chocosolver.solver.Solver.solve(Solver.java:262)
2.05/0.74		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
2.05/0.74		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
2.05/0.74		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
2.05/0.74		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
2.05/0.74		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
2.05/0.74		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
2.05/0.74		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
2.05/0.74		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
2.05/0.74		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
2.05/0.74		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
2.05/0.74	o 124 
2.05/0.75	o 123 
2.05/0.77	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (117/119)
2.05/0.77		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
2.05/0.77		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
2.05/0.77		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
2.05/0.77		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
2.05/0.77		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
2.05/0.77	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (117/119)
2.05/0.77		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
2.05/0.77		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
2.05/0.77		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
2.05/0.77		at org.chocosolver.solver.Solver.repair(Solver.java:443)
2.05/0.77		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
2.05/0.77		at org.chocosolver.solver.Solver.solve(Solver.java:262)
2.05/0.77		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
2.05/0.77		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
2.05/0.77		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
2.05/0.77		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
2.05/0.77		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
2.05/0.77		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
2.05/0.77		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
2.05/0.77		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
2.05/0.77		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
2.05/0.77		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
2.05/0.77	o 120 
2.05/0.78	o 119 
2.62/0.86	o 118 
2.62/0.89	o 116 
3.38/0.91	o 115 
3.38/0.91	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (47/50)
3.38/0.91		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
3.38/0.91		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
3.38/0.91		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
3.38/0.91		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
3.38/0.91		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
3.38/0.91	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (47/50)
3.38/0.91		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
3.38/0.91		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
3.38/0.91		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
3.38/0.91		at org.chocosolver.solver.Solver.repair(Solver.java:443)
3.38/0.91		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
3.38/0.91		at org.chocosolver.solver.Solver.solve(Solver.java:262)
3.38/0.91		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
3.38/0.91		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
3.38/0.91		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
3.38/0.91		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
3.38/0.91		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
3.38/0.91		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
3.38/0.91		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
3.38/0.91		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
3.38/0.91		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
3.38/0.91		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
3.38/0.91	o 111 
3.38/0.95	o 110 
3.38/0.99	o 109 
4.91/1.12	o 105 
5.54/1.21	o 104 
7.88/1.51	o 99 
18.97/3.38	o 95 
19.16/3.40	o 93 
3458.56/443.29	s OPTIMUM FOUND
3458.56/443.29	v <instantiation>
3458.56/443.29	v 	<list>c[0] c[1] c[2] c[3] c[4] c[5] c[6] c[7] c[8] c[9] c[10] c[11] c[12] c[13] c[14] d[0] d[1] d[2] d[3] d[4] d[5] d[6] d[7] d[8] d[9] d[10] d[11] d[12] d[13] d[14] </list>
3458.56/443.29	v 	<values>7 9 8 10 14 13 12 11 6 4 1 0 2 3 5 4 9 5 7 15 8 1 8 8 4 7 2 2 5 8 </values>
3458.56/443.29	v </instantiation>

Verifier Data

OK	93

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4394518-1568439212/watcher-4394518-1568439212 -o /tmp/evaluation-result-4394518-1568439212/solver-4394518-1568439212 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node148-1568432499-11955 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 246123442 HOME/instance-4394518-1568439212.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=16338, runsolver pid=16335
Current StackSize limit: 8192 KiB


[startup+0.100088 s]*
/proc/loadavg: 2.59 5.36 6.88 2/212 16359
/proc/meminfo: memFree=31509144/32770624 swapFree=67004232/67108860
[pid=16338] ppid=16335 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/16338/stat : 16338 (xcsp3-exec) S 16335 16338 11928 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420082767 115843072 364 33554432000 4194304 5098028 140735480469552 140735480467656 140092581139068 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26562560 140735480472438 140735480472681 140735480472681 140735480475594 0
/proc/16338/statm: 28282 364 305 221 0 87 0
[pid=16340] ppid=16338 vsize=28227388 memory=28916 CPUtime=0.13 cores=0-7
/proc/16340/stat : 16340 (java) S 16338 16338 11928 0 -1 1077944320 5706 0 0 0 11 2 0 0 20 0 20 0 420082767 28904845312 7229 33554432000 4194304 4196468 140725376488736 140725376471280 140324615659255 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
/proc/16340/statm: 7056847 7229 3122 1 0 7019032 0
[pid=16340/tid=16341] ppid=16338 vsize=28227388 memory=576460756329955445 CPUtime=0.09 cores=0-7
/proc/16340/task/16341/stat : 16341 (java) R 16338 16338 11928 0 -1 4202560 3612 0 0 0 8 1 0 0 20 0 20 0 420082768 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324619887056 140324615671190 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16342] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16342/stat : 16342 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324166818448 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16343] ppid=16338 vsize=28227388 memory=140206074385048 CPUtime=0 cores=0-7
/proc/16340/task/16343/stat : 16343 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324165765648 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16344] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16344/stat : 16344 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324164712848 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16345] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16345/stat : 16345 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324163660048 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16346] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16346/stat : 16346 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324162608272 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16347] ppid=16338 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/16340/task/16347/stat : 16347 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324161555472 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16348] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16348/stat : 16348 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324160502672 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16349] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16349/stat : 16349 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 7229 33554432000 4194304 4196468 140725376488736 140324159449872 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16350] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16350/stat : 16350 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082770 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323213752688 140324615670402 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16351] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16351/stat : 16351 (java) S 16338 16338 11928 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 420082771 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323212698656 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16352] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16352/stat : 16352 (java) S 16338 16338 11928 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 420082771 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323211645808 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16353] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16353/stat : 16353 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082773 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323210594128 140324615677851 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16354] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16354/stat : 16354 (java) S 16338 16338 11928 0 -1 1077944384 308 0 0 0 0 0 0 0 20 0 20 0 420082773 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323209542512 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16355] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16355/stat : 16355 (java) S 16338 16338 11928 0 -1 1077944384 123 0 0 0 0 0 0 0 20 0 20 0 420082773 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323208489712 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16356] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16356/stat : 16356 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420082773 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323207436912 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16357] ppid=16338 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/16340/task/16357/stat : 16357 (java) S 16338 16338 11928 0 -1 1077944384 348 0 0 0 2 0 0 0 20 0 20 0 420082773 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323206384112 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16358] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16358/stat : 16358 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420082773 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323205331552 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16359] ppid=16338 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/16340/task/16359/stat : 16359 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082774 28904845312 7229 33554432000 4194304 4196468 140725376488736 140323204278832 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 30372 KiB

[startup+0.210474 s]*
/proc/loadavg: 2.59 5.36 6.88 2/212 16359
/proc/meminfo: memFree=31496512/32770624 swapFree=67004232/67108860
[pid=16338] ppid=16335 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/16338/stat : 16338 (xcsp3-exec) S 16335 16338 11928 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420082767 115843072 364 33554432000 4194304 5098028 140735480469552 140735480467656 140092581139068 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26562560 140735480472438 140735480472681 140735480472681 140735480475594 0
/proc/16338/statm: 28282 364 305 221 0 87 0
[pid=16340] ppid=16338 vsize=28227388 memory=40968 CPUtime=0.34 cores=0-7
/proc/16340/stat : 16340 (java) S 16338 16338 11928 0 -1 1077944320 9495 0 0 0 30 4 0 0 20 0 20 0 420082767 28904845312 10242 33554432000 4194304 4196468 140725376488736 140725376471280 140324615659255 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
/proc/16340/statm: 7056847 10242 3270 1 0 7019032 0
[pid=16340/tid=16341] ppid=16338 vsize=28227388 memory=8316850467074736180 CPUtime=0.19 cores=0-7
/proc/16340/task/16341/stat : 16341 (java) R 16338 16338 11928 0 -1 4202560 6615 0 0 0 17 2 0 0 20 0 20 0 420082768 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324619898928 140324615671190 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16342] ppid=16338 vsize=28227388 memory=14965 CPUtime=0 cores=0-7
/proc/16340/task/16342/stat : 16342 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324166818448 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16343] ppid=16338 vsize=28227388 memory=288370582226081408 CPUtime=0 cores=0-7
/proc/16340/task/16343/stat : 16343 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324165765648 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16344] ppid=16338 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/16340/task/16344/stat : 16344 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324164712848 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16345] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16345/stat : 16345 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324163660048 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16346] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16346/stat : 16346 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324162608272 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16347] ppid=16338 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/16340/task/16347/stat : 16347 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324161555472 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16348] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16348/stat : 16348 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324160502672 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16349] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16349/stat : 16349 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28904845312 10242 33554432000 4194304 4196468 140725376488736 140324159449872 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16350] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16350/stat : 16350 (java) S 16338 16338 11928 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 420082770 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323213752688 140324615670402 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16351] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16351/stat : 16351 (java) S 16338 16338 11928 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 420082771 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323212698656 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16352] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16352/stat : 16352 (java) S 16338 16338 11928 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 420082771 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323211645808 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16353] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16353/stat : 16353 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082773 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323210594128 140324615677851 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16354] ppid=16338 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/16340/task/16354/stat : 16354 (java) S 16338 16338 11928 0 -1 1077944384 441 0 0 0 1 0 0 0 20 0 20 0 420082773 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323209542512 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16355] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16355/stat : 16355 (java) S 16338 16338 11928 0 -1 1077944384 160 0 0 0 0 0 0 0 20 0 20 0 420082773 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323208489712 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16356] ppid=16338 vsize=28227388 memory=-1 CPUtime=0.01 cores=0-7
/proc/16340/task/16356/stat : 16356 (java) S 16338 16338 11928 0 -1 1077944384 223 0 0 0 1 0 0 0 20 0 20 0 420082773 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323207436912 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16357] ppid=16338 vsize=28227388 memory=-1 CPUtime=0.08 cores=0-7
/proc/16340/task/16357/stat : 16357 (java) R 16338 16338 11928 0 -1 4202560 742 0 0 0 8 0 0 0 20 0 20 0 420082773 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323206384112 140324599739742 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16358] ppid=16338 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16358/stat : 16358 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420082773 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323205331552 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16359] ppid=16338 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/16340/task/16359/stat : 16359 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082774 28904845312 10242 33554432000 4194304 4196468 140725376488736 140323204278832 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 42424 KiB

[startup+0.310291 s]*
/proc/loadavg: 2.59 5.36 6.88 4/212 16359
/proc/meminfo: memFree=31488992/32770624 swapFree=67004232/67108860
[pid=16338] ppid=16335 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/16338/stat : 16338 (xcsp3-exec) S 16335 16338 11928 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420082767 115843072 364 33554432000 4194304 5098028 140735480469552 140735480467656 140092581139068 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26562560 140735480472438 140735480472681 140735480472681 140735480475594 0
/proc/16338/statm: 28282 364 305 221 0 87 0
[pid=16340] ppid=16338 vsize=28231644 memory=50028 CPUtime=0.51 cores=0-7
/proc/16340/stat : 16340 (java) S 16338 16338 11928 0 -1 1077944320 10823 0 0 0 46 5 0 0 20 0 20 0 420082767 28909203456 12507 33554432000 4194304 4196468 140725376488736 140725376471280 140324615659255 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
/proc/16340/statm: 7057911 12507 3349 1 0 7019032 0
[pid=16340/tid=16341] ppid=16338 vsize=28231644 memory=1398722017469774279 CPUtime=0.3 cores=0-7
/proc/16340/task/16341/stat : 16341 (java) R 16338 16338 11928 0 -1 4202560 7756 0 0 0 27 3 0 0 20 0 20 0 420082768 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324619890368 140324599739742 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16342] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16342/stat : 16342 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324166818448 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16343] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16343/stat : 16343 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324165765648 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16344] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16344/stat : 16344 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324164712848 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16345] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16345/stat : 16345 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324163660048 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16346] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16346/stat : 16346 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420082769 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324162608272 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16347] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16347/stat : 16347 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324161555472 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16348] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16348/stat : 16348 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082769 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324160502672 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16349] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16349/stat : 16349 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 420082769 28909203456 12507 33554432000 4194304 4196468 140725376488736 140324159449872 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16350] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16350/stat : 16350 (java) S 16338 16338 11928 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 20 0 420082770 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323213752688 140324615670402 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16351] ppid=16338 vsize=28231644 memory=280411838291328 CPUtime=0 cores=0-7
/proc/16340/task/16351/stat : 16351 (java) S 16338 16338 11928 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 420082771 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323212698656 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16352] ppid=16338 vsize=28231644 memory=280411838295936 CPUtime=0 cores=0-7
/proc/16340/task/16352/stat : 16352 (java) S 16338 16338 11928 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 420082771 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323211645808 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16353] ppid=16338 vsize=28231644 memory=280411838300544 CPUtime=0 cores=0-7
/proc/16340/task/16353/stat : 16353 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082773 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323210594128 140324615677851 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16354] ppid=16338 vsize=28231644 memory=280411838305152 CPUtime=0.03 cores=0-7
/proc/16340/task/16354/stat : 16354 (java) R 16338 16338 11928 0 -1 4202560 530 0 0 0 3 0 0 0 20 0 20 0 420082773 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323209532896 140324600785149 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16355] ppid=16338 vsize=28231644 memory=280411838309760 CPUtime=0.01 cores=0-7
/proc/16340/task/16355/stat : 16355 (java) S 16338 16338 11928 0 -1 1077944384 160 0 0 0 1 0 0 0 20 0 20 0 420082773 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323208489712 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16356] ppid=16338 vsize=28231644 memory=280411838314368 CPUtime=0.02 cores=0-7
/proc/16340/task/16356/stat : 16356 (java) S 16338 16338 11928 0 -1 1077944384 231 0 0 0 2 0 0 0 20 0 20 0 420082773 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323207436912 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16357] ppid=16338 vsize=28231644 memory=280411838318976 CPUtime=0.12 cores=0-7
/proc/16340/task/16357/stat : 16357 (java) S 16338 16338 11928 0 -1 1077944384 836 0 0 0 12 0 0 0 20 0 20 0 420082773 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323206384112 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16358] ppid=16338 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16358/stat : 16358 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 420082773 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323205331552 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16359] ppid=16338 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/16340/task/16359/stat : 16359 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 420082774 28909203456 12507 33554432000 4194304 4196468 140725376488736 140323204278832 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
Current children cumulated CPU time: 0.51 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51484 KiB

[startup+0.700957 s]
/proc/loadavg: 2.59 5.36 6.88 6/212 16359
/proc/meminfo: memFree=31473664/32770624 swapFree=67004232/67108860
[pid=16338] ppid=16335 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/16338/stat : 16338 (xcsp3-exec) S 16335 16338 11928 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420082767 115843072 364 33554432000 4194304 5098028 140735480469552 140735480467656 140092581139068 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26562560 140735480472438 140735480472681 140735480472681 140735480475594 0
/proc/16338/statm: 28282 364 305 221 0 87 0
[pid=16340] ppid=16338 vsize=28766280 memory=111868 CPUtime=2.05 cores=0-7
/proc/16340/stat : 16340 (java) S 16338 16338 11928 0 -1 1077944320 15853 0 0 0 195 10 0 0 20 0 28 0 420082767 29456670720 27967 33554432000 4194304 4196468 140725376488736 140725376471280 140324615659255 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
/proc/16340/statm: 7191570 27967 3458 1 0 7152672 0
[pid=16340/tid=16341] ppid=16338 vsize=28766280 memory=0 CPUtime=0.57 cores=0-7
/proc/16340/task/16341/stat : 16341 (java) S 16338 16338 11928 0 -1 1077944384 9341 0 0 0 52 5 0 0 20 0 28 0 420082768 29456670720 27967 33554432000 4194304 4196468 140725376488736 140324619900032 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16342] ppid=16338 vsize=28766280 memory=140205919347584 CPUtime=0 cores=0-7
/proc/16340/task/16342/stat : 16342 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 28 0 420082769 29456670720 27967 33554432000 4194304 4196468 140725376488736 140324166818448 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16343] ppid=16338 vsize=28766280 memory=0 CPUtime=0 cores=0-7
/proc/16340/task/16343/stat : 16343 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 28 0 420082769 29456670720 27967 33554432000 4194304 4196468 140725376488736 140324165765648 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16344] ppid=16338 vsize=28766280 memory=1052 CPUtime=0 cores=0-7
/proc/16340/task/16344/stat : 16344 (java) S 16338 16338 11928 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 28 0 420082769 29456670720 27967 33554432000 4194304 4196468 140725376488736 140324164712848 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0

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

[pid=16340/tid=16515] ppid=16338 vsize=28834892 memory=301741403590113605 CPUtime=423.19 cores=0-7
/proc/16340/task/16515/stat : 16515 (java) S 16338 16338 11928 0 -1 1077944384 17975 0 0 0 42292 27 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323195311696 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16516] ppid=16338 vsize=28834892 memory=301794158559384221 CPUtime=424.63 cores=0-7
/proc/16340/task/16516/stat : 16516 (java) S 16338 16338 11928 0 -1 1077944384 7393 0 0 0 42444 19 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323190048208 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16517] ppid=16338 vsize=28834892 memory=1414351094373861289 CPUtime=425.18 cores=0-7
/proc/16340/task/16517/stat : 16517 (java) S 16338 16338 11928 0 -1 1077944384 6541 0 0 0 42500 18 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323186890064 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 3 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16518] ppid=16338 vsize=28834892 memory=-7595718147998060693 CPUtime=427.71 cores=0-7
/proc/16340/task/16518/stat : 16518 (java) S 16338 16338 11928 0 -1 1077944384 2558 0 0 0 42767 4 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323194258640 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 5 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16519] ppid=16338 vsize=28834892 memory=-7595718147998060693 CPUtime=425.78 cores=0-7
/proc/16340/task/16519/stat : 16519 (java) S 16338 16338 11928 0 -1 1077944384 9251 0 0 0 42575 3 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323187942480 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16520] ppid=16338 vsize=28834892 memory=1964 CPUtime=433.77 cores=0-7
/proc/16340/task/16520/stat : 16520 (java) R 16338 16338 11928 0 -1 4202560 2231 0 0 0 43373 4 0 0 20 0 28 0 420083110 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323191094912 140324257213088 0 4 0 16800975 0 0 0 -1 6 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
Current children cumulated CPU time: 3457.76 s
Current children cumulated vsize: 28948020 KiB
Current children cumulated memory: 1003592 KiB

[startup+442.801 s]
/proc/loadavg: 7.73 7.41 7.33 2/221 16555
/proc/meminfo: memFree=30534748/32770624 swapFree=67004232/67108860
[pid=16338] ppid=16335 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/16338/stat : 16338 (xcsp3-exec) S 16335 16338 11928 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420082767 115843072 364 33554432000 4194304 5098028 140735480469552 140735480467656 140092581139068 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26562560 140735480472438 140735480472681 140735480472681 140735480475594 0
/proc/16338/statm: 28282 364 305 221 0 87 0
[pid=16340] ppid=16338 vsize=28834892 memory=1002136 CPUtime=3458.16 cores=0-7
/proc/16340/stat : 16340 (java) S 16338 16338 11928 0 -1 1077944320 214030 0 0 0 345509 307 0 0 20 0 28 0 420082767 29526929408 250534 33554432000 4194304 4196468 140725376488736 140725376471280 140324615659255 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
/proc/16340/statm: 7208723 250534 3544 1 0 7169825 0
[pid=16340/tid=16341] ppid=16338 vsize=28834892 memory=740 CPUtime=0.58 cores=0-7
/proc/16340/task/16341/stat : 16341 (java) S 16338 16338 11928 0 -1 1077944384 9348 0 0 0 53 5 0 0 20 0 28 0 420082768 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324619900032 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16342] ppid=16338 vsize=28834892 memory=1052 CPUtime=3 cores=0-7
/proc/16340/task/16342/stat : 16342 (java) S 16338 16338 11928 0 -1 1077944384 6310 0 0 0 277 23 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324166818448 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16343] ppid=16338 vsize=28834892 memory=792 CPUtime=2.99 cores=0-7
/proc/16340/task/16343/stat : 16343 (java) S 16338 16338 11928 0 -1 1077944384 5543 0 0 0 277 22 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324165765648 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16344] ppid=16338 vsize=28834892 memory=1456 CPUtime=3.02 cores=0-7
/proc/16340/task/16344/stat : 16344 (java) S 16338 16338 11928 0 -1 1077944384 5759 0 0 0 280 22 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324164712848 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16345] ppid=16338 vsize=28834892 memory=1456 CPUtime=3 cores=0-7
/proc/16340/task/16345/stat : 16345 (java) S 16338 16338 11928 0 -1 1077944384 6055 0 0 0 279 21 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324163660048 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16346] ppid=16338 vsize=28834892 memory=1002136 CPUtime=3.03 cores=0-7
/proc/16340/task/16346/stat : 16346 (java) S 16338 16338 11928 0 -1 1077944384 4592 0 0 0 282 21 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324162608272 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16347] ppid=16338 vsize=28834892 memory=1760 CPUtime=3 cores=0-7
/proc/16340/task/16347/stat : 16347 (java) S 16338 16338 11928 0 -1 1077944384 5417 0 0 0 278 22 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324161555472 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16348] ppid=16338 vsize=28834892 memory=6791534058613427641 CPUtime=3.01 cores=0-7
/proc/16340/task/16348/stat : 16348 (java) S 16338 16338 11928 0 -1 1077944384 5713 0 0 0 279 22 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324160502672 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16349] ppid=16338 vsize=28834892 memory=740 CPUtime=3.01 cores=0-7
/proc/16340/task/16349/stat : 16349 (java) S 16338 16338 11928 0 -1 1077944384 5833 0 0 0 281 20 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324159449872 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16350] ppid=16338 vsize=28834892 memory=1052 CPUtime=0.72 cores=0-7
/proc/16340/task/16350/stat : 16350 (java) S 16338 16338 11928 0 -1 1077944384 15459 0 0 0 51 21 0 0 20 0 28 0 420082770 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323213752688 140324615670402 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16351] ppid=16338 vsize=28834892 memory=7548 CPUtime=0 cores=0-7
/proc/16340/task/16351/stat : 16351 (java) S 16338 16338 11928 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 28 0 420082771 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323212698720 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16352] ppid=16338 vsize=28834892 memory=4004 CPUtime=0 cores=0-7
/proc/16340/task/16352/stat : 16352 (java) S 16338 16338 11928 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 28 0 420082771 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323211645824 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16353] ppid=16338 vsize=28834892 memory=2832 CPUtime=0 cores=0-7
/proc/16340/task/16353/stat : 16353 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323210594128 140324615677851 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16354] ppid=16338 vsize=28834892 memory=776 CPUtime=3.36 cores=0-7
/proc/16340/task/16354/stat : 16354 (java) S 16338 16338 11928 0 -1 1077944384 19365 0 0 0 331 5 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323209542512 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16355] ppid=16338 vsize=28834892 memory=1160 CPUtime=3.17 cores=0-7
/proc/16340/task/16355/stat : 16355 (java) S 16338 16338 11928 0 -1 1077944384 22152 0 0 0 310 7 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323208489712 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16356] ppid=16338 vsize=28834892 memory=1720 CPUtime=3.42 cores=0-7
/proc/16340/task/16356/stat : 16356 (java) S 16338 16338 11928 0 -1 1077944384 24851 0 0 0 338 4 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323207436912 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16357] ppid=16338 vsize=28834892 memory=6791534058613427641 CPUtime=1.07 cores=0-7
/proc/16340/task/16357/stat : 16357 (java) S 16338 16338 11928 0 -1 1077944384 19168 0 0 0 103 4 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323206384112 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16358] ppid=16338 vsize=28834892 memory=1692 CPUtime=0 cores=0-7
/proc/16340/task/16358/stat : 16358 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323205331552 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16359] ppid=16338 vsize=28834892 memory=792 CPUtime=0.25 cores=0-7
/proc/16340/task/16359/stat : 16359 (java) S 16338 16338 11928 0 -1 1077944384 2245 0 0 0 8 17 0 0 20 0 28 0 420082774 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323204278832 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16513] ppid=16338 vsize=28834892 memory=1448 CPUtime=424.5 cores=0-7
/proc/16340/task/16513/stat : 16513 (java) S 16338 16338 11928 0 -1 1077944384 3624 0 0 0 42449 1 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323192151488 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 3 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16514] ppid=16338 vsize=28834892 memory=1964 CPUtime=423.65 cores=0-7
/proc/16340/task/16514/stat : 16514 (java) S 16338 16338 11928 0 -1 1077944384 2138 0 0 0 42365 0 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323193205456 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16515] ppid=16338 vsize=28834892 memory=2456 CPUtime=423.19 cores=0-7
/proc/16340/task/16515/stat : 16515 (java) S 16338 16338 11928 0 -1 1077944384 17975 0 0 0 42292 27 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323195311696 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16516] ppid=16338 vsize=28834892 memory=1760 CPUtime=424.63 cores=0-7
/proc/16340/task/16516/stat : 16516 (java) S 16338 16338 11928 0 -1 1077944384 7393 0 0 0 42444 19 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323190048208 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16517] ppid=16338 vsize=28834892 memory=111632 CPUtime=425.18 cores=0-7
/proc/16340/task/16517/stat : 16517 (java) S 16338 16338 11928 0 -1 1077944384 6541 0 0 0 42500 18 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323186890064 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 3 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16518] ppid=16338 vsize=28834892 memory=804 CPUtime=427.71 cores=0-7
/proc/16340/task/16518/stat : 16518 (java) S 16338 16338 11928 0 -1 1077944384 2558 0 0 0 42767 4 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323194258640 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 5 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16519] ppid=16338 vsize=28834892 memory=1804 CPUtime=425.78 cores=0-7
/proc/16340/task/16519/stat : 16519 (java) S 16338 16338 11928 0 -1 1077944384 9251 0 0 0 42575 3 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323187942480 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16520] ppid=16338 vsize=28834892 memory=6791534058613427641 CPUtime=434.17 cores=0-7
/proc/16340/task/16520/stat : 16520 (java) R 16338 16338 11928 0 -1 4202560 2231 0 0 0 43413 4 0 0 20 0 28 0 420083110 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323191094912 140324257213543 0 4 0 16800975 0 0 0 -1 6 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
Current children cumulated CPU time: 3458.16 s
Current children cumulated vsize: 28948020 KiB
Current children cumulated memory: 1003592 KiB

[startup+443.201 s]
/proc/loadavg: 7.19 7.31 7.30 2/221 16555
/proc/meminfo: memFree=30534748/32770624 swapFree=67004232/67108860
[pid=16338] ppid=16335 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/16338/stat : 16338 (xcsp3-exec) S 16335 16338 11928 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420082767 115843072 364 33554432000 4194304 5098028 140735480469552 140735480467656 140092581139068 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26562560 140735480472438 140735480472681 140735480472681 140735480475594 0
/proc/16338/statm: 28282 364 305 221 0 87 0
[pid=16340] ppid=16338 vsize=28834892 memory=1002136 CPUtime=3458.56 cores=0-7
/proc/16340/stat : 16340 (java) S 16338 16338 11928 0 -1 1077944320 214030 0 0 0 345549 307 0 0 20 0 28 0 420082767 29526929408 250534 33554432000 4194304 4196468 140725376488736 140725376471280 140324615659255 0 0 0 16800975 18446744073709551615 0 0 17 1 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
/proc/16340/statm: 7208723 250534 3544 1 0 7169825 0
[pid=16340/tid=16341] ppid=16338 vsize=28834892 memory=1560 CPUtime=0.58 cores=0-7
/proc/16340/task/16341/stat : 16341 (java) S 16338 16338 11928 0 -1 1077944384 9348 0 0 0 53 5 0 0 20 0 28 0 420082768 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324619900032 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16342] ppid=16338 vsize=28834892 memory=6791534058613427641 CPUtime=3 cores=0-7
/proc/16340/task/16342/stat : 16342 (java) S 16338 16338 11928 0 -1 1077944384 6310 0 0 0 277 23 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324166818448 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16343] ppid=16338 vsize=28834892 memory=288230621803970871 CPUtime=2.99 cores=0-7
/proc/16340/task/16343/stat : 16343 (java) S 16338 16338 11928 0 -1 1077944384 5543 0 0 0 277 22 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324165765648 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16344] ppid=16338 vsize=28834892 memory=15262527902714418 CPUtime=3.02 cores=0-7
/proc/16340/task/16344/stat : 16344 (java) S 16338 16338 11928 0 -1 1077944384 5759 0 0 0 280 22 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324164712848 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16345] ppid=16338 vsize=28834892 memory=1002136 CPUtime=3 cores=0-7
/proc/16340/task/16345/stat : 16345 (java) S 16338 16338 11928 0 -1 1077944384 6055 0 0 0 279 21 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324163660048 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16346] ppid=16338 vsize=28834892 memory=1964 CPUtime=3.03 cores=0-7
/proc/16340/task/16346/stat : 16346 (java) S 16338 16338 11928 0 -1 1077944384 4592 0 0 0 282 21 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324162608272 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16347] ppid=16338 vsize=28834892 memory=286 CPUtime=3 cores=0-7
/proc/16340/task/16347/stat : 16347 (java) S 16338 16338 11928 0 -1 1077944384 5417 0 0 0 278 22 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324161555472 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16348] ppid=16338 vsize=28834892 memory=285 CPUtime=3.01 cores=0-7
/proc/16340/task/16348/stat : 16348 (java) S 16338 16338 11928 0 -1 1077944384 5713 0 0 0 279 22 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324160502672 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16349] ppid=16338 vsize=28834892 memory=286 CPUtime=3.01 cores=0-7
/proc/16340/task/16349/stat : 16349 (java) S 16338 16338 11928 0 -1 1077944384 5833 0 0 0 281 20 0 0 20 0 28 0 420082769 29526929408 250534 33554432000 4194304 4196468 140725376488736 140324159449872 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16350] ppid=16338 vsize=28834892 memory=285 CPUtime=0.72 cores=0-7
/proc/16340/task/16350/stat : 16350 (java) S 16338 16338 11928 0 -1 1077944384 15459 0 0 0 51 21 0 0 20 0 28 0 420082770 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323213752688 140324615670402 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16351] ppid=16338 vsize=28834892 memory=70 CPUtime=0 cores=0-7
/proc/16340/task/16351/stat : 16351 (java) S 16338 16338 11928 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 28 0 420082771 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323212698720 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16352] ppid=16338 vsize=28834892 memory=1456 CPUtime=0 cores=0-7
/proc/16340/task/16352/stat : 16352 (java) S 16338 16338 11928 0 -1 1077944384 44 0 0 0 0 0 0 0 20 0 28 0 420082771 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323211645824 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16353] ppid=16338 vsize=28834892 memory=3588 CPUtime=0 cores=0-7
/proc/16340/task/16353/stat : 16353 (java) S 16338 16338 11928 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323210594128 140324615677851 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16354] ppid=16338 vsize=28834892 memory=40844 CPUtime=3.36 cores=0-7
/proc/16340/task/16354/stat : 16354 (java) S 16338 16338 11928 0 -1 1077944384 19365 0 0 0 331 5 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323209542512 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16355] ppid=16338 vsize=28834892 memory=984 CPUtime=3.17 cores=0-7
/proc/16340/task/16355/stat : 16355 (java) S 16338 16338 11928 0 -1 1077944384 22152 0 0 0 310 7 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323208489712 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16356] ppid=16338 vsize=28834892 memory=1940 CPUtime=3.42 cores=0-7
/proc/16340/task/16356/stat : 16356 (java) S 16338 16338 11928 0 -1 1077944384 24851 0 0 0 338 4 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323207436912 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16357] ppid=16338 vsize=28834892 memory=1416 CPUtime=1.07 cores=0-7
/proc/16340/task/16357/stat : 16357 (java) S 16338 16338 11928 0 -1 1077944384 19168 0 0 0 103 4 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323206384112 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16358] ppid=16338 vsize=28834892 memory=1160 CPUtime=0 cores=0-7
/proc/16340/task/16358/stat : 16358 (java) S 16338 16338 11928 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 28 0 420082773 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323205331552 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16359] ppid=16338 vsize=28834892 memory=1720 CPUtime=0.25 cores=0-7
/proc/16340/task/16359/stat : 16359 (java) S 16338 16338 11928 0 -1 1077944384 2245 0 0 0 8 17 0 0 20 0 28 0 420082774 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323204278832 140324615670402 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16513] ppid=16338 vsize=28834892 memory=1096 CPUtime=424.5 cores=0-7
/proc/16340/task/16513/stat : 16513 (java) S 16338 16338 11928 0 -1 1077944384 3624 0 0 0 42449 1 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323192151488 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 3 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16514] ppid=16338 vsize=28834892 memory=5964 CPUtime=423.65 cores=0-7
/proc/16340/task/16514/stat : 16514 (java) S 16338 16338 11928 0 -1 1077944384 2138 0 0 0 42365 0 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323193205456 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16515] ppid=16338 vsize=28834892 memory=14012 CPUtime=423.19 cores=0-7
/proc/16340/task/16515/stat : 16515 (java) S 16338 16338 11928 0 -1 1077944384 17975 0 0 0 42292 27 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323195311696 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16516] ppid=16338 vsize=28834892 memory=19792 CPUtime=424.63 cores=0-7
/proc/16340/task/16516/stat : 16516 (java) S 16338 16338 11928 0 -1 1077944384 7393 0 0 0 42444 19 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323190048208 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 2 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16517] ppid=16338 vsize=28834892 memory=14068 CPUtime=425.18 cores=0-7
/proc/16340/task/16517/stat : 16517 (java) S 16338 16338 11928 0 -1 1077944384 6541 0 0 0 42500 18 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323186890064 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 3 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16518] ppid=16338 vsize=28834892 memory=1556 CPUtime=427.71 cores=0-7
/proc/16340/task/16518/stat : 16518 (java) S 16338 16338 11928 0 -1 1077944384 2558 0 0 0 42767 4 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323194258640 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 5 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16519] ppid=16338 vsize=28834892 memory=740 CPUtime=425.78 cores=0-7
/proc/16340/task/16519/stat : 16519 (java) S 16338 16338 11928 0 -1 1077944384 9251 0 0 0 42575 3 0 0 20 0 28 0 420083108 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323187942480 140324615669461 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
[pid=16340/tid=16520] ppid=16338 vsize=28834892 memory=1052 CPUtime=434.57 cores=0-7
/proc/16340/task/16520/stat : 16520 (java) R 16338 16338 11928 0 -1 4202560 2231 0 0 0 43453 4 0 0 20 0 28 0 420083110 29526929408 250534 33554432000 4194304 4196468 140725376488736 140323191094912 140324257213297 0 4 0 16800975 0 0 0 -1 6 0 0 1 0 0 6293624 6294260 14442496 140725376492522 140725376492694 140725376492694 140725376495567 0
Current children cumulated CPU time: 3458.56 s
Current children cumulated vsize: 28948020 KiB
Current children cumulated memory: 1003592 KiB

[startup+443.301 s]
/proc/loadavg: 7.19 7.31 7.30 2/221 16555
/proc/meminfo: memFree=30534748/32770624 swapFree=67004232/67108860
[pid=16338] ppid=16335 vsize=113128 memory=1456 CPUtime=0 cores=0-7
/proc/16338/stat : 16338 (xcsp3-exec) S 16335 16338 11928 0 -1 4202496 545 0 0 0 0 0 0 0 20 0 1 0 420082767 115843072 364 33554432000 4194304 5098028 140735480469552 140735480467656 140092581139068 0 65536 4100 65538 18446744071579417331 0 0 17 3 0 0 0 0 0 7196144 7232144 26562560 140735480472438 140735480472681 140735480472681 140735480475594 0
/proc/16338/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): 443.313
CPU time (s): 3458.69
CPU user time (s): 3455.6
CPU system time (s): 3.09243
CPU usage (%): 780.19
Max. virtual memory (cumulated for all children) (KiB): 28950464
Max. memory (cumulated for all children) (KiB): 1117924

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 3455.6
system time used= 3.09244
maximum resident set size= 1116468
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 215390
page faults= 0
swaps= 0
block input operations= 0
block output operations= 776
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 23253
involuntary context switches= 39240


# summary of solver processes directly reported to runsolver:
#   pid: 16338
#   total CPU time (s): 3458.69
#   total CPU user time (s): 3455.6
#   total CPU system time (s): 3.09243

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 3.93562 second user time and 5.26487 second system time

The end

Launcher Data

Begin job on node148 at 2019-09-14 07:32:55
IDJOB=4394518
IDBENCH=135739
IDSOLVER=2843
FILE ID=node148/4394518-1568439212
RUNJOBID= node148-1568432499-11955
PBS_JOBID= 21702314
Free space on /tmp= 61308 MiB

SOLVER NAME= choco-solver parallel 2019-06-14
BENCH NAME= XCSP17/TravellingSalesman/TravellingSalesman-m1-n15/TravellingSalesman-15-30-00.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-4394518-1568439212/watcher-4394518-1568439212 -o /tmp/evaluation-result-4394518-1568439212/solver-4394518-1568439212 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node148-1568432499-11955 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 246123442 HOME/instance-4394518-1568439212.xml

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

MD5SUM BENCH= 0f9f8d62bc132272af22ef8ddad99d7d
RANDOM SEED=246123442

node148.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.13
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.13
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.13
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.13
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:        31525016 kB
MemAvailable:   31908064 kB
Buffers:           98460 kB
Cached:           579712 kB
SwapCached:         3812 kB
Active:           418072 kB
Inactive:         268776 kB
Active(anon):       5212 kB
Inactive(anon):    43744 kB
Active(file):     412860 kB
Inactive(file):   225032 kB
Unevictable:      108944 kB
Mlocked:          108944 kB
SwapTotal:      67108860 kB
SwapFree:       67004232 kB
Dirty:             26104 kB
Writeback:             0 kB
AnonPages:        393676 kB
Mapped:            44396 kB
Shmem:             32352 kB
Slab:             150992 kB
SReclaimable:     121984 kB
SUnreclaim:        29008 kB
KernelStack:        3856 kB
PageTables:         5420 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     497980 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    348160 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      124288 kB
DirectMap2M:    33421312 kB

Free space on /tmp at the end= 61284 MiB
End job on node148 at 2019-09-14 07:40:18