Trace number 4393797

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 parallelWrong Opt.77 45.9143 9.27531

General information on the benchmark

NamePrizeCollecting/PrizeCollecting-jok-s1/
PrizeCollecting-24-4-6-3.xml
MD5SUM95a2ddfb0d7ed65af35b4a4f8b00191d
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkOPT
Best value of the objective obtained on this benchmark80
Best CPU time to get the best result obtained on this benchmark41.2255
Satisfiable
(Un)Satisfiability was proved
Number of variables72
Number of constraints97
Number of domains24
Minimum domain size4
Maximum domain size25
Distribution of domain sizes[{"size":4,"count":11},{"size":5,"count":11},{"size":6,"count":2},{"size":25,"count":48}]
Minimum variable degree2
Maximum variable degree27
Distribution of variable degrees[{"degree":2,"count":24},{"degree":25,"count":23},{"degree":26,"count":1},{"degree":27,"count":24}]
Minimum constraint arity1
Maximum constraint arity25
Distribution of constraint arities[{"arity":1,"count":1},{"arity":2,"count":48},{"arity":24,"count":24},{"arity":25,"count":24}]
Number of extensional constraints48
Number of intensional constraints25
Distribution of constraint types[{"type":"extension","count":48},{"type":"intension","count":25},{"type":"count","count":24}]
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-4393797-1568430712.xml"  -tl '20160s' -p 8
0.12/0.18	c Choco e747e1e
0.12/0.18	c [HOME/instance-4393797-1568430712.xml, -tl, 20160s, -p, 8]
0.34/0.22	c 8 solvers in parallel
0.34/0.28	c parse instance...
4.50/1.78	c solve instance...
5.69/1.93	o -1000 
5.69/2.00	o -992 
6.43/2.01	o -990 
6.43/2.02	o -981 
7.89/2.26	o -973 
7.89/2.28	o -967 
8.63/2.31	o -961 
9.40/2.40	o -956 
9.40/2.44	o -955 
10.02/2.59	o -952 
10.02/2.59	o -951 
17.13/3.44	o -947 
17.13/3.46	o -946 
20.16/3.81	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (149/151)
20.16/3.81		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
20.16/3.81		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
20.16/3.81		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
20.16/3.81		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
20.16/3.81		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
20.16/3.81	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (149/151)
20.16/3.81		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
20.16/3.81		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
20.16/3.81		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
20.16/3.81		at org.chocosolver.solver.Solver.repair(Solver.java:443)
20.16/3.81		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
20.16/3.81		at org.chocosolver.solver.Solver.solve(Solver.java:262)
20.16/3.81		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
20.16/3.81		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
20.16/3.81		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
20.16/3.81		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
20.16/3.81		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
20.16/3.81		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
20.16/3.81		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
20.16/3.81		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
20.16/3.81		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
20.16/3.81		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
20.16/3.81	o -944 
20.16/3.82	o -943 
20.16/3.85	o -935 
20.16/3.89	o -934 
20.16/3.89	o -926 
24.04/4.35	o 8 
26.44/4.70	o 15 
27.92/4.82	o 24 
30.39/5.11	o 29 
31.06/5.27	o 36 
32.63/5.49	o 39 
34.25/5.61	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Learn a weak clause (142/144)
34.25/5.61		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
34.25/5.61		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
34.25/5.61		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
34.25/5.61		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
34.25/5.61		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
34.25/5.61	Caused by: org.chocosolver.solver.exception.SolverException: Learn a weak clause (142/144)
34.25/5.61		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.check(ClauseStore.java:201)
34.25/5.61		at org.chocosolver.solver.constraints.nary.clauses.ClauseStore.forget(ClauseStore.java:219)
34.25/5.61		at org.chocosolver.solver.search.loop.learn.LearnSignedClauses.forget(LearnSignedClauses.java:90)
34.25/5.61		at org.chocosolver.solver.Solver.repair(Solver.java:443)
34.25/5.61		at org.chocosolver.solver.Solver.searchLoop(Solver.java:301)
34.25/5.61		at org.chocosolver.solver.Solver.solve(Solver.java:262)
34.25/5.61		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
34.25/5.61		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
34.25/5.61		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
34.25/5.61		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
34.25/5.61		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
34.25/5.61		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
34.25/5.61		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
34.25/5.61		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
34.25/5.61		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
34.25/5.61		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
34.25/5.61	o 54 
34.25/5.65	java.util.concurrent.ExecutionException: java.lang.NullPointerException
34.25/5.65		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
34.25/5.65		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
34.25/5.65		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
34.25/5.65		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
34.25/5.65		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
34.25/5.65	Caused by: java.lang.NullPointerException
34.25/5.65		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
34.25/5.65		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
34.25/5.65		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
34.25/5.65		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
34.25/5.65		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
34.25/5.65		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
34.25/5.65		... 4 more
34.25/5.65	Caused by: java.lang.NullPointerException
34.25/5.65		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
34.25/5.65		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
34.25/5.65		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
34.25/5.65		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
34.25/5.65		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
34.25/5.65		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
34.25/5.65		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
34.25/5.65		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
34.25/5.65		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
34.25/5.65		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
34.25/5.65		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
34.25/5.65		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
34.25/5.65		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
34.25/5.65		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
34.25/5.65		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
34.25/5.65		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
34.25/5.65		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
34.25/5.65		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
34.25/5.65	Caused by: java.lang.NullPointerException
34.25/5.65		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:278)
34.25/5.65		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
34.25/5.65		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:181)
34.25/5.65		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
34.25/5.65		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
34.25/5.65		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
34.25/5.65		at org.chocosolver.solver.Solver.solve(Solver.java:262)
34.25/5.65		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
34.25/5.65		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
34.25/5.65		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
34.25/5.65		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
34.25/5.65		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
34.25/5.65		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
34.25/5.65		... 4 more
34.25/5.65	o 58 
34.86/5.76	java.util.concurrent.ExecutionException: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
34.86/5.76		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
34.86/5.76		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
34.86/5.76		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
34.86/5.76		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
34.86/5.76		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
34.86/5.76	Caused by: org.chocosolver.solver.exception.SolverException: Cannot add decision to decision path
34.86/5.76		at org.chocosolver.solver.search.strategy.decision.DecisionPath.pushDecision(DecisionPath.java:95)
34.86/5.76		at org.chocosolver.solver.search.loop.move.MoveBinaryDFS.extend(MoveBinaryDFS.java:64)
34.86/5.76		at org.chocosolver.solver.search.loop.move.MoveRestart.extend(MoveRestart.java:82)
34.86/5.76		at org.chocosolver.solver.search.loop.move.MoveRestart.extend(MoveRestart.java:82)
34.86/5.76		at org.chocosolver.solver.Solver.extend(Solver.java:421)
34.86/5.76		at org.chocosolver.solver.Solver.searchLoop(Solver.java:297)
34.86/5.76		at org.chocosolver.solver.Solver.solve(Solver.java:262)
34.86/5.76		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
34.86/5.76		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
34.86/5.76		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
34.86/5.76		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
34.86/5.76		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
34.86/5.76		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
34.86/5.76		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
34.86/5.76		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
34.86/5.76		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
34.86/5.76		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
34.86/5.77	o 61 
36.69/6.48	java.util.concurrent.ExecutionException: java.lang.NullPointerException
36.69/6.48		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
36.69/6.48		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
36.69/6.48		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
36.69/6.48		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
36.69/6.48		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
36.69/6.48	Caused by: java.lang.NullPointerException
36.69/6.48		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
36.69/6.48		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
36.69/6.48		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
36.69/6.48		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
36.69/6.48		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
36.69/6.48		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
36.69/6.48		... 4 more
36.69/6.48	Caused by: java.lang.NullPointerException
36.69/6.48		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
36.69/6.48		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
36.69/6.48		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
36.69/6.48		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
36.69/6.48		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
36.69/6.48		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
36.69/6.48		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
36.69/6.48		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
36.69/6.48		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
36.69/6.48		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
36.69/6.48		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
36.69/6.48		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
36.69/6.48		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
36.69/6.48		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
36.69/6.48		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
36.69/6.48		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
36.69/6.48		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
36.69/6.48		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
36.69/6.48	Caused by: java.lang.NullPointerException
36.69/6.48		at org.chocosolver.solver.propagation.PropagationEngine.schedule(PropagationEngine.java:278)
36.69/6.48		at org.chocosolver.solver.propagation.PropagationEngine.manageModifications(PropagationEngine.java:222)
36.69/6.48		at org.chocosolver.solver.propagation.PropagationEngine.propagate(PropagationEngine.java:181)
36.69/6.48		at org.chocosolver.solver.search.loop.propagate.PropagateBasic.execute(PropagateBasic.java:46)
36.69/6.48		at org.chocosolver.solver.Solver.propagate(Solver.java:403)
36.69/6.48		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
36.69/6.48		at org.chocosolver.solver.Solver.solve(Solver.java:262)
36.69/6.48		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
36.69/6.48		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
36.69/6.48		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
36.69/6.48		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
36.69/6.48		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
36.69/6.48		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
36.69/6.48		... 4 more
36.69/6.48	o 67 
36.92/6.50	java.util.concurrent.ExecutionException: java.lang.NullPointerException
36.92/6.50		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
36.92/6.50		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
36.92/6.50		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
36.92/6.50		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
36.92/6.50		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
36.92/6.50	Caused by: java.lang.NullPointerException
36.92/6.50		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
36.92/6.50		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
36.92/6.50		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
36.92/6.50		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
36.92/6.50		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
36.92/6.50		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
36.92/6.50		... 4 more
36.92/6.50	Caused by: java.lang.NullPointerException
36.92/6.50		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
36.92/6.50		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
36.92/6.50		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
36.92/6.50		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
36.92/6.50		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
36.92/6.50		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
36.92/6.50		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
36.92/6.50		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
36.92/6.50		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
36.92/6.50		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
36.92/6.50		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
36.92/6.50		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
36.92/6.50		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
36.92/6.50		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
36.92/6.50		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
36.92/6.50		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
36.92/6.50		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
36.92/6.50		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
36.92/6.50	Caused by: java.lang.NullPointerException
36.92/6.50		at org.chocosolver.solver.propagation.PropagationEngine.flush(PropagationEngine.java:249)
36.92/6.50		at org.chocosolver.solver.Solver.propagate(Solver.java:406)
36.92/6.50		at org.chocosolver.solver.Solver.searchLoop(Solver.java:293)
36.92/6.50		at org.chocosolver.solver.Solver.solve(Solver.java:262)
36.92/6.50		at org.chocosolver.solver.ParallelPortfolio.lambda$null$0(ParallelPortfolio.java:202)
36.92/6.50		at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
36.92/6.50		at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1374)
36.92/6.50		at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
36.92/6.50		at java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:291)
36.92/6.50		at java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:731)
36.92/6.50		... 4 more
36.92/6.50	o 70 
45.64/9.21	java.util.concurrent.ExecutionException: java.lang.NullPointerException
45.64/9.21		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
45.64/9.21		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
45.64/9.21		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
45.64/9.21		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
45.64/9.21		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
45.64/9.21	Caused by: java.lang.NullPointerException
45.64/9.21		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
45.64/9.21		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
45.64/9.21		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
45.64/9.21		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
45.64/9.21		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
45.64/9.21		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
45.64/9.21		... 4 more
45.64/9.21	Caused by: java.lang.NullPointerException
45.64/9.21		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
45.64/9.21		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
45.64/9.21		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
45.64/9.21		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
45.64/9.21		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
45.64/9.21		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
45.64/9.21		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
45.64/9.21		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
45.64/9.21		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
45.64/9.21		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
45.64/9.21		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
45.64/9.21		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
45.64/9.21		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
45.64/9.21		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
45.64/9.21		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
45.64/9.21		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
45.64/9.21		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
45.64/9.21		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
45.64/9.21	Caused by: java.lang.NullPointerException
45.64/9.21	o 75 
45.64/9.24	java.util.concurrent.ExecutionException: java.lang.NullPointerException
45.64/9.25		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006)
45.64/9.25		at org.chocosolver.solver.ParallelPortfolio.solve(ParallelPortfolio.java:207)
45.64/9.25		at org.chocosolver.parser.xcsp.XCSP.manyThread(XCSP.java:162)
45.64/9.25		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
45.64/9.25		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:24)
45.64/9.25	Caused by: java.lang.NullPointerException
45.64/9.25		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
45.64/9.25		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
45.64/9.25		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
45.64/9.25		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
45.64/9.25		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
45.64/9.25		at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1005)
45.64/9.25		... 4 more
45.64/9.25	Caused by: java.lang.NullPointerException
45.64/9.25		at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
45.64/9.25		at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
45.64/9.25		at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
45.64/9.25		at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
45.64/9.25		at java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:598)
45.64/9.25		at java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:677)
45.64/9.25		at java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:735)
45.64/9.25		at java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:160)
45.64/9.25		at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:174)
45.64/9.25		at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
45.64/9.25		at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
45.64/9.25		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:583)
45.64/9.25		at org.chocosolver.solver.ParallelPortfolio.lambda$solve$1(ParallelPortfolio.java:200)
45.64/9.25		at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1386)
45.64/9.25		at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
45.64/9.25		at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
45.64/9.25		at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
45.64/9.25		at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
45.64/9.25	Caused by: java.lang.NullPointerException
45.64/9.25	o 77 
45.64/9.25	s OPTIMUM FOUND
45.64/9.25	v <instantiation>
45.64/9.25	v 	<list>s[0] s[1] s[2] s[3] s[4] s[5] s[6] s[7] s[8] s[9] s[10] s[11] s[12] s[13] s[14] s[15] s[16] s[17] s[18] s[19] s[20] s[21] s[22] s[23] p[0] p[1] p[2] p[3] p[4] p[5] p[6] p[7] p[8] p[9] p[10] p[11] p[12] p[13] p[14] p[15] p[16] p[17] p[18] p[19] p[20] p[21] p[22] p[23] g[0] g[1] g[2] g[3] g[4] g[5] g[6] g[7] g[8] g[9] g[10] g[11] g[12] g[13] g[14] g[15] g[16] g[17] g[18] g[19] g[20] g[21] g[22] g[23] </list>
45.64/9.25	v 	<values>1 2 3 4 5 11 0 6 7 8 16 10 -1 14 15 9 17 23 -1 13 19 20 21 22 0 1 2 3 4 5 21 20 19 18 7 6 -1 15 16 17 8 9 -1 14 13 12 11 10 -4 -3 5 8 7 6 4 4 0 2 -2 0 0 5 8 -4 6 5 0 6 3 9 8 4 </values>
45.64/9.25	v </instantiation>

