Trace number 4243934

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerCPU timeWall clock time
R1: sat4j-CSP 2017-07-05? 865.732 296.187

General information on the benchmark

NameMagicSquare/MagicSquare-sum-s1/
MagicSquare-23-sum.xml
MD5SUMd4be5d2e2f36b13e59ce195ffddd0d7a
Bench CategoryCSP (decision problem)
Best result obtained on this benchmark
Best value of the objective obtained on this benchmark
Best CPU time to get the best result obtained on this benchmark
Satisfiable
(Un)Satisfiability was proved
Number of variables529
Number of constraints49
Number of domains1
Minimum domain size529
Maximum domain size529
Distribution of domain sizes[{"size":529,"count":529}]
Minimum variable degree3
Maximum variable degree5
Distribution of variable degrees[{"degree":3,"count":484},{"degree":4,"count":44},{"degree":5,"count":1}]
Minimum constraint arity23
Maximum constraint arity529
Distribution of constraint arities[{"arity":23,"count":48},{"arity":529,"count":1}]
Number of extensional constraints0
Number of intensional constraints0
Distribution of constraint types[{"type":"allDifferent","count":1},{"type":"sum","count":48}]
Optimization problemNO
Type of objective

Solver Data

865.65/295.93	Jul 22, 2017 1:02:36 AM org.sat4j.reader.XMLCSP3Reader parseInstance
865.65/295.93	INFO: Runtime exception
865.65/295.93	java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeExpression(TseitinBasedIntensionCtrEncoder.java:77)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encode(TseitinBasedIntensionCtrEncoder.java:58)
865.65/295.93		at org.sat4j.csp.constraints3.CountingCtrBuilder.buildCtrSum(CountingCtrBuilder.java:88)
865.65/295.93		at org.sat4j.csp.constraints3.CountingCtrBuilder.buildCtrSum(CountingCtrBuilder.java:50)
865.65/295.93		at org.sat4j.reader.XMLCSP3Reader.buildCtrSum(XMLCSP3Reader.java:571)
865.65/295.93		at org.xcsp.parser.loaders.CtrLoaderInteger.sum(CtrLoaderInteger.java:477)
865.65/295.93		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:151)
865.65/295.93		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
865.65/295.93		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:440)
865.65/295.93		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
865.65/295.93		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
865.65/295.93		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
865.65/295.93		at org.xcsp.parser.XCallbacks.loadGroup(XCallbacks.java:406)
865.65/295.93		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
865.65/295.93		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
865.65/295.93		at org.sat4j.reader.XMLCSP3Reader.loadInstance(XMLCSP3Reader.java:328)
865.65/295.93		at org.sat4j.reader.XMLCSP3Reader.parseInstance(XMLCSP3Reader.java:293)
865.65/295.93		at org.sat4j.reader.Reader.parseInstance(Reader.java:73)
865.65/295.93		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:201)
865.65/295.93		at org.sat4j.csp.CSPLauncher.readProblem(CSPLauncher.java:95)
865.65/295.93		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:255)
865.65/295.93		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:119)
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 22 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 27 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 28 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 33 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 34 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 39 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 40 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 45 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 46 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 51 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 52 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 57 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 58 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 63 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 64 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 69 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 70 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		... 75 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		... 76 more
865.65/295.93	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:127)
865.65/295.93		... 81 more
865.65/295.93	Caused by: java.lang.reflect.InvocationTargetException
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:125)
865.65/295.93		... 81 more
865.65/295.93	Caused by: java.lang.OutOfMemoryError: Java heap space
865.65/295.93		at org.sat4j.core.Vec.ensure(Vec.java:176)
865.65/295.93		at org.sat4j.core.Vec.push(Vec.java:183)
865.65/295.93		at org.sat4j.minisat.core.Solver.addConstr(Solver.java:1967)
865.65/295.93		at org.sat4j.minisat.core.Solver.addClause(Solver.java:426)
865.65/295.93		at org.sat4j.csp.CspSatSolverDecorator.addClause(CspSatSolverDecorator.java:147)
865.65/295.93		at org.sat4j.tools.SolverDecorator.addClause(SolverDecorator.java:236)
865.65/295.93		at org.sat4j.csp.intension.CspToPBSolverDecorator.addClause(CspToPBSolverDecorator.java:85)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.buildImplVar(TseitinBasedIntensionCtrEncoder.java:528)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorAdd(TseitinBasedIntensionCtrEncoder.java:158)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:125)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
865.65/295.93		at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
865.65/295.93		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
865.65/295.93		at java.lang.reflect.Method.invoke(Method.java:498)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
865.65/295.93		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:119)
865.65/295.93	
865.67/296.13	c SAT4J: a SATisfiability library for Java (c) 2004-2013 Artois University and CNRS
865.67/296.13	c This is free software under the dual EPL/GNU LGPL licenses.
865.67/296.13	c See www.sat4j.org for details.
865.67/296.13	c That software uses the Rhino library from the Mozilla project.
865.67/296.13	c version CUSTOM.v20170705
865.67/296.13	c java.runtime.name	Java(TM) SE Runtime Environment
865.67/296.13	c java.vm.name		Java HotSpot(TM) 64-Bit Server VM
865.67/296.13	c java.vm.version	25.131-b11
865.67/296.13	c java.vm.vendor	Oracle Corporation
865.67/296.13	c sun.arch.data.model	64
865.67/296.13	c java.version		1.8.0_131
865.67/296.13	c os.name		Linux
865.67/296.13	c os.version		3.10.0-514.16.1.el7.x86_64
865.67/296.13	c os.arch		amd64
865.67/296.13	c Free memory 		499604488
865.67/296.13	c Max memory 		7247757312
865.67/296.13	c Total memory 		504889344
865.67/296.13	c Number of processors 	8
865.67/296.13	c c --- Begin Solver configuration ---
865.67/296.13	c org.sat4j.pb.constraints.CompetResolutionPBLongMixedWLClauseCardConstrDataStructure@2b71fc7e
865.67/296.13	c Learn all clauses as in MiniSAT
865.67/296.13	c LOGGER=java.util.logging.Logger@25f38edc claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
865.67/296.13	c VSIDS like heuristics from MiniSAT using a heap lightweight component caching from RSAT taking into account the objective function
865.67/296.13	c No reason simplification
865.67/296.13	c Glucose 2.1 dynamic restart strategy
865.67/296.13	c Glucose 2 learned constraints deletion strategy (LBD updated on propagation) with timer check every 1000 if the learned constraints reach increasing bounds: 5000 step 1000
865.67/296.13	c timeout=2147483s
865.67/296.13	c DB Simplification allowed=false
865.67/296.13	c Listener: org.sat4j.minisat.core.VoidTracing@1a86f2f1
865.67/296.13	c --- End Solver configuration ---
865.67/296.13	c starts		: 0
865.67/296.13	c conflicts		: 0
865.67/296.13	c decisions		: 0
865.67/296.13	c propagations		: 0
865.67/296.13	c inspects		: 0
865.67/296.13	c shortcuts		: 0
865.67/296.13	c learnt literals	: 0
865.67/296.13	c learnt binary clauses	: 0
865.67/296.13	c learnt ternary clauses	: 0
865.67/296.13	c learnt constraints	: 0
865.67/296.13	c ignored constraints	: 0
865.67/296.13	c root simplifications	: 0
865.67/296.13	c removed literals (reason simplification)	: 0
865.67/296.13	c reason swapping (by a shorter reason)	: 0
865.67/296.13	c Calls to reduceDB	: 0
865.67/296.13	c Number of update (reduction) of LBD	: 0
865.67/296.13	c Imported unit clauses	: 0
865.67/296.13	c number of reductions to clauses (during analyze)	: 0
865.67/296.13	c number of learned constraints concerned by reduction	: 0
865.67/296.13	c number of learning phase by resolution	: 0
865.67/296.13	c number of learning phase by cutting planes	: 0
865.67/296.13	c number of rounding to 1 operations	: 0
865.67/296.13	c number of easy rounding to 1 operations (no literal elimination needed)	: 0
865.67/296.13	c number of reductions of the coefficients by power 2 	: 0
865.67/296.13	c number of right shift for reduction by power 2 	: 0
865.67/296.13	c number of reductions of the coefficients by GCD over coefficients 	: 0
865.67/296.13	c speed (assignments/second)	: 0.0
865.67/296.13	c non guided choices	0
865.67/296.13	c learnt constraints type 
865.67/296.13	s UNKNOWN

