Trace number 4289902

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
Sat4j-CSP 2018-07-11? 1919.24 555.362

General information on the benchmark

NameQuadraticAssignment/
QuadraticAssignment-sko64_c18.xml
MD5SUM0f1e7a7a7866c79e3b2a53c7bc7dd539
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT
Best value of the objective obtained on this benchmark25546
Best CPU time to get the best result obtained on this benchmark2520.1
Satisfiable
(Un)Satisfiability was proved
Number of variables4160
Number of constraints2017
Number of domains2
Minimum domain size8
Maximum domain size64
Distribution of domain sizes[{"size":8,"count":2016},{"size":64,"count":64}]
Minimum variable degree0
Maximum variable degree64
Distribution of variable degrees[{"degree":0,"count":2080},{"degree":2,"count":2016},{"degree":64,"count":64}]
Minimum constraint arity3
Maximum constraint arity64
Distribution of constraint arities[{"arity":3,"count":2016},{"arity":64,"count":1}]
Number of extensional constraints2016
Number of intensional constraints0
Distribution of constraint types[{"type":"extension","count":2016},{"type":"allDifferent","count":1}]
Optimization problemYES
Type of objectivemin SUM

Solver Data

1809.89/525.62	Jul 22, 2018 1:18:54 AM org.sat4j.reader.XMLCSP3Reader parseInstance
1809.89/525.62	INFO: Runtime exception
1809.89/525.62	java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeExpression(TseitinBasedIntensionCtrEncoder.java:78)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encode(TseitinBasedIntensionCtrEncoder.java:59)
1809.89/525.62		at org.sat4j.csp.constraints3.GenericCtrBuilder.buildCtrSupports(GenericCtrBuilder.java:215)
1809.89/525.62		at org.sat4j.csp.constraints3.GenericCtrBuilder.buildCtrExtension(GenericCtrBuilder.java:94)
1809.89/525.62		at org.sat4j.reader.XMLCSP3Reader.buildCtrExtension(XMLCSP3Reader.java:419)
1809.89/525.62		at org.xcsp.parser.loaders.CtrLoaderInteger.extension(CtrLoaderInteger.java:306)
1809.89/525.62		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:167)
1809.89/525.62		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:538)
1809.89/525.62		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:521)
1809.89/525.62		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
1809.89/525.62		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
1809.89/525.62		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:518)
1809.89/525.62		at org.xcsp.parser.XCallbacks.loadGroup(XCallbacks.java:473)
1809.89/525.62		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:433)
1809.89/525.62		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:418)
1809.89/525.62		at org.sat4j.reader.XMLCSP3Reader.loadInstance(XMLCSP3Reader.java:343)
1809.89/525.62		at org.sat4j.reader.XMLCSP3Reader.parseInstance(XMLCSP3Reader.java:308)
1809.89/525.62		at org.sat4j.reader.Reader.parseInstance(Reader.java:73)
1809.89/525.62		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:201)
1809.89/525.62		at org.sat4j.csp.CSPLauncher.readProblem(CSPLauncher.java:95)
1809.89/525.62		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:255)
1809.89/525.62		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:119)
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 22 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 26 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 27 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 31 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 32 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 36 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 37 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 41 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 42 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 46 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 47 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 51 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 52 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 56 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 57 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 61 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 62 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 66 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 67 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 71 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 72 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 76 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 77 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 81 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 82 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 86 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 87 more
1809.89/525.62	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:94)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		... 91 more
1809.89/525.62	Caused by: java.lang.reflect.InvocationTargetException
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		... 92 more
1809.89/525.62	Caused by: java.lang.OutOfMemoryError: GC overhead limit exceeded
1809.89/525.62		at java.lang.AbstractStringBuilder.<init>(AbstractStringBuilder.java:68)
1809.89/525.62		at java.lang.StringBuilder.<init>(StringBuilder.java:89)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:90)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:92)
1809.89/525.62		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:120)
1809.89/525.62		at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
1809.89/525.62		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1809.89/525.62		at java.lang.reflect.Method.invoke(Method.java:498)
1809.89/525.62	
1894.62/549.05	c SAT4J: a SATisfiability library for Java (c) 2004-2013 Artois University and CNRS
1894.62/549.05	c This is free software under the dual EPL/GNU LGPL licenses.
1894.62/549.05	c See www.sat4j.org for details.
1894.62/549.05	c That software uses the Rhino library from the Mozilla project.
1894.62/549.05	c version 2.3.6-SNAPSHOT
1894.62/549.05	c java.runtime.name	Java(TM) SE Runtime Environment
1894.62/549.05	c java.vm.name		Java HotSpot(TM) 64-Bit Server VM
1894.62/549.05	c java.vm.version	25.131-b11
1894.62/549.05	c java.vm.vendor	Oracle Corporation
1894.62/549.05	c sun.arch.data.model	64
1894.62/549.05	c java.version		1.8.0_131
1894.62/549.05	c os.name		Linux
1894.62/549.05	c os.version		3.10.0-514.16.1.el7.x86_64
1894.62/549.05	c os.arch		amd64
1894.62/549.05	c Free memory 		499604488
1894.62/549.05	c Max memory 		7247757312
1894.62/549.05	c Total memory 		504889344
1894.62/549.05	c Number of processors 	4
1894.62/549.05	c c --- Begin Solver configuration ---
1894.62/549.05	c org.sat4j.pb.constraints.CompetResolutionPBLongMixedWLClauseCardConstrDataStructure@2b71fc7e
1894.62/549.05	c Learn all clauses as in MiniSAT
1894.62/549.05	c LOGGER=java.util.logging.Logger@25f38edc claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
1894.62/549.05	c VSIDS like heuristics from MiniSAT using a heap lightweight component caching from RSAT taking into account the objective function
1894.62/549.05	c No reason simplification
1894.62/549.05	c Glucose 2.1 dynamic restart strategy
1894.62/549.05	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
1894.62/549.05	c timeout=2147483s
1894.62/549.05	c DB Simplification allowed=false
1894.62/549.05	c Listener: org.sat4j.minisat.core.VoidTracing@1a86f2f1
1894.62/549.05	c --- End Solver configuration ---
1894.62/549.05	c starts		: 0
1894.62/549.05	c conflicts		: 0
1894.62/549.05	c decisions		: 0
1919.16/555.32	c propagations		: 0
1919.16/555.32	c inspects		: 0
1919.16/555.32	c shortcuts		: 0
1919.16/555.32	c learnt literals	: 0
1919.16/555.32	c learnt binary clauses	: 0
1919.16/555.32	c learnt ternary clauses	: 0
1919.16/555.32	c learnt constraints	: 0
1919.16/555.32	c ignored constraints	: 0
1919.16/555.32	c root simplifications	: 0
1919.16/555.32	c removed literals (reason simplification)	: 0
1919.16/555.32	c reason swapping (by a shorter reason)	: 0
1919.16/555.32	c Calls to reduceDB	: 0
1919.16/555.32	c Number of update (reduction) of LBD	: 0
1919.16/555.32	c Imported unit clauses	: 0
1919.16/555.32	c number of reductions to clauses (during analyze)	: 0
1919.16/555.32	c number of learned constraints concerned by reduction	: 0
1919.16/555.32	c number of learning phase by resolution	: 0
1919.16/555.32	c number of learning phase by cutting planes	: 0
1919.16/555.32	c number of rounding to 1 operations	: 0
1919.16/555.32	c number of easy rounding to 1 operations (no literal elimination needed)	: 0
1919.16/555.32	c number of reductions of the coefficients by power 2 	: 0
1919.16/555.32	c number of right shift for reduction by power 2 	: 0
1919.16/555.32	c number of reductions of the coefficients by GCD over coefficients 	: 0
1919.16/555.32	c number of ending skipping 	: 0
1919.16/555.32	c number of internal skipping 	: 0
1919.16/555.32	c number of derivation steps 	: 0
1919.16/555.32	c number of skipped derivation steps 	: 0
1919.16/555.32	c number of remaining unassigned 	: 0
1919.16/555.32	c number of remaining assigned 	: 0
1919.16/555.32	c speed (assignments/second)	: 0.0
1919.16/555.32	c non guided choices	: 0
1919.16/555.32	s UNKNOWN