Verifier Data

OK	77

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4393797-1568430712/watcher-4393797-1568430712 -o /tmp/evaluation-result-4393797-1568430712/solver-4393797-1568430712 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node151-1568430672-19252 --watchdog 2580 xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 327094946 HOME/instance-4393797-1568430712.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
Current StackSize limit: 8192 KiB

solver pid=19269, runsolver pid=19266

[startup+0.100151 s]*
/proc/loadavg: 7.91 7.88 7.64 3/212 19290
/proc/meminfo: memFree=30962144/32770624 swapFree=66935256/67108860
[pid=19269] ppid=19266 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/19269/stat : 19269 (xcsp3-exec) S 19266 19269 19225 0 -1 4202496 542 0 0 0 0 0 0 0 20 0 1 0 419342633 115843072 363 33554432000 4194304 5098028 140725002472368 140725002470472 139849779688060 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38428672 140725002478454 140725002478697 140725002478697 140725002481610 0
/proc/19269/statm: 28282 363 305 221 0 87 0
[pid=19271] ppid=19269 vsize=28227388 memory=28896 CPUtime=0.12 cores=0-7
/proc/19271/stat : 19271 (java) S 19269 19269 19225 0 -1 1077944320 5696 0 0 0 11 1 0 0 20 0 20 0 419342633 28904845312 7224 33554432000 4194304 4196468 140726282927888 140726282910432 140547313254135 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
/proc/19271/statm: 7056847 7224 3120 1 0 7019032 0
[pid=19271/tid=19272] ppid=19269 vsize=28227388 memory=7826581535555754654 CPUtime=0.09 cores=0-7
/proc/19271/task/19272/stat : 19272 (java) R 19269 19269 19225 0 -1 4202560 3603 0 0 0 8 1 0 0 20 0 20 0 419342633 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547317480272 140547297297765 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19273] ppid=19269 vsize=28227388 memory=732370824896465893 CPUtime=0 cores=0-7
/proc/19271/task/19273/stat : 19273 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547265874192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19274] ppid=19269 vsize=28227388 memory=140686559012480 CPUtime=0 cores=0-7
/proc/19271/task/19274/stat : 19274 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547264821648 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19275] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19275/stat : 19275 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547263769104 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19276] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19276/stat : 19276 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547262716560 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19277] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19277/stat : 19277 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547261664016 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19278] ppid=19269 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/19271/task/19278/stat : 19278 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547260611472 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19279] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19279/stat : 19279 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547259558928 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19280] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19280/stat : 19280 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 7224 33554432000 4194304 4196468 140726282927888 140547258506384 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19281] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19281/stat : 19281 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342636 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546496522224 140547313265282 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19282] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19282/stat : 19282 (java) S 19269 19269 19225 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419342636 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546495468448 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19283] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19283/stat : 19283 (java) S 19269 19269 19225 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419342636 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546494415856 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19284] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19284/stat : 19284 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546493364432 140547313272731 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19285] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19285/stat : 19285 (java) S 19269 19269 19225 0 -1 1077944384 299 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546492312048 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19286] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19286/stat : 19286 (java) R 19269 19269 19225 0 -1 4202560 4 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546491259504 140547306239177 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19287] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19287/stat : 19287 (java) R 19269 19269 19225 0 -1 1077944384 123 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546490206960 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19288] ppid=19269 vsize=28227388 memory=0 CPUtime=0.02 cores=0-7
/proc/19271/task/19288/stat : 19288 (java) R 19269 19269 19225 0 -1 4202560 359 0 0 0 2 0 0 0 20 0 20 0 419342639 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546489154416 140547313266070 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19289] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19289/stat : 19289 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546488101088 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19290] ppid=19269 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/19271/task/19290/stat : 19290 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 7224 33554432000 4194304 4196468 140726282927888 140546487048624 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 30348 KiB