Verifier Data


Watcher Data

runsolver Copyright (C) 2010-2013 Olivier ROUSSEL

This is runsolver version 3.3.7 (svn: 2553)

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.

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4243934-1500677860/watcher-4243934-1500677860 -o /tmp/evaluation-result-4243934-1500677860/solver-4243934-1500677860 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node145-1500669853-12912 --watchdog 2560 java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4243934-1500677860.xml 

pid=14638
running on 8 cores: 1,3,5,7,9,11,13,15

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2400 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2430 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2500 seconds
Enforcing VSIZE limit (soft limit, will send SIGTERM then SIGKILL): 15872000 KiB
Enforcing VSIZE limit (hard limit, stack expansion will fail with SIGSEGV, brk() and mmap() will return ENOMEM): 15923200 KiB
Current StackSize limit: 8192 KiB


[startup+0 s]
/proc/loadavg: 1.00 1.30 2.15 2/235 14641
/proc/meminfo: memFree=32125380/32770624 swapFree=5764/32888
[pid=14641] ppid=14638 vsize=361196 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 1715 0 0 0 0 0 0 0 20 0 2 0 3051141 369864704 1935 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16784584 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 90299 1935 1081 1 0 79210 0
[pid=14641/tid=14642] ppid=14638 vsize=361196 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) S 14638 14641 9811 0 -1 1077944384 410 0 0 0 0 0 0 0 20 0 2 0 3051142 369864704 1935 33554432000 4194304 4196468 140734880075168 139706389035424 139706384804482 0 4 0 16784584 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0