Verifier Data


Watcher Data

runsolver version 3.4.0 (svn: 3012) Copyright (C) 2010-2013 Olivier ROUSSEL

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

NUMA information:
  number of nodes: 2
  memory of node 0: 16374 MiB (7667 MiB free)
  memory of node 1: 16384 MiB (5200 MiB free)
  node distances:
     10  21
     21  10

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4289902-1532214618/watcher-4289902-1532214618 -o /tmp/evaluation-result-4289902-1532214618/solver-4289902-1532214618 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node139-1532209881-27634 --watchdog 2560 java -DCompetitionOutput -jar HOME/sat4j-csp-final.jar HOME/instance-4289902-1532214618.xml 

running on 4 cores: 0,2,4,6

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
Linux 3.10.0-514.16.1.el7.x86_64
Starting watchdog thread
Current StackSize limit: 8192 KiB

solver pid=28294, runsolver pid=28291

[startup+0.101406 s]*
/proc/loadavg: 2.01 2.02 2.05 2/217 28309
/proc/meminfo: memFree=13159632/32770624 swapFree=67108860/67108860
[pid=28294] ppid=28291 vsize=10659012 memory=30256 CPUtime=0.13 cores=0,2,4,6
/proc/28294/stat : 28294 (java) S 28291 28294 25105 0 -1 1077944320 6629 0 0 0 11 2 0 0 20 0 15 0 39024941 10914828288 7564 33554432000 4194304 4196468 140735473573808 140735473556352 139816660033271 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
/proc/28294/statm: 2664753 7564 2823 1 0 2627263 0
[pid=28294/tid=28296] ppid=28291 vsize=10659012 memory=-8773748148830375809 CPUtime=0.09 cores=0,2,4,6
/proc/28294/task/28296/stat : 28296 (java) R 28291 28294 25105 0 -1 4202560 4460 0 0 0 8 1 0 0 20 0 15 0 39024941 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816664237936 139816660055197 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28297] ppid=28291 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816266865040 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10659012 memory=140155535795840 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816265812240 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816264759952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) S 28291 28294 25105 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39024942 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816263707152 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10659012 memory=140155535795840 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) S 28291 28294 25105 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39024944 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816219806320 139816660044418 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28302] ppid=28291 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28302/stat : 28302 (java) S 28291 28294 25105 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 39024944 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816150754592 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28303] ppid=28291 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28303/stat : 28303 (java) S 28291 28294 25105 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 39024944 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816149702256 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28304] ppid=28291 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28304/stat : 28304 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39024946 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816148650576 139816660051867 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28305] ppid=28291 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28305/stat : 28305 (java) S 28291 28294 25105 0 -1 1077944384 438 0 0 0 0 0 0 0 20 0 15 0 39024946 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816147597424 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28306] ppid=28291 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28306/stat : 28306 (java) S 28291 28294 25105 0 -1 1077944384 4 0 0 0 0 0 0 0 20 0 15 0 39024947 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816146544624 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28307] ppid=28291 vsize=10659012 memory=140155535795840 CPUtime=0.02 cores=0,2,4,6
/proc/28294/task/28307/stat : 28307 (java) R 28291 28294 25105 0 -1 4202560 359 0 0 0 2 0 0 0 20 0 15 0 39024947 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816145492336 139816660054618 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28308] ppid=28291 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28308/stat : 28308 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39024947 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816144439776 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28309] ppid=28291 vsize=10659012 memory=140155535795840 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28309/stat : 28309 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024947 10914828288 7564 33554432000 4194304 4196468 140735473573808 139816143387568 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
Current children cumulated CPU time: 0.13 s
Current children cumulated vsize: 10659012 KiB
Current children cumulated memory: 30256 KiB