[startup+0.20992 s]*
/proc/loadavg: 7.91 7.88 7.64 4/212 19290
/proc/meminfo: memFree=30947680/32770624 swapFree=66935256/67108860
[pid=19269] ppid=19266 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/19269/stat : 19269 (xcsp3-exec) S 19266 19269 19225 0 -1 4202496 542 0 0 0 0 0 0 0 20 0 1 0 419342633 115843072 363 33554432000 4194304 5098028 140725002472368 140725002470472 139849779688060 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38428672 140725002478454 140725002478697 140725002478697 140725002481610 0
/proc/19269/statm: 28282 363 305 221 0 87 0
[pid=19271] ppid=19269 vsize=28227388 memory=41236 CPUtime=0.34 cores=0-7
/proc/19271/stat : 19271 (java) S 19269 19269 19225 0 -1 1077944320 9557 0 0 0 31 3 0 0 20 0 20 0 419342633 28904845312 10309 33554432000 4194304 4196468 140726282927888 140726282910432 140547313254135 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
/proc/19271/statm: 7056847 10309 3311 1 0 7019032 0
[pid=19271/tid=19272] ppid=19269 vsize=28227388 memory=0 CPUtime=0.19 cores=0-7
/proc/19271/task/19272/stat : 19272 (java) R 19269 19269 19225 0 -1 4202560 6625 0 0 0 17 2 0 0 20 0 20 0 419342633 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547317488192 140547313266070 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19273] ppid=19269 vsize=28227388 memory=732370824896465893 CPUtime=0 cores=0-7
/proc/19271/task/19273/stat : 19273 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547265874192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19274] ppid=19269 vsize=28227388 memory=140686559012480 CPUtime=0 cores=0-7
/proc/19271/task/19274/stat : 19274 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547264821648 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19275] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19275/stat : 19275 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547263769104 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19276] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19276/stat : 19276 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547262716560 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19277] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19277/stat : 19277 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547261664016 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19278] ppid=19269 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/19271/task/19278/stat : 19278 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547260611472 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19279] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19279/stat : 19279 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547259558928 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19280] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19280/stat : 19280 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342634 28904845312 10309 33554432000 4194304 4196468 140726282927888 140547258506384 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19281] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19281/stat : 19281 (java) S 19269 19269 19225 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 20 0 419342636 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546496522224 140547313265282 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19282] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19282/stat : 19282 (java) S 19269 19269 19225 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419342636 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546495468448 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19283] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19283/stat : 19283 (java) S 19269 19269 19225 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419342636 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546494415856 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19284] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19284/stat : 19284 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546493364432 140547313272731 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19285] ppid=19269 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/19271/task/19285/stat : 19285 (java) S 19269 19269 19225 0 -1 1077944384 349 0 0 0 1 0 0 0 20 0 20 0 419342639 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546492312048 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19286] ppid=19269 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/19271/task/19286/stat : 19286 (java) S 19269 19269 19225 0 -1 1077944384 131 0 0 0 1 0 0 0 20 0 20 0 419342639 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546491259504 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19287] ppid=19269 vsize=28227388 memory=0 CPUtime=0.01 cores=0-7
/proc/19271/task/19287/stat : 19287 (java) S 19269 19269 19225 0 -1 1077944384 391 0 0 0 1 0 0 0 20 0 20 0 419342639 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546490206960 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19288] ppid=19269 vsize=28227388 memory=0 CPUtime=0.08 cores=0-7
/proc/19271/task/19288/stat : 19288 (java) R 19269 19269 19225 0 -1 4202560 745 0 0 0 8 0 0 0 20 0 20 0 419342639 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546489154416 140547298627861 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19289] ppid=19269 vsize=28227388 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19289/stat : 19289 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546488101088 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19290] ppid=19269 vsize=28227388 memory=-1 CPUtime=0 cores=0-7
/proc/19271/task/19290/stat : 19290 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342639 28904845312 10309 33554432000 4194304 4196468 140726282927888 140546487048624 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
Current children cumulated CPU time: 0.34 s
Current children cumulated vsize: 28340516 KiB
Current children cumulated memory: 42688 KiB