[startup+0.100118 s]
/proc/loadavg: 1.00 1.30 2.15 2/235 14641
/proc/meminfo: memFree=32125380/32770624 swapFree=5764/32888
[pid=14641] ppid=14638 vsize=10900556 CPUtime=0.09 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 4997 0 0 0 8 1 0 0 20 0 20 0 3051141 11162169344 6080 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2725139 6080 2625 1 0 2713552 0
[pid=14641/tid=14642] ppid=14638 vsize=10900556 CPUtime=0.08 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) R 14638 14641 9811 0 -1 4202560 3082 0 0 0 7 1 0 0 20 0 20 0 3051142 11162169344 6080 33554432000 4194304 4196468 140734880075168 139706389035616 139706384815261 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 0.09
Current children cumulated vsize (KiB) 10900556

[startup+0.200389 s]
/proc/loadavg: 1.00 1.30 2.15 2/235 14641
/proc/meminfo: memFree=32125380/32770624 swapFree=5764/32888
[pid=14641] ppid=14638 vsize=10900556 CPUtime=0.26 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 7103 0 0 0 24 2 0 0 20 0 20 0 3051141 11162169344 8427 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2725139 8427 2853 1 0 2713552 0
[pid=14641/tid=14642] ppid=14638 vsize=10900556 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) R 14638 14641 9811 0 -1 4202560 4798 0 0 0 17 1 0 0 20 0 20 0 3051142 11162169344 8427 33554432000 4194304 4196468 140734880075168 139706389014640 139706384815357 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 0.26
Current children cumulated vsize (KiB) 10900556

[startup+0.300388 s]
/proc/loadavg: 1.00 1.30 2.15 2/235 14641
/proc/meminfo: memFree=32125380/32770624 swapFree=5764/32888
[pid=14641] ppid=14638 vsize=10900556 CPUtime=0.42 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 8470 0 0 0 40 2 0 0 20 0 20 0 3051141 11162169344 10736 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2725139 10736 2973 1 0 2713552 0
[pid=14641/tid=14642] ppid=14638 vsize=10900556 CPUtime=0.27 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) R 14638 14641 9811 0 -1 4202560 5463 0 0 0 26 1 0 0 20 0 20 0 3051142 11162169344 10736 33554432000 4194304 4196468 140734880075168 139706389023520 139706384805270 0 4 0 16800975 0 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 0.42
Current children cumulated vsize (KiB) 10900556

[startup+0.700285 s]
/proc/loadavg: 1.00 1.30 2.15 2/235 14641
/proc/meminfo: memFree=32125380/32770624 swapFree=5764/32888
[pid=14641] ppid=14638 vsize=10900632 CPUtime=1.83 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 10811 0 0 0 136 47 0 0 20 0 20 0 3051141 11162247168 91440 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2725158 91440 3093 1 0 2713552 0
[pid=14641/tid=14642] ppid=14638 vsize=10900632 CPUtime=0.57 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) S 14638 14641 9811 0 -1 1077944384 5915 0 0 0 52 5 0 0 20 0 20 0 3051142 11162247168 91440 33554432000 4194304 4196468 140734880075168 139706389030592 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 1.83
Current children cumulated vsize (KiB) 10900632

[startup+1.50163 s]
/proc/loadavg: 1.00 1.30 2.15 2/255 14661
/proc/meminfo: memFree=31531404/32770624 swapFree=5764/32916
[pid=14641] ppid=14638 vsize=10900632 CPUtime=3.67 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 13990 0 0 0 284 83 0 0 20 0 20 0 3051141 11162247168 165428 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2725158 165428 3107 1 0 2713552 0
[pid=14641/tid=14642] ppid=14638 vsize=10900632 CPUtime=1.28 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) R 14638 14641 9811 0 -1 4202560 6303 0 0 0 120 8 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706389032392 139705977528882 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14644] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14644/stat : 14644 (java) S 14638 14641 9811 0 -1 1077944384 164 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706310867984 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14645] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14645/stat : 14645 (java) S 14638 14641 9811 0 -1 1077944384 151 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706309815440 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14646] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14646/stat : 14646 (java) S 14638 14641 9811 0 -1 1077944384 158 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706308762384 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14647] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14647/stat : 14647 (java) S 14638 14641 9811 0 -1 1077944384 160 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706307709840 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14648] ppid=14638 vsize=10900632 CPUtime=0.16 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14648/stat : 14648 (java) S 14638 14641 9811 0 -1 1077944384 150 0 0 0 8 8 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706306656784 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14649] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14649/stat : 14649 (java) S 14638 14641 9811 0 -1 1077944384 173 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706305604240 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14650] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14650/stat : 14650 (java) S 14638 14641 9811 0 -1 1077944384 173 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706304551184 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14651] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14651/stat : 14651 (java) S 14638 14641 9811 0 -1 1077944384 154 0 0 0 9 8 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706303498640 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14652] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14652/stat : 14652 (java) S 14638 14641 9811 0 -1 1077944384 489 0 0 0 0 0 0 0 20 0 20 0 3051145 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705135852272 139706384804482 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14653] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14653/stat : 14653 (java) S 14638 14641 9811 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705134798560 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14654] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14654/stat : 14654 (java) S 14638 14641 9811 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705133745392 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14655] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14655/stat : 14655 (java) S 14638 14641 9811 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705132693968 139706384811931 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14656] ppid=14638 vsize=10900632 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14656/stat : 14656 (java) S 14638 14641 9811 0 -1 1077944384 1492 0 0 0 22 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705131641072 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14657] ppid=14638 vsize=10900632 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14657/stat : 14657 (java) S 14638 14641 9811 0 -1 1077944384 955 0 0 0 21 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705130588528 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14658] ppid=14638 vsize=10900632 CPUtime=0.28 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14658/stat : 14658 (java) S 14638 14641 9811 0 -1 1077944384 1219 0 0 0 28 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705129535472 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14659] ppid=14638 vsize=10900632 CPUtime=0.19 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14659/stat : 14659 (java) S 14638 14641 9811 0 -1 1077944384 884 0 0 0 19 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705128482928 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14660] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14660/stat : 14660 (java) S 14638 14641 9811 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705127431136 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14661] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14661/stat : 14661 (java) S 14638 14641 9811 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705126378672 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 3.67
Current children cumulated vsize (KiB) 10900632