[startup+0.213443 s]*
/proc/loadavg: 2.01 2.02 2.05 4/217 28309
/proc/meminfo: memFree=13148836/32770624 swapFree=67108860/67108860
[pid=28294] ppid=28291 vsize=10659012 memory=42196 CPUtime=0.32 cores=0,2,4,6
/proc/28294/stat : 28294 (java) S 28291 28294 25105 0 -1 1077944320 8131 0 0 0 30 2 0 0 20 0 15 0 39024941 10914828288 10549 33554432000 4194304 4196468 140735473573808 140735473556352 139816660033271 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
/proc/28294/statm: 2664753 10549 3004 1 0 2627263 0
[pid=28294/tid=28296] ppid=28291 vsize=10659012 memory=7022364594140610616 CPUtime=0.19 cores=0,2,4,6
/proc/28294/task/28296/stat : 28296 (java) R 28291 28294 25105 0 -1 4202560 5038 0 0 0 18 1 0 0 20 0 15 0 39024941 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816664262848 139816644076901 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28297] ppid=28291 vsize=10659012 memory=342 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816266865040 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10659012 memory=140155535823087 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816265812240 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816264759952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) S 28291 28294 25105 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39024942 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816263707152 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10659012 memory=140155535795840 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) S 28291 28294 25105 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39024944 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816219806320 139816660044418 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28302] ppid=28291 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28302/stat : 28302 (java) S 28291 28294 25105 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 39024944 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816150754592 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28303] ppid=28291 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28303/stat : 28303 (java) S 28291 28294 25105 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 39024944 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816149702256 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28304] ppid=28291 vsize=10659012 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28304/stat : 28304 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39024946 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816148650576 139816660051867 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28305] ppid=28291 vsize=10659012 memory=0 CPUtime=0.02 cores=0,2,4,6
/proc/28294/task/28305/stat : 28305 (java) S 28291 28294 25105 0 -1 1077944384 676 0 0 0 2 0 0 0 20 0 15 0 39024946 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816147597424 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28306] ppid=28291 vsize=10659012 memory=-1 CPUtime=0.02 cores=0,2,4,6
/proc/28294/task/28306/stat : 28306 (java) S 28291 28294 25105 0 -1 1077944384 300 0 0 0 2 0 0 0 20 0 15 0 39024947 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816146544624 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28307] ppid=28291 vsize=10659012 memory=140155535795840 CPUtime=0.07 cores=0,2,4,6
/proc/28294/task/28307/stat : 28307 (java) R 28291 28294 25105 0 -1 1077944384 750 0 0 0 7 0 0 0 20 0 15 0 39024947 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816145492336 139816660044418 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28308] ppid=28291 vsize=10659012 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28308/stat : 28308 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39024947 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816144439776 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28309] ppid=28291 vsize=10659012 memory=140155535795840 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28309/stat : 28309 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024947 10914828288 10549 33554432000 4194304 4196468 140735473573808 139816143387568 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
Current children cumulated CPU time: 0.32 s
Current children cumulated vsize: 10659012 KiB
Current children cumulated memory: 42196 KiB

[startup+0.315186 s]*
/proc/loadavg: 2.01 2.02 2.05 5/217 28309
/proc/meminfo: memFree=13136748/32770624 swapFree=67108860/67108860
[pid=28294] ppid=28291 vsize=10659088 memory=52628 CPUtime=0.57 cores=0,2,4,6
/proc/28294/stat : 28294 (java) S 28291 28294 25105 0 -1 1077944320 9741 0 0 0 55 2 0 0 20 0 15 0 39024941 10914906112 13157 33554432000 4194304 4196468 140735473573808 140735473556352 139816660033271 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
/proc/28294/statm: 2664772 13157 3068 1 0 2627263 0
[pid=28294/tid=28296] ppid=28291 vsize=10659088 memory=7311146985107750967 CPUtime=0.3 cores=0,2,4,6
/proc/28294/task/28296/stat : 28296 (java) R 28291 28294 25105 0 -1 4202560 5613 0 0 0 28 2 0 0 20 0 15 0 39024941 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816664266096 139816644113758 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28297] ppid=28291 vsize=10659088 memory=288230600413020183 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816266865040 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10659088 memory=140155535822689 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816265812240 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10659088 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024942 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816264759952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10659088 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) S 28291 28294 25105 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 39024942 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816263707152 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10659088 memory=140155535795840 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) S 28291 28294 25105 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 39024944 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816219806320 139816660044418 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28302] ppid=28291 vsize=10659088 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28302/stat : 28302 (java) S 28291 28294 25105 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 39024944 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816150754592 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28303] ppid=28291 vsize=10659088 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28303/stat : 28303 (java) S 28291 28294 25105 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 39024944 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816149702256 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28304] ppid=28291 vsize=10659088 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28304/stat : 28304 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39024946 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816148650576 139816660051867 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28305] ppid=28291 vsize=10659088 memory=0 CPUtime=0.06 cores=0,2,4,6
/proc/28294/task/28305/stat : 28305 (java) R 28291 28294 25105 0 -1 4202560 970 0 0 0 6 0 0 0 20 0 15 0 39024946 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816147583448 139816640206192 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28306] ppid=28291 vsize=10659088 memory=-1 CPUtime=0.07 cores=0,2,4,6
/proc/28294/task/28306/stat : 28306 (java) R 28291 28294 25105 0 -1 4202560 819 0 0 0 7 0 0 0 20 0 15 0 39024947 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816146525640 139816643519241 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28307] ppid=28291 vsize=10659088 memory=140155535795840 CPUtime=0.12 cores=0,2,4,6
/proc/28294/task/28307/stat : 28307 (java) R 28291 28294 25105 0 -1 1077944384 969 0 0 0 12 0 0 0 20 0 15 0 39024947 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816145492336 139816660044418 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28308] ppid=28291 vsize=10659088 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28308/stat : 28308 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39024947 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816144439776 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28309] ppid=28291 vsize=10659088 memory=140155535795840 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28309/stat : 28309 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024947 10914906112 13157 33554432000 4194304 4196468 140735473573808 139816143387568 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
Current children cumulated CPU time: 0.57 s
Current children cumulated vsize: 10659088 KiB
Current children cumulated memory: 52628 KiB