[startup+0.309603 s]*
/proc/loadavg: 7.91 7.88 7.64 5/212 19290
/proc/meminfo: memFree=30939708/32770624 swapFree=66935256/67108860
[pid=19269] ppid=19266 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/19269/stat : 19269 (xcsp3-exec) S 19266 19269 19225 0 -1 4202496 542 0 0 0 0 0 0 0 20 0 1 0 419342633 115843072 363 33554432000 4194304 5098028 140725002472368 140725002470472 139849779688060 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38428672 140725002478454 140725002478697 140725002478697 140725002481610 0
/proc/19269/statm: 28282 363 305 221 0 87 0
[pid=19271] ppid=19269 vsize=28231644 memory=50216 CPUtime=0.53 cores=0-7
/proc/19271/stat : 19271 (java) S 19269 19269 19225 0 -1 1077944320 10907 0 0 0 49 4 0 0 20 0 20 0 419342633 28909203456 12554 33554432000 4194304 4196468 140726282927888 140726282910432 140547313254135 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
/proc/19271/statm: 7057911 12554 3354 1 0 7019032 0
[pid=19271/tid=19272] ppid=19269 vsize=28231644 memory=6791534058613427641 CPUtime=0.3 cores=0-7
/proc/19271/task/19272/stat : 19272 (java) R 19269 19269 19225 0 -1 4202560 7780 0 0 0 27 3 0 0 20 0 20 0 419342633 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547317487896 140547297334622 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19273] ppid=19269 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19273/stat : 19273 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547265874192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19274] ppid=19269 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19274/stat : 19274 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547264821648 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19275] ppid=19269 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19275/stat : 19275 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547263769104 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19276] ppid=19269 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19276/stat : 19276 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547262716560 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19277] ppid=19269 vsize=28231644 memory=2244 CPUtime=0 cores=0-7
/proc/19271/task/19277/stat : 19277 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547261664016 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19278] ppid=19269 vsize=28231644 memory=140686418604975 CPUtime=0 cores=0-7
/proc/19271/task/19278/stat : 19278 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342634 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547260611472 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19279] ppid=19269 vsize=28231644 memory=140686418607280 CPUtime=0 cores=0-7
/proc/19271/task/19279/stat : 19279 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547259558928 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19280] ppid=19269 vsize=28231644 memory=140686418609584 CPUtime=0 cores=0-7
/proc/19271/task/19280/stat : 19280 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342634 28909203456 12554 33554432000 4194304 4196468 140726282927888 140547258506384 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19281] ppid=19269 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19281/stat : 19281 (java) S 19269 19269 19225 0 -1 1077944384 6 0 0 0 0 0 0 0 20 0 20 0 419342636 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546496522224 140547313265282 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19282] ppid=19269 vsize=28231644 memory=281372837226128 CPUtime=0 cores=0-7
/proc/19271/task/19282/stat : 19282 (java) S 19269 19269 19225 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 419342636 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546495468448 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19283] ppid=19269 vsize=28231644 memory=281372837233040 CPUtime=0 cores=0-7
/proc/19271/task/19283/stat : 19283 (java) S 19269 19269 19225 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 419342636 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546494415856 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19284] ppid=19269 vsize=28231644 memory=281372837174320 CPUtime=0 cores=0-7
/proc/19271/task/19284/stat : 19284 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342639 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546493364432 140547313272731 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19285] ppid=19269 vsize=28231644 memory=281372837246864 CPUtime=0.02 cores=0-7
/proc/19271/task/19285/stat : 19285 (java) S 19269 19269 19225 0 -1 1077944384 356 0 0 0 2 0 0 0 20 0 20 0 419342639 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546492312048 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19286] ppid=19269 vsize=28231644 memory=281372837253776 CPUtime=0.03 cores=0-7
/proc/19271/task/19286/stat : 19286 (java) S 19269 19269 19225 0 -1 1077944384 145 0 0 0 3 0 0 0 20 0 20 0 419342639 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546491259504 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19287] ppid=19269 vsize=28231644 memory=281372837251472 CPUtime=0.03 cores=0-7
/proc/19271/task/19287/stat : 19287 (java) R 19269 19269 19225 0 -1 4202560 489 0 0 0 3 0 0 0 20 0 20 0 419342639 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546490197344 140547294798319 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19288] ppid=19269 vsize=28231644 memory=281372837267632 CPUtime=0.12 cores=0-7
/proc/19271/task/19288/stat : 19288 (java) S 19269 19269 19225 0 -1 1077944384 826 0 0 0 12 0 0 0 20 0 20 0 419342639 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546489154416 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19289] ppid=19269 vsize=28231644 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19289/stat : 19289 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 419342639 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546488101088 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19290] ppid=19269 vsize=28231644 memory=-1 CPUtime=0 cores=0-7
/proc/19271/task/19290/stat : 19290 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342639 28909203456 12554 33554432000 4194304 4196468 140726282927888 140546487048624 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 28344772 KiB
Current children cumulated memory: 51668 KiB