[startup+3.10084 s]
/proc/loadavg: 1.00 1.30 2.15 2/255 14661
/proc/meminfo: memFree=31473612/32770624 swapFree=5764/32916
[pid=14641] ppid=14638 vsize=10900632 CPUtime=5.28 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 14157 0 0 0 445 83 0 0 20 0 20 0 3051141 11162247168 165428 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2725158 165428 3107 1 0 2713552 0
[pid=14641/tid=14642] ppid=14638 vsize=10900632 CPUtime=2.88 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) R 14638 14641 9811 0 -1 4202560 6438 0 0 0 280 8 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706389032392 139705977528808 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14644] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14644/stat : 14644 (java) S 14638 14641 9811 0 -1 1077944384 164 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706310867984 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14645] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14645/stat : 14645 (java) S 14638 14641 9811 0 -1 1077944384 151 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706309815440 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14646] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14646/stat : 14646 (java) S 14638 14641 9811 0 -1 1077944384 158 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706308762384 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14647] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14647/stat : 14647 (java) S 14638 14641 9811 0 -1 1077944384 160 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706307709840 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14648] ppid=14638 vsize=10900632 CPUtime=0.16 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14648/stat : 14648 (java) S 14638 14641 9811 0 -1 1077944384 150 0 0 0 8 8 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706306656784 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14649] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14649/stat : 14649 (java) S 14638 14641 9811 0 -1 1077944384 173 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706305604240 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14650] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14650/stat : 14650 (java) S 14638 14641 9811 0 -1 1077944384 173 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706304551184 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14651] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14651/stat : 14651 (java) S 14638 14641 9811 0 -1 1077944384 154 0 0 0 9 8 0 0 20 0 20 0 3051142 11162247168 165428 33554432000 4194304 4196468 140734880075168 139706303498640 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14652] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14652/stat : 14652 (java) S 14638 14641 9811 0 -1 1077944384 489 0 0 0 0 0 0 0 20 0 20 0 3051145 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705135852272 139706384804482 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14653] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14653/stat : 14653 (java) S 14638 14641 9811 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705134798560 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14654] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14654/stat : 14654 (java) S 14638 14641 9811 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705133745392 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14655] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14655/stat : 14655 (java) S 14638 14641 9811 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705132693968 139706384811931 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14656] ppid=14638 vsize=10900632 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14656/stat : 14656 (java) S 14638 14641 9811 0 -1 1077944384 1492 0 0 0 22 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705131641072 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14657] ppid=14638 vsize=10900632 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14657/stat : 14657 (java) S 14638 14641 9811 0 -1 1077944384 955 0 0 0 21 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705130588528 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14658] ppid=14638 vsize=10900632 CPUtime=0.28 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14658/stat : 14658 (java) S 14638 14641 9811 0 -1 1077944384 1219 0 0 0 28 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705129535472 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14659] ppid=14638 vsize=10900632 CPUtime=0.19 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14659/stat : 14659 (java) S 14638 14641 9811 0 -1 1077944384 884 0 0 0 19 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705128482928 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14660] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14660/stat : 14660 (java) S 14638 14641 9811 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705127431136 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14661] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14661/stat : 14661 (java) S 14638 14641 9811 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 165428 33554432000 4194304 4196468 140734880075168 139705126378672 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 5.28
Current children cumulated vsize (KiB) 10900632