[startup+0.710189 s]
/proc/loadavg: 2.01 2.02 2.05 5/217 28309
/proc/meminfo: memFree=13102804/32770624 swapFree=67108860/67108860
[pid=28294] ppid=28291 vsize=10659088 memory=206672 CPUtime=1.92 cores=0,2,4,6
/proc/28294/stat : 28294 (java) S 28291 28294 25105 0 -1 1077944320 15112 0 0 0 184 8 0 0 20 0 15 0 39024941 10914906112 51668 33554432000 4194304 4196468 140735473573808 140735473556352 139816660033271 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
/proc/28294/statm: 2664772 51668 3114 1 0 2627263 0
[pid=28294/tid=28296] ppid=28291 vsize=10659088 memory=1728 CPUtime=0.66 cores=0,2,4,6
/proc/28294/task/28296/stat : 28296 (java) R 28291 28294 25105 0 -1 4202560 5867 0 0 0 62 4 0 0 20 0 15 0 39024941 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816664268408 139816301101124 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28297] ppid=28291 vsize=10659088 memory=1700 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) S 28291 28294 25105 0 -1 1077944384 19 0 0 0 0 0 0 0 20 0 15 0 39024942 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816266865040 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10659088 memory=796 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) S 28291 28294 25105 0 -1 1077944384 15 0 0 0 0 0 0 0 20 0 15 0 39024942 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816265812240 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10659088 memory=5408 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) S 28291 28294 25105 0 -1 1077944384 16 0 0 0 0 0 0 0 20 0 15 0 39024942 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816264759952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10659088 memory=1008 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) S 28291 28294 25105 0 -1 1077944384 27 0 0 0 0 0 0 0 20 0 15 0 39024942 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816263707152 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10659088 memory=9916 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) S 28291 28294 25105 0 -1 1077944384 82 0 0 0 0 0 0 0 20 0 15 0 39024944 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816219806320 139816660044418 0 0 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28302] ppid=28291 vsize=10659088 memory=1228 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28302/stat : 28302 (java) S 28291 28294 25105 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 39024944 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816150754592 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28303] ppid=28291 vsize=10659088 memory=1952 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28303/stat : 28303 (java) S 28291 28294 25105 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 39024944 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816149702256 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28304] ppid=28291 vsize=10659088 memory=1200 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28304/stat : 28304 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39024946 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816148650576 139816660051867 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28305] ppid=28291 vsize=10659088 memory=7017547551848162880 CPUtime=0.4 cores=0,2,4,6
/proc/28294/task/28305/stat : 28305 (java) R 28291 28294 25105 0 -1 4202560 2668 0 0 0 40 0 0 0 20 0 15 0 39024946 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816147584272 139816652322743 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28306] ppid=28291 vsize=10659088 memory=7811323491934034026 CPUtime=0.43 cores=0,2,4,6
/proc/28294/task/28306/stat : 28306 (java) R 28291 28294 25105 0 -1 4202560 2849 0 0 0 43 0 0 0 20 0 15 0 39024947 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816146535728 139816646048400 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28307] ppid=28291 vsize=10659088 memory=5787213827096799335 CPUtime=0.33 cores=0,2,4,6
/proc/28294/task/28307/stat : 28307 (java) S 28291 28294 25105 0 -1 1077944384 2208 0 0 0 33 0 0 0 20 0 15 0 39024947 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816145492336 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28308] ppid=28291 vsize=10659088 memory=0 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28308/stat : 28308 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 39024947 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816144439776 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28309] ppid=28291 vsize=10659088 memory=31396 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28309/stat : 28309 (java) S 28291 28294 25105 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 39024947 10914906112 51668 33554432000 4194304 4196468 140735473573808 139816143387568 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
Current children cumulated CPU time: 1.92 s
Current children cumulated vsize: 10659088 KiB
Current children cumulated memory: 206672 KiB