[startup+0.700927 s]
/proc/loadavg: 7.91 7.88 7.64 5/212 19290
/proc/meminfo: memFree=30908044/32770624 swapFree=66935256/67108860
[pid=19269] ppid=19266 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/19269/stat : 19269 (xcsp3-exec) S 19266 19269 19225 0 -1 4202496 542 0 0 0 0 0 0 0 20 0 1 0 419342633 115843072 363 33554432000 4194304 5098028 140725002472368 140725002470472 139849779688060 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38428672 140725002478454 140725002478697 140725002478697 140725002481610 0
/proc/19269/statm: 28282 363 305 221 0 87 0
[pid=19271] ppid=19269 vsize=28233768 memory=119788 CPUtime=1.99 cores=0-7
/proc/19271/stat : 19271 (java) S 19269 19269 19225 0 -1 1077944320 16462 0 0 0 192 7 0 0 20 0 20 0 419342633 28911378432 29947 33554432000 4194304 4196468 140726282927888 140726282910432 140547313254135 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
/proc/19271/statm: 7058442 29947 3445 1 0 7019544 0
[pid=19271/tid=19272] ppid=19269 vsize=28233768 memory=281372837562560 CPUtime=0.67 cores=0-7
/proc/19271/task/19272/stat : 19272 (java) R 19269 19269 19225 0 -1 4202560 9156 0 0 0 63 4 0 0 20 0 20 0 419342633 28911378432 29947 33554432000 4194304 4196468 140726282927888 140547317490352 140547294648237 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19273] ppid=19269 vsize=28233768 memory=5076651345044 CPUtime=0 cores=0-7
/proc/19271/task/19273/stat : 19273 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28911378432 29947 33554432000 4194304 4196468 140726282927888 140547265874192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19274] ppid=19269 vsize=28233768 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19274/stat : 19274 (java) S 19269 19269 19225 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 20 0 419342634 28911378432 29947 33554432000 4194304 4196468 140726282927888 140547264821648 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19275] ppid=19269 vsize=28233768 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19275/stat : 19275 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 419342634 28911378432 29947 33554432000 4194304 4196468 140726282927888 140547263769104 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0

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

[pid=19271/tid=19517] ppid=19269 vsize=29300840 memory=0 CPUtime=1.51 cores=0-7
/proc/19271/task/19517/stat : 19517 (java) R 19269 19269 19225 0 -1 4202560 185 0 0 0 150 1 0 0 20 0 29 0 419343282 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546464161808 140546926095482 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19523] ppid=19269 vsize=29300840 memory=0 CPUtime=1.49 cores=0-7
/proc/19271/task/19523/stat : 19523 (java) R 19269 19269 19225 0 -1 4202560 32 0 0 0 149 0 0 0 20 0 29 0 419343284 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546466265896 140546923490238 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19524] ppid=19269 vsize=29300840 memory=0 CPUtime=1.49 cores=0-7
/proc/19271/task/19524/stat : 19524 (java) R 19269 19269 19225 0 -1 4202560 34 0 0 0 149 0 0 0 20 0 29 0 419343284 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546459950992 140546923490449 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19525] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19525/stat : 19525 (java) S 19269 19269 19225 0 -1 1077944384 24 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546461009136 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19526] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19526/stat : 19526 (java) S 19269 19269 19225 0 -1 1077944384 19 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546474694000 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19527] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19527/stat : 19527 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546463114736 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19528] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19528/stat : 19528 (java) S 19269 19269 19225 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546462062192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19529] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19529/stat : 19529 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546465219312 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19530] ppid=19269 vsize=29300840 memory=513 CPUtime=0 cores=0-7
/proc/19271/task/19530/stat : 19530 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 148430 33554432000 4194304 4196468 140726282927888 140546475746160 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
Current children cumulated CPU time: 41.82 s
Current children cumulated vsize: 29413968 KiB
Current children cumulated memory: 595172 KiB