[startup+6.30083 s]
/proc/loadavg: 1.00 1.29 2.15 2/255 14661
/proc/meminfo: memFree=31473024/32770624 swapFree=5764/32936
[pid=14641] ppid=14638 vsize=10900632 CPUtime=8.48 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 15068 0 0 0 765 83 0 0 20 0 20 0 3051141 11162247168 165444 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2725158 165444 3107 1 0 2713552 0
[pid=14641/tid=14642] ppid=14638 vsize=10900632 CPUtime=6.08 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) R 14638 14641 9811 0 -1 4202560 6660 0 0 0 600 8 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706389029232 139705977528808 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14644] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14644/stat : 14644 (java) S 14638 14641 9811 0 -1 1077944384 164 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706310867984 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14645] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14645/stat : 14645 (java) S 14638 14641 9811 0 -1 1077944384 151 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706309815440 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14646] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14646/stat : 14646 (java) S 14638 14641 9811 0 -1 1077944384 158 0 0 0 8 9 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706308762384 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14647] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14647/stat : 14647 (java) S 14638 14641 9811 0 -1 1077944384 160 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706307709840 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14648] ppid=14638 vsize=10900632 CPUtime=0.16 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14648/stat : 14648 (java) S 14638 14641 9811 0 -1 1077944384 150 0 0 0 8 8 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706306656784 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14649] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14649/stat : 14649 (java) S 14638 14641 9811 0 -1 1077944384 173 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706305604240 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14650] ppid=14638 vsize=10900632 CPUtime=0.18 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14650/stat : 14650 (java) S 14638 14641 9811 0 -1 1077944384 173 0 0 0 9 9 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706304551184 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14651] ppid=14638 vsize=10900632 CPUtime=0.17 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14651/stat : 14651 (java) S 14638 14641 9811 0 -1 1077944384 154 0 0 0 9 8 0 0 20 0 20 0 3051142 11162247168 165444 33554432000 4194304 4196468 140734880075168 139706303498640 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14652] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14652/stat : 14652 (java) S 14638 14641 9811 0 -1 1077944384 789 0 0 0 0 0 0 0 20 0 20 0 3051145 11162247168 165444 33554432000 4194304 4196468 140734880075168 139705135852272 139706384804482 0 0 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14653] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14653/stat : 14653 (java) S 14638 14641 9811 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 165444 33554432000 4194304 4196468 140734880075168 139705134798560 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14654] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14654/stat : 14654 (java) S 14638 14641 9811 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 165444 33554432000 4194304 4196468 140734880075168 139705133745392 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14655] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15

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

[pid=14641/tid=14650] ppid=14638 vsize=10900632 CPUtime=81.06 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14650/stat : 14650 (java) S 14638 14641 9811 0 -1 1077944384 25567 0 0 0 7743 363 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706304551184 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14651] ppid=14638 vsize=10900632 CPUtime=81.15 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14651/stat : 14651 (java) S 14638 14641 9811 0 -1 1077944384 25791 0 0 0 7768 347 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706303498640 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14652] ppid=14638 vsize=10900632 CPUtime=16.66 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14652/stat : 14652 (java) R 14638 14641 9811 0 -1 4202560 32687 0 0 0 1664 2 0 0 20 0 20 0 3051145 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705135850720 139706369789759 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14653] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14653/stat : 14653 (java) S 14638 14641 9811 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705134798560 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14654] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14654/stat : 14654 (java) S 14638 14641 9811 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705133745392 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14655] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14655/stat : 14655 (java) S 14638 14641 9811 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705132693968 139706384811931 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14656] ppid=14638 vsize=10900632 CPUtime=0.35 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14656/stat : 14656 (java) S 14638 14641 9811 0 -1 1077944384 2611 0 0 0 35 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705131640832 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14657] ppid=14638 vsize=10900632 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14657/stat : 14657 (java) S 14638 14641 9811 0 -1 1077944384 2135 0 0 0 32 1 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705130588576 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14658] ppid=14638 vsize=10900632 CPUtime=0.39 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14658/stat : 14658 (java) S 14638 14641 9811 0 -1 1077944384 2424 0 0 0 39 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705129535520 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14659] ppid=14638 vsize=10900632 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14659/stat : 14659 (java) S 14638 14641 9811 0 -1 1077944384 1215 0 0 0 21 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705128482976 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14660] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14660/stat : 14660 (java) S 14638 14641 9811 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705127431136 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14661] ppid=14638 vsize=10900632 CPUtime=0.12 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14661/stat : 14661 (java) S 14638 14641 9811 0 -1 1077944384 682 0 0 0 6 6 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705126378672 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 864.96
Current children cumulated vsize (KiB) 10900632