[startup+1.50123 s]
/proc/loadavg: 2.01 2.02 2.05 5/217 28309
/proc/meminfo: memFree=12886976/32770624 swapFree=67108860/67108860
[pid=28294] ppid=28291 vsize=10659088 memory=365452 CPUtime=4.44 cores=0,2,4,6
/proc/28294/stat : 28294 (java) S 28291 28294 25105 0 -1 1077944320 19195 0 0 0 431 13 0 0 20 0 15 0 39024941 10914906112 91363 33554432000 4194304 4196468 140735473573808 140735473556352 139816660033271 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
/proc/28294/statm: 2664772 91363 3144 1 0 2627263 0
[pid=28294/tid=28296] ppid=28291 vsize=10659088 memory=0 CPUtime=1.4 cores=0,2,4,6
/proc/28294/task/28296/stat : 28296 (java) R 28291 28294 25105 0 -1 4202560 6164 0 0 0 133 7 0 0 20 0 15 0 39024941 10914906112 91363 33554432000 4194304 4196468 140735473573808 139816664255888 139816302218310 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28297] ppid=28291 vsize=10659088 memory=-6951259422114956437 CPUtime=0.05 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) S 28291 28294 25105 0 -1 1077944384 33 0 0 0 4 1 0 0 20 0 15 0 39024942 10914906112 91363 33554432000 4194304 4196468 140735473573808 139816266865040 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10659088 memory=-6509546260019855295 CPUtime=0.03 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) S 28291 28294 25105 0 -1 1077944384 22 0 0 0 3 0 0 0 20 0 15 0 39024942 10914906112 91363 33554432000 4194304 4196468 140735473573808 139816265812240 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10659088 memory=-7390251449858225344 CPUtime=0.05 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) S 28291 28294 25105 0 -1 1077944384 30 0 0 0 4 1 0 0 20 0 15 0 39024942 10914906112 91363 33554432000 4194304 4196468 140735473573808 139816264759952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10659088 memory=-7096649868621430206 CPUtime=0.02 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) S 28291 28294 25105 0 -1 1077944384 41 0 0 0 2 0 0 0 20 0 15 0 39024942 10914906112 91363 33554432000 4194304 4196468 140735473573808 139816263707152 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10659088 memory=-7165351541977658656 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) S 28291 28294 25105 0 -1 1077944384 209 0 0 0 0 0 0 0 20 0 15 0 39024944 10914906112 91363 33554432000 4194304 4196468 140735473573808 139816219806320 139816660044418 0 0 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0

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

[pid=28294/tid=28297] ppid=28291 vsize=10794416 memory=932 CPUtime=455.22 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) R 28291 28294 25105 0 -1 4202560 32489 0 0 0 45353 169 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816266865240 139816644490739 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10794416 memory=8344624 CPUtime=454.83 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) R 28291 28294 25105 0 -1 4202560 33389 0 0 0 45331 152 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816265812440 139816645029840 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10794416 memory=2240 CPUtime=453.57 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) R 28291 28294 25105 0 -1 4202560 34217 0 0 0 45181 176 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816264760152 139816641643076 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10794416 memory=4124 CPUtime=454.77 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) R 28291 28294 25105 0 -1 4202560 33753 0 0 0 45314 163 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816263707040 139816644490841 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10794416 memory=6791534058613427641 CPUtime=50.11 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) S 28291 28294 25105 0 -1 1077944384 104066 0 0 0 5005 6 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816219804864 139816660043477 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28302] ppid=28291 vsize=10794416 memory=1580 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28302/stat : 28302 (java) S 28291 28294 25105 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816150754656 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28303] ppid=28291 vsize=10794416 memory=2240 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28303/stat : 28303 (java) S 28291 28294 25105 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816149702272 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28304] ppid=28291 vsize=10794416 memory=4124 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28304/stat : 28304 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 39024946 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816148650576 139816660051867 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28305] ppid=28291 vsize=10794416 memory=2200 CPUtime=2.01 cores=0,2,4,6
/proc/28294/task/28305/stat : 28305 (java) S 28291 28294 25105 0 -1 1077944384 7796 0 0 0 200 1 0 0 20 0 17 0 39024946 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816147597184 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28306] ppid=28291 vsize=10794416 memory=8344636 CPUtime=2.07 cores=0,2,4,6
/proc/28294/task/28306/stat : 28306 (java) S 28291 28294 25105 0 -1 1077944384 8202 0 0 0 206 1 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816146544672 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28307] ppid=28291 vsize=10794416 memory=2344 CPUtime=0.51 cores=0,2,4,6
/proc/28294/task/28307/stat : 28307 (java) S 28291 28294 25105 0 -1 1077944384 4197 0 0 0 50 1 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816145492384 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28308] ppid=28291 vsize=10794416 memory=932 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28308/stat : 28308 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816144439776 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28309] ppid=28291 vsize=10794416 memory=1580 CPUtime=0.22 cores=0,2,4,6
/proc/28294/task/28309/stat : 28309 (java) S 28291 28294 25105 0 -1 1077944384 990 0 0 0 13 9 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816143387568 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28397] ppid=28291 vsize=10794416 memory=2240 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28397/stat : 28397 (java) S 28291 28294 25105 0 -1 1077944384 31 0 0 0 0 0 0 0 20 0 17 0 39077503 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816140235056 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28398] ppid=28291 vsize=10794416 memory=4124 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28398/stat : 28398 (java) S 28291 28294 25105 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 17 0 39077503 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816139182736 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
Current children cumulated CPU time: 1915.85 s
Current children cumulated vsize: 10794416 KiB
Current children cumulated memory: 8344636 KiB