[startup+8.80117 s]
/proc/loadavg: 7.82 7.86 7.64 4/221 19530
/proc/meminfo: memFree=30395188/32770624 swapFree=66935256/67108860
[pid=19269] ppid=19266 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/19269/stat : 19269 (xcsp3-exec) S 19266 19269 19225 0 -1 4202496 542 0 0 0 0 0 0 0 20 0 1 0 419342633 115843072 363 33554432000 4194304 5098028 140725002472368 140725002470472 139849779688060 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38428672 140725002478454 140725002478697 140725002478697 140725002481610 0
/proc/19269/statm: 28282 363 305 221 0 87 0
[pid=19271] ppid=19269 vsize=29300840 memory=635104 CPUtime=44.37 cores=0-7
/proc/19271/stat : 19271 (java) S 19269 19269 19225 0 -1 1077944320 47516 0 0 0 4370 67 0 0 20 0 29 0 419342633 30004060160 158776 33554432000 4194304 4196468 140726282927888 140726282910432 140547313254135 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
/proc/19271/statm: 7325210 158776 3534 1 0 7286312 0
[pid=19271/tid=19272] ppid=19269 vsize=29300840 memory=6791534058613427641 CPUtime=1.72 cores=0-7
/proc/19271/task/19272/stat : 19272 (java) S 19269 19269 19225 0 -1 1077944384 9809 0 0 0 165 7 0 0 20 0 29 0 419342633 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547317494912 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19273] ppid=19269 vsize=29300840 memory=0 CPUtime=0.08 cores=0-7
/proc/19271/task/19273/stat : 19273 (java) S 19269 19269 19225 0 -1 1077944384 151 0 0 0 4 4 0 0 20 0 29 0 419342634 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547265874192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19274] ppid=19269 vsize=29300840 memory=0 CPUtime=0.08 cores=0-7
/proc/19271/task/19274/stat : 19274 (java) S 19269 19269 19225 0 -1 1077944384 174 0 0 0 4 4 0 0 20 0 29 0 419342634 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547264821648 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19275] ppid=19269 vsize=29300840 memory=33 CPUtime=0.07 cores=0-7
/proc/19271/task/19275/stat : 19275 (java) S 19269 19269 19225 0 -1 1077944384 133 0 0 0 4 3 0 0 20 0 29 0 419342634 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547263769104 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19276] ppid=19269 vsize=29300840 memory=0 CPUtime=0.08 cores=0-7
/proc/19271/task/19276/stat : 19276 (java) S 19269 19269 19225 0 -1 1077944384 153 0 0 0 4 4 0 0 20 0 29 0 419342634 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547262716560 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19277] ppid=19269 vsize=29300840 memory=0 CPUtime=0.07 cores=0-7
/proc/19271/task/19277/stat : 19277 (java) S 19269 19269 19225 0 -1 1077944384 91 0 0 0 3 4 0 0 20 0 29 0 419342634 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547261664016 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19278] ppid=19269 vsize=29300840 memory=1452 CPUtime=0.07 cores=0-7
/proc/19271/task/19278/stat : 19278 (java) S 19269 19269 19225 0 -1 1077944384 108 0 0 0 3 4 0 0 20 0 29 0 419342634 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547260611472 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19279] ppid=19269 vsize=29300840 memory=602300 CPUtime=0.07 cores=0-7
/proc/19271/task/19279/stat : 19279 (java) S 19269 19269 19225 0 -1 1077944384 128 0 0 0 3 4 0 0 20 0 29 0 419342634 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547259558928 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19280] ppid=19269 vsize=29300840 memory=14133350919046965 CPUtime=0.07 cores=0-7
/proc/19271/task/19280/stat : 19280 (java) S 19269 19269 19225 0 -1 1077944384 136 0 0 0 4 3 0 0 20 0 29 0 419342634 30004060160 158776 33554432000 4194304 4196468 140726282927888 140547258506384 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19281] ppid=19269 vsize=29300840 memory=2532 CPUtime=0.01 cores=0-7
/proc/19271/task/19281/stat : 19281 (java) S 19269 19269 19225 0 -1 1077944384 628 0 0 0 1 0 0 0 20 0 29 0 419342636 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546496522224 140547313265282 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19282] ppid=19269 vsize=29300840 memory=1440 CPUtime=0 cores=0-7
/proc/19271/task/19282/stat : 19282 (java) S 19269 19269 19225 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 29 0 419342636 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546495468512 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19283] ppid=19269 vsize=29300840 memory=812 CPUtime=0 cores=0-7
/proc/19271/task/19283/stat : 19283 (java) S 19269 19269 19225 0 -1 1077944384 25 0 0 0 0 0 0 0 20 0 29 0 419342636 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546494415872 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19284] ppid=19269 vsize=29300840 memory=1772 CPUtime=0 cores=0-7
/proc/19271/task/19284/stat : 19284 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 29 0 419342639 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546493364432 140547313272731 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19285] ppid=19269 vsize=29300840 memory=111632 CPUtime=2.6 cores=0-7
/proc/19271/task/19285/stat : 19285 (java) S 19269 19269 19225 0 -1 1077944384 8449 0 0 0 257 3 0 0 20 0 29 0 419342639 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546492312048 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19286] ppid=19269 vsize=29300840 memory=804 CPUtime=2.58 cores=0-7
/proc/19271/task/19286/stat : 19286 (java) S 19269 19269 19225 0 -1 1077944384 5463 0 0 0 255 3 0 0 20 0 29 0 419342639 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546491259504 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19287] ppid=19269 vsize=29300840 memory=1656 CPUtime=2.73 cores=0-7
/proc/19271/task/19287/stat : 19287 (java) S 19269 19269 19225 0 -1 1077944384 6636 0 0 0 271 2 0 0 20 0 29 0 419342639 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546490206960 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19288] ppid=19269 vsize=29300840 memory=4096 CPUtime=1.27 cores=0-7
/proc/19271/task/19288/stat : 19288 (java) S 19269 19269 19225 0 -1 1077944384 6104 0 0 0 125 2 0 0 20 0 29 0 419342639 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546489154416 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19289] ppid=19269 vsize=29300840 memory=1808 CPUtime=0 cores=0-7
/proc/19271/task/19289/stat : 19289 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 29 0 419342639 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546488101088 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19290] ppid=19269 vsize=29300840 memory=920 CPUtime=0 cores=0-7
/proc/19271/task/19290/stat : 19290 (java) S 19269 19269 19225 0 -1 1077944384 87 0 0 0 0 0 0 0 20 0 29 0 419342639 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546487048624 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19517] ppid=19269 vsize=29300840 memory=3908 CPUtime=2.31 cores=0-7
/proc/19271/task/19517/stat : 19517 (java) R 19269 19269 19225 0 -1 4202560 931 0 0 0 229 2 0 0 20 0 29 0 419343282 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546464162000 140546923490449 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19523] ppid=19269 vsize=29300840 memory=0 CPUtime=2.28 cores=0-7
/proc/19271/task/19523/stat : 19523 (java) R 19269 19269 19225 0 -1 4202560 233 0 0 0 228 0 0 0 20 0 29 0 419343284 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546466265896 140546923490086 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19524] ppid=19269 vsize=29300840 memory=0 CPUtime=2.28 cores=0-7
/proc/19271/task/19524/stat : 19524 (java) R 19269 19269 19225 0 -1 4202560 268 0 0 0 228 0 0 0 20 0 29 0 419343284 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546459950992 140546923490287 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19525] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19525/stat : 19525 (java) S 19269 19269 19225 0 -1 1077944384 24 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546461009136 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19526] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19526/stat : 19526 (java) S 19269 19269 19225 0 -1 1077944384 19 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546474694000 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19527] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19527/stat : 19527 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546463114736 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19528] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19528/stat : 19528 (java) S 19269 19269 19225 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546462062192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19529] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19529/stat : 19529 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546465219312 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19530] ppid=19269 vsize=29300840 memory=281372838247968 CPUtime=0 cores=0-7
/proc/19271/task/19530/stat : 19530 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 158776 33554432000 4194304 4196468 140726282927888 140546475746160 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
Current children cumulated CPU time: 44.37 s
Current children cumulated vsize: 29413968 KiB
Current children cumulated memory: 636556 KiB