[startup+295.601 s]
/proc/loadavg: 4.36 2.24 2.25 9/256 14699
/proc/meminfo: memFree=23981360/32770624 swapFree=5764/33172
[pid=14641] ppid=14638 vsize=10900632 CPUtime=865.36 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 333840 0 0 0 83715 2821 0 0 20 0 20 0 3051141 11162247168 2034563 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2725158 2034563 3128 1 0 2713552 0
[pid=14641/tid=14642] ppid=14638 vsize=10900632 CPUtime=195.47 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) S 14638 14641 9811 0 -1 1077944384 28937 0 0 0 19529 18 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706389005968 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14644] ppid=14638 vsize=10900632 CPUtime=81.43 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14644/stat : 14644 (java) S 14638 14641 9811 0 -1 1077944384 27521 0 0 0 7794 349 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706310867984 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14645] ppid=14638 vsize=10900632 CPUtime=81.31 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14645/stat : 14645 (java) S 14638 14641 9811 0 -1 1077944384 32495 0 0 0 7771 360 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706309815440 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14646] ppid=14638 vsize=10900632 CPUtime=81.45 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14646/stat : 14646 (java) S 14638 14641 9811 0 -1 1077944384 37478 0 0 0 7778 367 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706308762384 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14647] ppid=14638 vsize=10900632 CPUtime=81.34 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14647/stat : 14647 (java) S 14638 14641 9811 0 -1 1077944384 25870 0 0 0 7776 358 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706307709840 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14648] ppid=14638 vsize=10900632 CPUtime=81.89 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14648/stat : 14648 (java) S 14638 14641 9811 0 -1 1077944384 46670 0 0 0 7859 330 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706306656784 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14649] ppid=14638 vsize=10900632 CPUtime=81.67 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14649/stat : 14649 (java) S 14638 14641 9811 0 -1 1077944384 40370 0 0 0 7852 315 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706305604240 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14650] ppid=14638 vsize=10900632 CPUtime=81.06 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14650/stat : 14650 (java) S 14638 14641 9811 0 -1 1077944384 25567 0 0 0 7743 363 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706304551184 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14651] ppid=14638 vsize=10900632 CPUtime=81.15 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14651/stat : 14651 (java) S 14638 14641 9811 0 -1 1077944384 25791 0 0 0 7768 347 0 0 20 0 20 0 3051142 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139706303498640 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14652] ppid=14638 vsize=10900632 CPUtime=17.06 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14652/stat : 14652 (java) R 14638 14641 9811 0 -1 4202560 32687 0 0 0 1704 2 0 0 20 0 20 0 3051145 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705135850720 139706369789739 0 0 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14653] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14653/stat : 14653 (java) S 14638 14641 9811 0 -1 1077944384 36 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705134798560 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14654] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14654/stat : 14654 (java) S 14638 14641 9811 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 20 0 3051146 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705133745392 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14655] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14655/stat : 14655 (java) S 14638 14641 9811 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705132693968 139706384811931 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14656] ppid=14638 vsize=10900632 CPUtime=0.35 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14656/stat : 14656 (java) S 14638 14641 9811 0 -1 1077944384 2611 0 0 0 35 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705131640832 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14657] ppid=14638 vsize=10900632 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14657/stat : 14657 (java) S 14638 14641 9811 0 -1 1077944384 2135 0 0 0 32 1 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705130588576 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14658] ppid=14638 vsize=10900632 CPUtime=0.39 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14658/stat : 14658 (java) S 14638 14641 9811 0 -1 1077944384 2424 0 0 0 39 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705129535520 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14659] ppid=14638 vsize=10900632 CPUtime=0.21 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14659/stat : 14659 (java) S 14638 14641 9811 0 -1 1077944384 1215 0 0 0 21 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705128482976 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14660] ppid=14638 vsize=10900632 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14660/stat : 14660 (java) S 14638 14641 9811 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705127431136 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14661] ppid=14638 vsize=10900632 CPUtime=0.12 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14661/stat : 14661 (java) S 14638 14641 9811 0 -1 1077944384 682 0 0 0 6 6 0 0 20 0 20 0 3051150 11162247168 2034563 33554432000 4194304 4196468 140734880075168 139705126378672 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 865.36
Current children cumulated vsize (KiB) 10900632