[startup+554.801 s]
/proc/loadavg: 7.12 6.21 4.08 9/219 28401
/proc/meminfo: memFree=1965152/32770624 swapFree=67108860/67108860
[pid=28294] ppid=28291 vsize=10794416 memory=8344636 CPUtime=1917.44 cores=0,2,4,6
/proc/28294/stat : 28294 (java) S 28291 28294 25105 0 -1 1077944320 281065 0 0 0 191046 698 0 0 20 0 17 0 39024941 11053481984 2086159 33554432000 4194304 4196468 140735473573808 140735473556352 139816660033271 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
/proc/28294/statm: 2698604 2086159 3224 1 0 2661057 0
[pid=28294/tid=28296] ppid=28291 vsize=10794416 memory=7512114578044973668 CPUtime=42.44 cores=0,2,4,6
/proc/28294/task/28296/stat : 28296 (java) S 28291 28294 25105 0 -1 1077944384 20522 0 0 0 4222 22 0 0 20 0 17 0 39024941 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816664273952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28297] ppid=28291 vsize=10794416 memory=7523914554097822819 CPUtime=455.62 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) R 28291 28294 25105 0 -1 4202560 32489 0 0 0 45393 169 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816266865240 139816645029678 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10794416 memory=6791534058613427641 CPUtime=455.23 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) R 28291 28294 25105 0 -1 4202560 33389 0 0 0 45371 152 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816265812440 139816644490904 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10794416 memory=288230621803970871 CPUtime=453.97 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) R 28291 28294 25105 0 -1 4202560 34217 0 0 0 45221 176 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816264760152 139816645029675 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10794416 memory=14134428972616243 CPUtime=455.17 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) R 28291 28294 25105 0 -1 4202560 33753 0 0 0 45354 163 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816263707040 139816645029672 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10794416 memory=10412 CPUtime=50.11 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) S 28291 28294 25105 0 -1 1077944384 104066 0 0 0 5005 6 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816219804864 139816660043477 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28302] ppid=28291 vsize=10794416 memory=4616 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28302/stat : 28302 (java) S 28291 28294 25105 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816150754656 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28303] ppid=28291 vsize=10794416 memory=1428 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28303/stat : 28303 (java) S 28291 28294 25105 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816149702272 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28304] ppid=28291 vsize=10794416 memory=15876 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28304/stat : 28304 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 39024946 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816148650576 139816660051867 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28305] ppid=28291 vsize=10794416 memory=16436 CPUtime=2.01 cores=0,2,4,6
/proc/28294/task/28305/stat : 28305 (java) S 28291 28294 25105 0 -1 1077944384 7796 0 0 0 200 1 0 0 20 0 17 0 39024946 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816147597184 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28306] ppid=28291 vsize=10794416 memory=8572 CPUtime=2.07 cores=0,2,4,6
/proc/28294/task/28306/stat : 28306 (java) S 28291 28294 25105 0 -1 1077944384 8202 0 0 0 206 1 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816146544672 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28307] ppid=28291 vsize=10794416 memory=4048 CPUtime=0.51 cores=0,2,4,6
/proc/28294/task/28307/stat : 28307 (java) S 28291 28294 25105 0 -1 1077944384 4197 0 0 0 50 1 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816145492384 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28308] ppid=28291 vsize=10794416 memory=1796 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28308/stat : 28308 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816144439776 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28309] ppid=28291 vsize=10794416 memory=636 CPUtime=0.22 cores=0,2,4,6
/proc/28294/task/28309/stat : 28309 (java) S 28291 28294 25105 0 -1 1077944384 990 0 0 0 13 9 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816143387568 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28397] ppid=28291 vsize=10794416 memory=960 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28397/stat : 28397 (java) S 28291 28294 25105 0 -1 1077944384 31 0 0 0 0 0 0 0 20 0 17 0 39077503 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816140235056 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28398] ppid=28291 vsize=10794416 memory=288230574492221466 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28398/stat : 28398 (java) S 28291 28294 25105 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 17 0 39077503 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816139182736 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
Current children cumulated CPU time: 1917.44 s
Current children cumulated vsize: 10794416 KiB
Current children cumulated memory: 8344636 KiB