[startup+9.20119 s]
/proc/loadavg: 7.82 7.86 7.64 4/221 19530
/proc/meminfo: memFree=30342188/32770624 swapFree=66935256/67108860
[pid=19269] ppid=19266 vsize=113128 memory=1452 CPUtime=0 cores=0-7
/proc/19269/stat : 19269 (xcsp3-exec) S 19266 19269 19225 0 -1 4202496 542 0 0 0 0 0 0 0 20 0 1 0 419342633 115843072 363 33554432000 4194304 5098028 140725002472368 140725002470472 139849779688060 0 65536 4100 65538 18446744071579417331 0 0 17 2 0 0 0 0 0 7196144 7232144 38428672 140725002478454 140725002478697 140725002478697 140725002481610 0
/proc/19269/statm: 28282 363 305 221 0 87 0
[pid=19271] ppid=19269 vsize=29300840 memory=655584 CPUtime=45.64 cores=0-7
/proc/19271/stat : 19271 (java) S 19269 19269 19225 0 -1 1077944320 48471 0 0 0 4497 67 0 0 20 0 29 0 419342633 30004060160 163896 33554432000 4194304 4196468 140726282927888 140726282910432 140547313254135 0 0 0 16800975 18446744073709551615 0 0 17 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
/proc/19271/statm: 7325210 163896 3534 1 0 7286312 0
[pid=19271/tid=19272] ppid=19269 vsize=29300840 memory=0 CPUtime=1.72 cores=0-7
/proc/19271/task/19272/stat : 19272 (java) S 19269 19269 19225 0 -1 1077944384 9809 0 0 0 165 7 0 0 20 0 29 0 419342633 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547317494912 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19273] ppid=19269 vsize=29300840 memory=0 CPUtime=0.08 cores=0-7
/proc/19271/task/19273/stat : 19273 (java) S 19269 19269 19225 0 -1 1077944384 151 0 0 0 4 4 0 0 20 0 29 0 419342634 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547265874192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19274] ppid=19269 vsize=29300840 memory=0 CPUtime=0.08 cores=0-7
/proc/19271/task/19274/stat : 19274 (java) S 19269 19269 19225 0 -1 1077944384 174 0 0 0 4 4 0 0 20 0 29 0 419342634 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547264821648 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19275] ppid=19269 vsize=29300840 memory=0 CPUtime=0.07 cores=0-7
/proc/19271/task/19275/stat : 19275 (java) S 19269 19269 19225 0 -1 1077944384 133 0 0 0 4 3 0 0 20 0 29 0 419342634 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547263769104 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19276] ppid=19269 vsize=29300840 memory=0 CPUtime=0.08 cores=0-7
/proc/19271/task/19276/stat : 19276 (java) S 19269 19269 19225 0 -1 1077944384 153 0 0 0 4 4 0 0 20 0 29 0 419342634 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547262716560 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19277] ppid=19269 vsize=29300840 memory=0 CPUtime=0.07 cores=0-7
/proc/19271/task/19277/stat : 19277 (java) S 19269 19269 19225 0 -1 1077944384 91 0 0 0 3 4 0 0 20 0 29 0 419342634 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547261664016 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19278] ppid=19269 vsize=29300840 memory=0 CPUtime=0.07 cores=0-7
/proc/19271/task/19278/stat : 19278 (java) S 19269 19269 19225 0 -1 1077944384 108 0 0 0 3 4 0 0 20 0 29 0 419342634 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547260611472 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19279] ppid=19269 vsize=29300840 memory=0 CPUtime=0.07 cores=0-7
/proc/19271/task/19279/stat : 19279 (java) S 19269 19269 19225 0 -1 1077944384 128 0 0 0 3 4 0 0 20 0 29 0 419342634 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547259558928 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19280] ppid=19269 vsize=29300840 memory=0 CPUtime=0.07 cores=0-7
/proc/19271/task/19280/stat : 19280 (java) S 19269 19269 19225 0 -1 1077944384 136 0 0 0 4 3 0 0 20 0 29 0 419342634 30004060160 163896 33554432000 4194304 4196468 140726282927888 140547258506384 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19281] ppid=19269 vsize=29300840 memory=0 CPUtime=0.01 cores=0-7
/proc/19271/task/19281/stat : 19281 (java) S 19269 19269 19225 0 -1 1077944384 628 0 0 0 1 0 0 0 20 0 29 0 419342636 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546496522224 140547313265282 0 0 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19282] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19282/stat : 19282 (java) S 19269 19269 19225 0 -1 1077944384 35 0 0 0 0 0 0 0 20 0 29 0 419342636 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546495468512 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19283] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19283/stat : 19283 (java) S 19269 19269 19225 0 -1 1077944384 25 0 0 0 0 0 0 0 20 0 29 0 419342636 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546494415872 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19284] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19284/stat : 19284 (java) S 19269 19269 19225 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 29 0 419342639 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546493364432 140547313272731 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19285] ppid=19269 vsize=29300840 memory=0 CPUtime=2.62 cores=0-7
/proc/19271/task/19285/stat : 19285 (java) S 19269 19269 19225 0 -1 1077944384 8576 0 0 0 259 3 0 0 20 0 29 0 419342639 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546492312048 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19286] ppid=19269 vsize=29300840 memory=0 CPUtime=2.59 cores=0-7
/proc/19271/task/19286/stat : 19286 (java) S 19269 19269 19225 0 -1 1077944384 5593 0 0 0 256 3 0 0 20 0 29 0 419342639 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546491259504 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19287] ppid=19269 vsize=29300840 memory=0 CPUtime=2.78 cores=0-7
/proc/19271/task/19287/stat : 19287 (java) S 19269 19269 19225 0 -1 1077944384 7190 0 0 0 276 2 0 0 20 0 29 0 419342639 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546490206960 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19288] ppid=19269 vsize=29300840 memory=0 CPUtime=1.27 cores=0-7
/proc/19271/task/19288/stat : 19288 (java) S 19269 19269 19225 0 -1 1077944384 6109 0 0 0 125 2 0 0 20 0 29 0 419342639 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546489154416 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19289] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19289/stat : 19289 (java) S 19269 19269 19225 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 29 0 419342639 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546488101088 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19290] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19290/stat : 19290 (java) S 19269 19269 19225 0 -1 1077944384 87 0 0 0 0 0 0 0 20 0 29 0 419342639 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546487048624 140547313265282 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19517] ppid=19269 vsize=29300840 memory=0 CPUtime=2.7 cores=0-7
/proc/19271/task/19517/stat : 19517 (java) R 19269 19269 19225 0 -1 4202560 1066 0 0 0 268 2 0 0 20 0 29 0 419343282 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546464162000 140546926358151 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19523] ppid=19269 vsize=29300840 memory=0 CPUtime=2.68 cores=0-7
/proc/19271/task/19523/stat : 19523 (java) R 19269 19269 19225 0 -1 4202560 234 0 0 0 268 0 0 0 20 0 29 0 419343284 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546466265896 140546924341344 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19524] ppid=19269 vsize=29300840 memory=0 CPUtime=2.68 cores=0-7
/proc/19271/task/19524/stat : 19524 (java) R 19269 19269 19225 0 -1 4202560 271 0 0 0 268 0 0 0 20 0 29 0 419343284 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546459950992 140546923490408 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19525] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19525/stat : 19525 (java) S 19269 19269 19225 0 -1 1077944384 24 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546461009136 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19526] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19526/stat : 19526 (java) S 19269 19269 19225 0 -1 1077944384 19 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546474694000 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19527] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19527/stat : 19527 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546463114736 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19528] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19528/stat : 19528 (java) S 19269 19269 19225 0 -1 1077944384 18 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546462062192 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19529] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19529/stat : 19529 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546465219312 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
[pid=19271/tid=19530] ppid=19269 vsize=29300840 memory=0 CPUtime=0 cores=0-7
/proc/19271/task/19530/stat : 19530 (java) S 19269 19269 19225 0 -1 1077944384 17 0 0 0 0 0 0 0 20 0 29 0 419343284 30004060160 163896 33554432000 4194304 4196468 140726282927888 140546475746160 140547313264341 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 7299072 140726282933226 140726282933398 140726282933398 140726282936271 0
Current children cumulated CPU time: 45.64 s
Current children cumulated vsize: 29413968 KiB
Current children cumulated memory: 657036 KiB