[startup+296.012 s]
/proc/loadavg: 4.36 2.24 2.25 2/256 14699
/proc/meminfo: memFree=23979128/32770624 swapFree=5764/35116
[pid=14641] ppid=14638 vsize=11033912 CPUtime=865.67 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 334631 0 4 0 83746 2821 0 0 20 0 21 0 3051141 11298725888 2034785 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2758478 2034785 3172 1 0 2746834 0
[pid=14641/tid=14642] ppid=14638 vsize=11033912 CPUtime=195.51 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) S 14638 14641 9811 0 -1 1077944384 29368 0 4 0 19533 18 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706389034016 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 2 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14644] ppid=14638 vsize=11033912 CPUtime=81.43 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14644/stat : 14644 (java) S 14638 14641 9811 0 -1 1077944384 27521 0 0 0 7794 349 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706310867984 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14645] ppid=14638 vsize=11033912 CPUtime=81.31 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14645/stat : 14645 (java) S 14638 14641 9811 0 -1 1077944384 32495 0 0 0 7771 360 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706309815440 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14646] ppid=14638 vsize=11033912 CPUtime=81.45 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14646/stat : 14646 (java) S 14638 14641 9811 0 -1 1077944384 37478 0 0 0 7778 367 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706308762384 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14647] ppid=14638 vsize=11033912 CPUtime=81.34 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14647/stat : 14647 (java) S 14638 14641 9811 0 -1 1077944384 25870 0 0 0 7776 358 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706307709840 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14648] ppid=14638 vsize=11033912 CPUtime=81.89 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14648/stat : 14648 (java) S 14638 14641 9811 0 -1 1077944384 46670 0 0 0 7859 330 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706306656784 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14649] ppid=14638 vsize=11033912 CPUtime=81.67 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14649/stat : 14649 (java) S 14638 14641 9811 0 -1 1077944384 40370 0 0 0 7852 315 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706305604240 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14650] ppid=14638 vsize=11033912 CPUtime=81.06 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14650/stat : 14650 (java) S 14638 14641 9811 0 -1 1077944384 25567 0 0 0 7743 363 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706304551184 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14651] ppid=14638 vsize=11033912 CPUtime=81.15 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14651/stat : 14651 (java) S 14638 14641 9811 0 -1 1077944384 25791 0 0 0 7768 347 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706303498640 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14652] ppid=14638 vsize=11033912 CPUtime=17.32 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14652/stat : 14652 (java) S 14638 14641 9811 0 -1 1077944384 32833 0 0 0 1730 2 0 0 20 0 21 0 3051145 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705135852272 139706384804482 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14653] ppid=14638 vsize=11033912 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14653/stat : 14653 (java) S 14638 14641 9811 0 -1 1077944384 38 0 0 0 0 0 0 0 20 0 21 0 3051146 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705134798560 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14654] ppid=14638 vsize=11033912 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14654/stat : 14654 (java) S 14638 14641 9811 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 21 0 3051146 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705133745392 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14655] ppid=14638 vsize=11033912 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14655/stat : 14655 (java) S 14638 14641 9811 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705132693968 139706384811931 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14656] ppid=14638 vsize=11033912 CPUtime=0.35 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14656/stat : 14656 (java) S 14638 14641 9811 0 -1 1077944384 2611 0 0 0 35 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705131641072 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14657] ppid=14638 vsize=11033912 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14657/stat : 14657 (java) S 14638 14641 9811 0 -1 1077944384 2135 0 0 0 32 1 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705130588528 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14658] ppid=14638 vsize=11033912 CPUtime=0.4 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14658/stat : 14658 (java) S 14638 14641 9811 0 -1 1077944384 2424 0 0 0 40 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705129535472 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14659] ppid=14638 vsize=11033912 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14659/stat : 14659 (java) S 14638 14641 9811 0 -1 1077944384 1379 0 0 0 22 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705128482928 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14660] ppid=14638 vsize=11033912 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14660/stat : 14660 (java) S 14638 14641 9811 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705127431136 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14661] ppid=14638 vsize=11033912 CPUtime=0.12 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14661/stat : 14661 (java) S 14638 14641 9811 0 -1 1077944384 682 0 0 0 6 6 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705126378672 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 865.67
Current children cumulated vsize (KiB) 11033912

[startup+296.101 s]
/proc/loadavg: 4.36 2.24 2.25 2/256 14699
/proc/meminfo: memFree=23979128/32770624 swapFree=5764/35116
[pid=14641] ppid=14638 vsize=11033912 CPUtime=865.67 cores=1,3,5,7,9,11,13,15
/proc/14641/stat : 14641 (java) S 14638 14641 9811 0 -1 1077944320 334631 0 4 0 83746 2821 0 0 20 0 21 0 3051141 11298725888 2034785 33554432000 4194304 4196468 140734880075168 140734880057712 139706384793335 0 0 0 16800975 18446744073709551615 0 0 17 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
/proc/14641/statm: 2758478 2034785 3172 1 0 2746834 0
[pid=14641/tid=14642] ppid=14638 vsize=11033912 CPUtime=195.51 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14642/stat : 14642 (java) S 14638 14641 9811 0 -1 1077944384 29368 0 4 0 19533 18 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706389034016 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 2 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14644] ppid=14638 vsize=11033912 CPUtime=81.43 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14644/stat : 14644 (java) S 14638 14641 9811 0 -1 1077944384 27521 0 0 0 7794 349 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706310867984 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14645] ppid=14638 vsize=11033912 CPUtime=81.31 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14645/stat : 14645 (java) S 14638 14641 9811 0 -1 1077944384 32495 0 0 0 7771 360 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706309815440 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14646] ppid=14638 vsize=11033912 CPUtime=81.45 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14646/stat : 14646 (java) S 14638 14641 9811 0 -1 1077944384 37478 0 0 0 7778 367 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706308762384 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14647] ppid=14638 vsize=11033912 CPUtime=81.34 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14647/stat : 14647 (java) S 14638 14641 9811 0 -1 1077944384 25870 0 0 0 7776 358 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706307709840 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14648] ppid=14638 vsize=11033912 CPUtime=81.89 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14648/stat : 14648 (java) S 14638 14641 9811 0 -1 1077944384 46670 0 0 0 7859 330 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706306656784 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 15 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14649] ppid=14638 vsize=11033912 CPUtime=81.67 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14649/stat : 14649 (java) S 14638 14641 9811 0 -1 1077944384 40370 0 0 0 7852 315 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706305604240 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14650] ppid=14638 vsize=11033912 CPUtime=81.06 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14650/stat : 14650 (java) S 14638 14641 9811 0 -1 1077944384 25567 0 0 0 7743 363 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706304551184 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14651] ppid=14638 vsize=11033912 CPUtime=81.15 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14651/stat : 14651 (java) S 14638 14641 9811 0 -1 1077944384 25791 0 0 0 7768 347 0 0 20 0 21 0 3051142 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139706303498640 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14652] ppid=14638 vsize=11033912 CPUtime=17.32 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14652/stat : 14652 (java) S 14638 14641 9811 0 -1 1077944384 32833 0 0 0 1730 2 0 0 20 0 21 0 3051145 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705135852272 139706384804482 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14653] ppid=14638 vsize=11033912 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14653/stat : 14653 (java) S 14638 14641 9811 0 -1 1077944384 38 0 0 0 0 0 0 0 20 0 21 0 3051146 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705134798560 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14654] ppid=14638 vsize=11033912 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14654/stat : 14654 (java) S 14638 14641 9811 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 21 0 3051146 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705133745392 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14655] ppid=14638 vsize=11033912 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14655/stat : 14655 (java) S 14638 14641 9811 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705132693968 139706384811931 0 4 0 16800975 18446744071579849748 0 0 -1 13 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14656] ppid=14638 vsize=11033912 CPUtime=0.35 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14656/stat : 14656 (java) S 14638 14641 9811 0 -1 1077944384 2611 0 0 0 35 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705131641072 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14657] ppid=14638 vsize=11033912 CPUtime=0.33 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14657/stat : 14657 (java) S 14638 14641 9811 0 -1 1077944384 2135 0 0 0 32 1 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705130588528 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14658] ppid=14638 vsize=11033912 CPUtime=0.4 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14658/stat : 14658 (java) S 14638 14641 9811 0 -1 1077944384 2424 0 0 0 40 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705129535472 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14659] ppid=14638 vsize=11033912 CPUtime=0.22 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14659/stat : 14659 (java) S 14638 14641 9811 0 -1 1077944384 1379 0 0 0 22 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705128482928 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14660] ppid=14638 vsize=11033912 CPUtime=0 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14660/stat : 14660 (java) S 14638 14641 9811 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705127431136 139706384803541 0 4 0 16800975 18446744071579849748 0 0 -1 9 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
[pid=14641/tid=14661] ppid=14638 vsize=11033912 CPUtime=0.12 cores=1,3,5,7,9,11,13,15
/proc/14641/task/14661/stat : 14661 (java) S 14638 14641 9811 0 -1 1077944384 682 0 0 0 6 6 0 0 20 0 21 0 3051150 11298725888 2034785 33554432000 4194304 4196468 140734880075168 139705126378672 139706384804482 0 4 0 16800975 18446744071579849748 0 0 -1 11 0 0 0 0 0 6293624 6294260 19337216 140734880081067 140734880081220 140734880081220 140734880083919 0
Current children cumulated CPU time (s) 865.67
Current children cumulated vsize (KiB) 11033912