[startup+555.201 s]
/proc/loadavg: 7.12 6.21 4.08 9/219 28401
/proc/meminfo: memFree=1965152/32770624 swapFree=67108860/67108860
[pid=28294] ppid=28291 vsize=10794416 memory=8344636 CPUtime=1919.01 cores=0,2,4,6
/proc/28294/stat : 28294 (java) S 28291 28294 25105 0 -1 1077944320 281065 0 0 0 191203 698 0 0 20 0 17 0 39024941 11053481984 2086159 33554432000 4194304 4196468 140735473573808 140735473556352 139816660033271 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
/proc/28294/statm: 2698604 2086159 3224 1 0 2661057 0
[pid=28294/tid=28296] ppid=28291 vsize=10794416 memory=8344636 CPUtime=42.44 cores=0,2,4,6
/proc/28294/task/28296/stat : 28296 (java) S 28291 28294 25105 0 -1 1077944384 20522 0 0 0 4222 22 0 0 20 0 17 0 39024941 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816664273952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28297] ppid=28291 vsize=10794416 memory=13944 CPUtime=456 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) R 28291 28294 25105 0 -1 4202560 32489 0 0 0 45431 169 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816266865160 139816652661479 0 4 0 16800975 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10794416 memory=8344636 CPUtime=455.63 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) R 28291 28294 25105 0 -1 4202560 33389 0 0 0 45411 152 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816265812048 139816652661479 0 4 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10794416 memory=8344636 CPUtime=454.36 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) R 28291 28294 25105 0 -1 4202560 34217 0 0 0 45260 176 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816264759760 139816652661479 0 4 0 16800975 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10794416 memory=8344632 CPUtime=455.57 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) R 28291 28294 25105 0 -1 4202560 33753 0 0 0 45394 163 0 0 20 0 17 0 39024942 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816263707040 139816644732125 0 4 0 16800975 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10794416 memory=13944 CPUtime=50.11 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) S 28291 28294 25105 0 -1 1077944384 104066 0 0 0 5005 6 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816219804864 139816660043477 0 0 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28302] ppid=28291 vsize=10794416 memory=1292 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28302/stat : 28302 (java) S 28291 28294 25105 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816150754656 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28303] ppid=28291 vsize=10794416 memory=2416 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28303/stat : 28303 (java) S 28291 28294 25105 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 17 0 39024944 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816149702272 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28304] ppid=28291 vsize=10794416 memory=6791534058613427641 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28304/stat : 28304 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 39024946 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816148650576 139816660051867 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28305] ppid=28291 vsize=10794416 memory=2416 CPUtime=2.01 cores=0,2,4,6
/proc/28294/task/28305/stat : 28305 (java) S 28291 28294 25105 0 -1 1077944384 7796 0 0 0 200 1 0 0 20 0 17 0 39024946 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816147597184 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28306] ppid=28291 vsize=10794416 memory=1728 CPUtime=2.07 cores=0,2,4,6
/proc/28294/task/28306/stat : 28306 (java) S 28291 28294 25105 0 -1 1077944384 8202 0 0 0 206 1 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816146544672 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28307] ppid=28291 vsize=10794416 memory=1700 CPUtime=0.51 cores=0,2,4,6
/proc/28294/task/28307/stat : 28307 (java) S 28291 28294 25105 0 -1 1077944384 4197 0 0 0 50 1 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816145492384 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28308] ppid=28291 vsize=10794416 memory=796 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28308/stat : 28308 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816144439776 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28309] ppid=28291 vsize=10794416 memory=6791534058613427641 CPUtime=0.22 cores=0,2,4,6
/proc/28294/task/28309/stat : 28309 (java) S 28291 28294 25105 0 -1 1077944384 990 0 0 0 13 9 0 0 20 0 17 0 39024947 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816143387568 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28397] ppid=28291 vsize=10794416 memory=7512114578044973668 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28397/stat : 28397 (java) S 28291 28294 25105 0 -1 1077944384 31 0 0 0 0 0 0 0 20 0 17 0 39077503 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816140235056 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28398] ppid=28291 vsize=10794416 memory=5450909908396308010 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28398/stat : 28398 (java) S 28291 28294 25105 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 17 0 39077503 11053481984 2086159 33554432000 4194304 4196468 140735473573808 139816139182736 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
Current children cumulated CPU time: 1919.01 s
Current children cumulated vsize: 10794416 KiB
Current children cumulated memory: 8344636 KiB

[startup+555.301 s]
/proc/loadavg: 7.12 6.21 4.08 9/219 28401
/proc/meminfo: memFree=1965152/32770624 swapFree=67108860/67108860
[pid=28294] ppid=28291 vsize=10794416 memory=8344640 CPUtime=1919.16 cores=0,2,4,6
/proc/28294/stat : 28294 (java) S 28291 28294 25105 0 -1 1077944320 281148 0 0 0 191218 698 0 0 20 0 17 0 39024941 11053481984 2086160 33554432000 4194304 4196468 140735473573808 140735473556352 139816660033271 0 0 0 16800975 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
/proc/28294/statm: 2698604 2086160 3224 1 0 2661057 0
[pid=28294/tid=28296] ppid=28291 vsize=10794416 memory=8344636 CPUtime=42.44 cores=0,2,4,6
/proc/28294/task/28296/stat : 28296 (java) S 28291 28294 25105 0 -1 1077944384 20522 0 0 0 4222 22 0 0 20 0 17 0 39024941 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816664273952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28297] ppid=28291 vsize=10794416 memory=8344636 CPUtime=456.01 cores=0,2,4,6
/proc/28294/task/28297/stat : 28297 (java) S 28291 28294 25105 0 -1 1077944384 32489 0 0 0 45432 169 0 0 20 0 17 0 39024942 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816266865040 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28298] ppid=28291 vsize=10794416 memory=8344616 CPUtime=455.64 cores=0,2,4,6
/proc/28294/task/28298/stat : 28298 (java) S 28291 28294 25105 0 -1 1077944384 33389 0 0 0 45412 152 0 0 20 0 17 0 39024942 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816265812240 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28299] ppid=28291 vsize=10794416 memory=8344624 CPUtime=454.38 cores=0,2,4,6
/proc/28294/task/28299/stat : 28299 (java) S 28291 28294 25105 0 -1 1077944384 34217 0 0 0 45262 176 0 0 20 0 17 0 39024942 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816264759952 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28300] ppid=28291 vsize=10794416 memory=8344636 CPUtime=455.59 cores=0,2,4,6
/proc/28294/task/28300/stat : 28300 (java) S 28291 28294 25105 0 -1 1077944384 33753 0 0 0 45396 163 0 0 20 0 17 0 39024942 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816263707152 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28301] ppid=28291 vsize=10794416 memory=8344636 CPUtime=50.19 cores=0,2,4,6
/proc/28294/task/28301/stat : 28301 (java) R 28291 28294 25105 0 -1 4202560 104149 0 0 0 5013 6 0 0 20 0 17 0 39024944 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816219804864 139816638403451 0 0 0 16800975 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28302] ppid=28291 vsize=10794416 memory=542 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28302/stat : 28302 (java) S 28291 28294 25105 0 -1 1077944384 43 0 0 0 0 0 0 0 20 0 17 0 39024944 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816150754656 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28303] ppid=28291 vsize=10794416 memory=8344600 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28303/stat : 28303 (java) S 28291 28294 25105 0 -1 1077944384 42 0 0 0 0 0 0 0 20 0 17 0 39024944 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816149702272 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28304] ppid=28291 vsize=10794416 memory=8344632 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28304/stat : 28304 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 39024946 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816148650576 139816660051867 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28305] ppid=28291 vsize=10794416 memory=6791534058613427641 CPUtime=2.01 cores=0,2,4,6
/proc/28294/task/28305/stat : 28305 (java) S 28291 28294 25105 0 -1 1077944384 7796 0 0 0 200 1 0 0 20 0 17 0 39024946 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816147597184 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28306] ppid=28291 vsize=10794416 memory=6791534058613427641 CPUtime=2.07 cores=0,2,4,6
/proc/28294/task/28306/stat : 28306 (java) S 28291 28294 25105 0 -1 1077944384 8202 0 0 0 206 1 0 0 20 0 17 0 39024947 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816146544672 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28307] ppid=28291 vsize=10794416 memory=2416 CPUtime=0.51 cores=0,2,4,6
/proc/28294/task/28307/stat : 28307 (java) S 28291 28294 25105 0 -1 1077944384 4197 0 0 0 50 1 0 0 20 0 17 0 39024947 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816145492384 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28308] ppid=28291 vsize=10794416 memory=56 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28308/stat : 28308 (java) S 28291 28294 25105 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 17 0 39024947 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816144439776 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28309] ppid=28291 vsize=10794416 memory=4206186544037388384 CPUtime=0.22 cores=0,2,4,6
/proc/28294/task/28309/stat : 28309 (java) S 28291 28294 25105 0 -1 1077944384 990 0 0 0 13 9 0 0 20 0 17 0 39024947 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816143387568 139816660044418 0 4 0 16800975 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28397] ppid=28291 vsize=10794416 memory=8344624 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28397/stat : 28397 (java) S 28291 28294 25105 0 -1 1077944384 31 0 0 0 0 0 0 0 20 0 17 0 39077503 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816140235056 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
[pid=28294/tid=28398] ppid=28291 vsize=10794416 memory=7528 CPUtime=0 cores=0,2,4,6
/proc/28294/task/28398/stat : 28398 (java) S 28291 28294 25105 0 -1 1077944384 22 0 0 0 0 0 0 0 20 0 17 0 39077503 11053481984 2086160 33554432000 4194304 4196468 140735473573808 139816139182736 139816660043477 0 4 0 16800975 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 28184576 140735473575025 140735473575177 140735473575177 140735473577935 0
Current children cumulated CPU time: 1919.16 s
Current children cumulated vsize: 10794416 KiB
Current children cumulated memory: 8344640 KiB