Child status: 0
Real time (s): 9.27531
CPU time (s): 45.9143
CPU user time (s): 45.1396
CPU system time (s): 0.774653
CPU usage (%): 495.016
Max. virtual memory (cumulated for all children) (KiB): 29413968
Max. memory (cumulated for all children) (KiB): 657036

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 45.1396
system time used= 0.774653
maximum resident set size= 694272
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 52402
page faults= 0
swaps= 0
block input operations= 0
block output operations= 152
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 7537
involuntary context switches= 1012


# summary of solver processes directly reported to runsolver:
#   pid: 19269
#   total CPU time (s): 45.9143
#   total CPU user time (s): 45.1396
#   total CPU system time (s): 0.774653

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 0.112498 second user time and 0.129939 second system time

The end

Launcher Data

Begin job on node151 at 2019-09-14 05:11:13
IDJOB=4393797
IDBENCH=127998
IDSOLVER=2841
FILE ID=node151/4393797-1568430712
RUNJOBID= node151-1568430672-19252
PBS_JOBID= 21702312
Free space on /tmp= 59308 MiB

SOLVER NAME= choco-solver parallel 2019-06-14
BENCH NAME= XCSP17/PrizeCollecting/PrizeCollecting-jok-s1/PrizeCollecting-24-4-6-3.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-4393797-1568430712/watcher-4393797-1568430712 -o /tmp/evaluation-result-4393797-1568430712/solver-4393797-1568430712 -C 20160 -W 2520 -M 31000 --bin-var /tmp/runsolver-exch-node151-1568430672-19252 --watchdog 2580  xcsp3-exec -dir HOME -tl 20160 -p 8 -ml 24000 -tdir HOME -seed 327094946 HOME/instance-4393797-1568430712.xml

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

MD5SUM BENCH= 95a2ddfb0d7ed65af35b4a4f8b00191d
RANDOM SEED=327094946

node151.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.53
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	: 5335.75
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.53
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	: 5335.75
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.53
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	: 5335.75
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.53
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	: 5335.75
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        30977772 kB
MemAvailable:   31853152 kB
Buffers:          184612 kB
Cached:           983180 kB
SwapCached:        71068 kB
Active:           640416 kB
Inactive:         599236 kB
Active(anon):       7988 kB
Inactive(anon):    97192 kB
Active(file):     632428 kB
Inactive(file):   502044 kB
Unevictable:      111128 kB
Mlocked:          111128 kB
SwapTotal:      67108860 kB
SwapFree:       66935256 kB
Dirty:             26888 kB
Writeback:             0 kB
AnonPages:        112004 kB
Mapped:            37020 kB
Shmem:             24488 kB
Slab:             141876 kB
SReclaimable:     113484 kB
SUnreclaim:        28392 kB
KernelStack:        3296 kB
PageTables:         4408 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     497772 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:     69632 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      138624 kB
DirectMap2M:    33406976 kB

Free space on /tmp at the end= 59284 MiB
End job on node151 at 2019-09-14 05:11:22