Child status: 0
Real time (s): 296.187
CPU time (s): 865.732
CPU user time (s): 837.466
CPU system time (s): 28.2663
CPU usage (%): 292.293
Max. virtual memory (cumulated for all children) (KiB): 11033912

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 837.466
system time used= 28.2663
maximum resident set size= 8139516
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 334674
page faults= 4
swaps= 0
block input operations= 5048
block output operations= 392
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 19096
involuntary context switches= 62875

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.64093 second user time and 2.00175 second system time

The end

Launcher Data

Begin job on node145 at 2017-07-22 00:57:40
IDJOB=4243934
IDBENCH=133226
IDSOLVER=2623
FILE ID=node145/4243934-1500677860
RUNJOBID= node145-1500669853-12912
PBS_JOBID= 20623276
Free space on /tmp= 61864 MiB

SOLVER NAME= sat4j-CSP 2017-07-05
BENCH NAME= XCSP17/MagicSquare/MagicSquare-sum-s1/MagicSquare-23-sum.xml
COMMAND LINE= java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4243934-1500677860/watcher-4243934-1500677860 -o /tmp/evaluation-result-4243934-1500677860/solver-4243934-1500677860 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node145-1500669853-12912 --watchdog 2560  java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4243934-1500677860.xml

TIME LIMIT= 2400 seconds
MEMORY LIMIT= 15500 MiB
NBCORE= 8

MD5SUM BENCH= d4be5d2e2f36b13e59ce195ffddd0d7a
RANDOM SEED=1374627879

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

/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		: 1600.000
cache size	: 8192 KB
physical id	: 0
siblings	: 8
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 11
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips	: 5333.43
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management:

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        32125444 kB
MemAvailable:   32039344 kB
Buffers:           50752 kB
Cached:           136764 kB
SwapCached:            0 kB
Active:           145304 kB
Inactive:         102056 kB
Active(anon):       2072 kB
Inactive(anon):    69168 kB
Active(file):     143232 kB
Inactive(file):    32888 kB
Unevictable:        5764 kB
Mlocked:            5764 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              1488 kB
Writeback:             0 kB
AnonPages:         49860 kB
Mapped:            30492 kB
Shmem:              8852 kB
Slab:              90752 kB
SReclaimable:      58104 kB
SUnreclaim:        32648 kB
KernelStack:        4512 kB
PageTables:         4600 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:     307788 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:         0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      136576 kB
DirectMap2M:    33409024 kB

Free space on /tmp at the end= 61860 MiB
End job on node145 at 2017-07-22 01:02:37