Child status: 0
Real time (s): 555.362
CPU time (s): 1919.24
CPU user time (s): 1912.21
CPU system time (s): 7.02771
CPU usage (%): 345.583
Max. virtual memory (cumulated for all children) (KiB): 10794416
Max. memory (cumulated for all children) (KiB): 8344640

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1912.21
system time used= 7.02771
maximum resident set size= 8344976
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 281195
page faults= 0
swaps= 0
block input operations= 24
block output operations= 736
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 34164
involuntary context switches= 45079


# summary of solver processes directly reported to runsolver:
#   pid: 28294
#   total CPU time (s): 1919.24
#   total CPU user time (s): 1912.21
#   total CPU system time (s): 7.02771

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 3.51349 second user time and 5.13667 second system time

The end

Launcher Data

Begin job on node139 at 2018-07-22 01:10:18
IDJOB=4289902
IDBENCH=141250
IDSOLVER=2742
FILE ID=node139/4289902-1532214618
RUNJOBID= node139-1532209881-27634
PBS_JOBID= 21018928
Free space on /tmp= 45924 MiB

SOLVER NAME= Sat4j-CSP 2018-07-11
BENCH NAME= XCSP18/QuadraticAssignment/QuadraticAssignment-sko64_c18.xml
COMMAND LINE= java -DCompetitionOutput -jar DIR/sat4j-csp-final.jar BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4289902-1532214618/watcher-4289902-1532214618 -o /tmp/evaluation-result-4289902-1532214618/solver-4289902-1532214618 -C 2400 -W 2500 -M 15500 --bin-var /tmp/runsolver-exch-node139-1532209881-27634 --watchdog 2560  java -DCompetitionOutput -jar HOME/sat4j-csp-final.jar HOME/instance-4289902-1532214618.xml

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

MD5SUM BENCH= 0f1e7a7a7866c79e3b2a53c7bc7dd539
RANDOM SEED=502944971

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

/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor:
performance

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

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

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

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

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

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

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

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


/proc/meminfo:
MemTotal:       32770624 kB
MemFree:        13177076 kB
MemAvailable:   26489084 kB
Buffers:          127776 kB
Cached:         13240080 kB
SwapCached:            0 kB
Active:          6514640 kB
Inactive:       12347220 kB
Active(anon):    5449220 kB
Inactive(anon):    64124 kB
Active(file):    1065420 kB
Inactive(file): 12283096 kB
Unevictable:        7248 kB
Mlocked:            7248 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              2392 kB
Writeback:             0 kB
AnonPages:       5586344 kB
Mapped:            46976 kB
Shmem:             17036 kB
Slab:             418864 kB
SReclaimable:     391952 kB
SUnreclaim:        26912 kB
KernelStack:        3856 kB
PageTables:        16124 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    6881216 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   5429248 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      107904 kB
DirectMap2M:    33437696 kB

Free space on /tmp at the end= 45924 MiB
End job on node139 at 2018-07-22 01:19:33