Trace number 4262920

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 2017-07-05? (problem) 1489.74 404.54199

General information on the benchmark

NameGolombRuler/GolombRuler-a3-s1/
GolombRuler-21-a3.xml
MD5SUM77b850f9bb38d7d923034c01213ab5aa
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark409
Best CPU time to get the best result obtained on this benchmark20039.199
Satisfiable
(Un)Satisfiability was proved
Number of variables462
Number of constraints213
Number of domains2
Minimum domain size1000
Maximum domain size1001
Distribution of domain sizes[{"size":1000,"count":210},{"size":1001,"count":21}]
Minimum variable degree0
Maximum variable degree22
Distribution of variable degrees[{"degree":0,"count":231},{"degree":2,"count":210},{"degree":21,"count":19},{"degree":22,"count":2}]
Minimum constraint arity1
Maximum constraint arity210
Distribution of constraint arities[{"arity":1,"count":1},{"arity":3,"count":210},{"arity":21,"count":1},{"arity":210,"count":1}]
Number of extensional constraints0
Number of intensional constraints211
Distribution of constraint types[{"type":"intension","count":211},{"type":"allDifferent","count":1},{"type":"ordered","count":1}]
Optimization problemYES
Type of objectivemin VAR

Solver Data

1235.89/338.46	Aug 13, 2017 1:49:03 PM org.sat4j.reader.XMLCSP3Reader parseInstance
1235.89/338.46	INFO: Runtime exception
1235.89/338.46	java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:93)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeExpression(TseitinBasedIntensionCtrEncoder.java:77)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encode(TseitinBasedIntensionCtrEncoder.java:58)
1235.89/338.46		at org.sat4j.csp.constraints3.GenericCtrBuilder.buildCtrIntension(GenericCtrBuilder.java:57)
1235.89/338.46		at org.sat4j.reader.XMLCSP3Reader.buildCtrIntension(XMLCSP3Reader.java:428)
1235.89/338.46		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
1235.89/338.46		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
1235.89/338.46		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:440)
1235.89/338.46		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
1235.89/338.46		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadGroup(XCallbacks.java:406)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:353)
1235.89/338.46		at org.sat4j.reader.XMLCSP3Reader.loadInstance(XMLCSP3Reader.java:328)
1235.89/338.46		at org.sat4j.reader.XMLCSP3Reader.parseInstance(XMLCSP3Reader.java:293)
1235.89/338.46		at org.sat4j.reader.Reader.parseInstance(Reader.java:73)
1235.89/338.46		at org.sat4j.AbstractLauncher.readProblem(AbstractLauncher.java:201)
1235.89/338.46		at org.sat4j.csp.CSPLauncher.readProblem(CSPLauncher.java:95)
1235.89/338.46		at org.sat4j.AbstractLauncher.run(AbstractLauncher.java:255)
1235.89/338.46		at org.sat4j.csp.CSPLauncher.main(CSPLauncher.java:119)
1235.89/338.46	Caused by: java.lang.reflect.InvocationTargetException
1235.89/338.46		at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
1235.89/338.46		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1235.89/338.46		at java.lang.reflect.Method.invoke(Method.java:498)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1235.89/338.46		... 21 more
1235.89/338.46	Caused by: java.lang.IllegalArgumentException: java.lang.reflect.InvocationTargetException
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:127)
1235.89/338.46		... 25 more
1235.89/338.46	Caused by: java.lang.reflect.InvocationTargetException
1235.89/338.46		at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
1235.89/338.46		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1235.89/338.46		at java.lang.reflect.Method.invoke(Method.java:498)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:125)
1235.89/338.46		... 25 more
1235.89/338.46	Caused by: java.lang.OutOfMemoryError: GC overhead limit exceeded
1235.89/338.46		at org.sat4j.minisat.constraints.cnf.OriginalWLClause.brandNewClause(OriginalWLClause.java:81)
1235.89/338.46		at org.sat4j.pb.constraints.UnitBinaryWLClauseConstructor.constructClause(UnitBinaryWLClauseConstructor.java:56)
1235.89/338.46		at org.sat4j.pb.constraints.AbstractPBClauseCardConstrDataStructure.constructClause(AbstractPBClauseCardConstrDataStructure.java:225)
1235.89/338.46		at org.sat4j.pb.constraints.AbstractPBClauseCardConstrDataStructure.createClause(AbstractPBClauseCardConstrDataStructure.java:70)
1235.89/338.46		at org.sat4j.minisat.core.Solver.addClause(Solver.java:426)
1235.89/338.46		at org.sat4j.csp.CspSatSolverDecorator.addClause(CspSatSolverDecorator.java:147)
1235.89/338.46		at org.sat4j.tools.SolverDecorator.addClause(SolverDecorator.java:236)
1235.89/338.46		at org.sat4j.csp.intension.CspToPBSolverDecorator.addClause(CspToPBSolverDecorator.java:85)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.buildImplVar(TseitinBasedIntensionCtrEncoder.java:528)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorEq(TseitinBasedIntensionCtrEncoder.java:390)
1235.89/338.46		at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
1235.89/338.46		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1235.89/338.46		at java.lang.reflect.Method.invoke(Method.java:498)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeOperatorWithTseitin(TseitinBasedIntensionCtrEncoder.java:125)
1235.89/338.46		at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
1235.89/338.46		at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
1235.89/338.46		at java.lang.reflect.Method.invoke(Method.java:498)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeWithTseitin(TseitinBasedIntensionCtrEncoder.java:91)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encodeExpression(TseitinBasedIntensionCtrEncoder.java:77)
1235.89/338.46		at org.sat4j.csp.intension.TseitinBasedIntensionCtrEncoder.encode(TseitinBasedIntensionCtrEncoder.java:58)
1235.89/338.46		at org.sat4j.csp.constraints3.GenericCtrBuilder.buildCtrIntension(GenericCtrBuilder.java:57)
1235.89/338.46		at org.sat4j.reader.XMLCSP3Reader.buildCtrIntension(XMLCSP3Reader.java:428)
1235.89/338.46		at org.xcsp.parser.loaders.CtrLoaderInteger.intension(CtrLoaderInteger.java:394)
1235.89/338.46		at org.xcsp.parser.loaders.CtrLoaderInteger.load(CtrLoaderInteger.java:127)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadCtr(XCallbacks.java:457)
1235.89/338.46		at org.xcsp.parser.XCallbacks.lambda$loadCtrs$3(XCallbacks.java:440)
1235.89/338.46		at org.xcsp.parser.XCallbacks$$Lambda$60/575593575.accept(Unknown Source)
1235.89/338.46		at java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948)
1235.89/338.46		at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadCtrs(XCallbacks.java:437)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadGroup(XCallbacks.java:406)
1235.89/338.46		at org.xcsp.parser.XCallbacks.loadConstraints(XCallbacks.java:368)
1235.89/338.46	
1303.51/356.67	c SAT4J: a SATisfiability library for Java (c) 2004-2013 Artois University and CNRS
1303.51/356.67	c This is free software under the dual EPL/GNU LGPL licenses.
1303.51/356.67	c See www.sat4j.org for details.
1303.51/356.67	c That software uses the Rhino library from the Mozilla project.
1303.51/356.67	c version CUSTOM.v20170705
1303.51/356.67	c java.runtime.name	Java(TM) SE Runtime Environment
1303.51/356.67	c java.vm.name		Java HotSpot(TM) 64-Bit Server VM
1303.51/356.67	c java.vm.version	25.131-b11
1303.51/356.67	c java.vm.vendor	Oracle Corporation
1303.51/356.67	c sun.arch.data.model	64
1303.51/356.67	c java.version		1.8.0_131
1303.51/356.67	c os.name		Linux
1303.51/356.67	c os.version		3.10.0-514.16.1.el7.x86_64
1303.51/356.67	c os.arch		amd64
1303.51/356.67	c Free memory 		499604488
1303.51/356.67	c Max memory 		7247757312
1303.51/356.67	c Total memory 		504889344
1303.51/356.67	c Number of processors 	4
1303.51/356.67	c c --- Begin Solver configuration ---
1303.51/356.67	c org.sat4j.pb.constraints.CompetResolutionPBLongMixedWLClauseCardConstrDataStructure@2b71fc7e
1303.51/356.67	c Learn all clauses as in MiniSAT
1303.51/356.67	c LOGGER=java.util.logging.Logger@25f38edc claDecay=0.999 varDecay=0.95 conflictBoundIncFactor=1.5 initConflictBound=100 
1303.51/356.67	c VSIDS like heuristics from MiniSAT using a heap lightweight component caching from RSAT taking into account the objective function
1303.51/356.67	c No reason simplification
1303.51/356.67	c Glucose 2.1 dynamic restart strategy
1303.51/356.67	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
1303.51/356.67	c timeout=2147483s
1303.51/356.67	c DB Simplification allowed=false
1303.51/356.67	c Listener: org.sat4j.minisat.core.VoidTracing@1a86f2f1
1303.51/356.67	c --- End Solver configuration ---
1303.51/356.67	c starts		: 0
1333.88/364.43	c conflicts		: 0
1333.88/364.43	Exception in thread "Thread-1" c decisions		: 0
1353.57/369.42	c propagations		: 0
1353.57/369.42	c inspects		: 0
1353.57/369.42	c shortcuts		: 0
1353.57/369.42	c learnt literals	: 0
1353.57/369.42	c learnt binary clauses	: 0
1373.25/374.41	c learnt ternary clauses	: 0
1373.25/374.41	java.lang.OutOfMemoryError: GC overhead limit exceeded
1392.93/379.40	c learnt constraints	: 0
1412.38/384.39		at java.util.Hashtable.getEnumeration(Hashtable.java:601)
1412.38/384.39		at java.util.Hashtable.keys(Hashtable.java:257)
1412.38/384.39		at java.util.logging.LogManager$LoggerContext.getLoggerNames(LogManager.java:847)
1455.55/395.31		at java.util.logging.LogManager.reset(LogManager.java:1327)
1455.55/395.31		at java.util.logging.LogManager$Cleaner.run(LogManager.java:239)
1489.58/404.49	Exception in thread "Thread-0" java.lang.OutOfMemoryError: GC overhead limit exceeded
1489.58/404.49		at org.sat4j.minisat.core.SolverStats.printStat(SolverStats.java:114)
1489.58/404.49		at org.sat4j.pb.core.PBSolverStats.printStat(PBSolverStats.java:76)
1489.58/404.49		at org.sat4j.minisat.core.Solver.printStat(Solver.java:2013)
1489.58/404.49		at org.sat4j.minisat.core.Solver.printStat(Solver.java:2009)
1489.58/404.49		at org.sat4j.csp.CspSatSolverDecorator.printStat(CspSatSolverDecorator.java:262)
1489.58/404.49		at org.sat4j.OptimizationMode.displayResult(OptimizationMode.java:73)
1489.58/404.49		at org.sat4j.AbstractLauncher.displayResult(AbstractLauncher.java:125)
1489.58/404.49		at org.sat4j.csp.CSPLauncher.displayResult(CSPLauncher.java:150)
1489.58/404.49		at org.sat4j.AbstractLauncher$1.run(AbstractLauncher.java:94)

Verifier Data

One s line expected

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4262920-1502625475/watcher-4262920-1502625475 -o /tmp/evaluation-result-4262920-1502625475/solver-4262920-1502625475 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node113-1502615983-3944 --watchdog 2580 java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4262920-1502625475.xml 

running on 4 cores: 1,3,5,7

Enforcing CPUTime limit (soft limit, will send SIGTERM then SIGKILL): 2520 seconds
Enforcing CPUTime limit (hard limit, will send SIGXCPU): 2550 seconds
Enforcing wall clock limit (soft limit, will send SIGTERM then SIGKILL): 2520 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=6024, runsolver pid=6021

[startup+0.100098 s]*
/proc/loadavg: 3.93 2.63 2.30 7/216 6039
/proc/meminfo: memFree=23437512/32770624 swapFree=67108860/67108860
[pid=6024] ppid=6021 vsize=10555400 memory=29920 CPUtime=0.12 cores=1,3,5,7
/proc/6024/stat : 6024 (java) S 6021 6024 32402 0 -1 1077944320 6524 0 0 0 11 1 0 0 20 0 15 0 95635143 10808729600 7480 33554432000 4194304 4196468 140735589563648 140735589546192 140306325724919 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
/proc/6024/statm: 2638850 7480 2832 1 0 2627263 0
[pid=6024/tid=6026] ppid=6021 vsize=10555400 memory=8326441112148417179 CPUtime=0.09 cores=1,3,5,7
/proc/6024/task/6026/stat : 6026 (java) R 6021 6024 32402 0 -1 4202560 4381 0 0 0 8 1 0 0 20 0 15 0 95635143 10808729600 7480 33554432000 4194304 4196468 140735589563648 140306329913264 140306309768549 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6027] ppid=6021 vsize=10555400 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6027/stat : 6027 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635144 10808729600 7480 33554432000 4194304 4196468 140735589563648 140306251799696 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6028] ppid=6021 vsize=10555400 memory=140300992349824 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6028/stat : 6028 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635144 10808729600 7480 33554432000 4194304 4196468 140735589563648 140306250746896 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6029] ppid=6021 vsize=10555400 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6029/stat : 6029 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635144 10808729600 7480 33554432000 4194304 4196468 140735589563648 140306249694096 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6030] ppid=6021 vsize=10555400 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6030/stat : 6030 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635144 10808729600 7480 33554432000 4194304 4196468 140735589563648 140306248641296 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10555400 memory=140300992349824 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635145 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305563068784 140306325736066 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6032] ppid=6021 vsize=10555400 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6032/stat : 6032 (java) S 6021 6024 32402 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95635146 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305562014752 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6033] ppid=6021 vsize=10555400 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6033/stat : 6033 (java) S 6021 6024 32402 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95635146 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305560961904 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6034] ppid=6021 vsize=10555400 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6034/stat : 6034 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635148 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305559910224 140306325743515 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6035] ppid=6021 vsize=10555400 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6035/stat : 6035 (java) S 6021 6024 32402 0 -1 1077944384 411 0 0 0 0 0 0 0 20 0 15 0 95635148 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305558858608 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6036] ppid=6021 vsize=10555400 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6036/stat : 6036 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635148 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305557805808 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6037] ppid=6021 vsize=10555400 memory=140300992349824 CPUtime=0.01 cores=1,3,5,7
/proc/6024/task/6037/stat : 6037 (java) R 6021 6024 32402 0 -1 4202560 367 0 0 0 1 0 0 0 20 0 15 0 95635148 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305556753008 140306325736854 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6038] ppid=6021 vsize=10555400 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6038/stat : 6038 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635149 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305555700448 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6039] ppid=6021 vsize=10555400 memory=140300992349824 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6039/stat : 6039 (java) R 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635149 10808729600 7480 33554432000 4194304 4196468 140735589563648 140305554647728 140306325736066 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
Current children cumulated CPU time: 0.12 s
Current children cumulated vsize: 10555400 KiB
Current children cumulated memory: 29920 KiB

[startup+0.211092 s]*
/proc/loadavg: 3.93 2.63 2.30 6/216 6039
/proc/meminfo: memFree=23428768/32770624 swapFree=67108860/67108860
[pid=6024] ppid=6021 vsize=10555400 memory=39528 CPUtime=0.3 cores=1,3,5,7
/proc/6024/stat : 6024 (java) S 6021 6024 32402 0 -1 1077944320 8015 0 0 0 28 2 0 0 20 0 15 0 95635143 10808729600 9882 33554432000 4194304 4196468 140735589563648 140735589546192 140306325724919 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
/proc/6024/statm: 2638850 9882 2900 1 0 2627263 0
[pid=6024/tid=6026] ppid=6021 vsize=10555400 memory=7022364594140610616 CPUtime=0.2 cores=1,3,5,7
/proc/6024/task/6026/stat : 6026 (java) R 6021 6024 32402 0 -1 4202560 5184 0 0 0 19 1 0 0 20 0 15 0 95635143 10808729600 9882 33554432000 4194304 4196468 140735589563648 140306329958448 140306309768549 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6027] ppid=6021 vsize=10555400 memory=339 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6027/stat : 6027 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635144 10808729600 9882 33554432000 4194304 4196468 140735589563648 140306251799696 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6028] ppid=6021 vsize=10555400 memory=140300992528340 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6028/stat : 6028 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635144 10808729600 9882 33554432000 4194304 4196468 140735589563648 140306250746896 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6029] ppid=6021 vsize=10555400 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6029/stat : 6029 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635144 10808729600 9882 33554432000 4194304 4196468 140735589563648 140306249694096 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6030] ppid=6021 vsize=10555400 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6030/stat : 6030 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635144 10808729600 9882 33554432000 4194304 4196468 140735589563648 140306248641296 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10555400 memory=140300992349824 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635145 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305563068784 140306325736066 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6032] ppid=6021 vsize=10555400 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6032/stat : 6032 (java) S 6021 6024 32402 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95635146 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305562014752 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6033] ppid=6021 vsize=10555400 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6033/stat : 6033 (java) S 6021 6024 32402 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95635146 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305560961904 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6034] ppid=6021 vsize=10555400 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6034/stat : 6034 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635148 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305559910224 140306325743515 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6035] ppid=6021 vsize=10555400 memory=0 CPUtime=0.01 cores=1,3,5,7
/proc/6024/task/6035/stat : 6035 (java) S 6021 6024 32402 0 -1 1077944384 505 0 0 0 1 0 0 0 20 0 15 0 95635148 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305558858608 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6036] ppid=6021 vsize=10555400 memory=-1 CPUtime=0.01 cores=1,3,5,7
/proc/6024/task/6036/stat : 6036 (java) S 6021 6024 32402 0 -1 1077944384 107 0 0 0 1 0 0 0 20 0 15 0 95635148 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305557805808 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6037] ppid=6021 vsize=10555400 memory=140300992349824 CPUtime=0.06 cores=1,3,5,7
/proc/6024/task/6037/stat : 6037 (java) R 6021 6024 32402 0 -1 4202560 856 0 0 0 6 0 0 0 20 0 15 0 95635148 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305556753008 140306302949888 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6038] ppid=6021 vsize=10555400 memory=-1 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6038/stat : 6038 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635149 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305555700448 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6039] ppid=6021 vsize=10555400 memory=140300992349824 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6039/stat : 6039 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635149 10808729600 9882 33554432000 4194304 4196468 140735589563648 140305554647728 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
Current children cumulated CPU time: 0.3 s
Current children cumulated vsize: 10555400 KiB
Current children cumulated memory: 39528 KiB

[startup+0.31076 s]*
/proc/loadavg: 3.93 2.63 2.30 7/216 6039
/proc/meminfo: memFree=23421600/32770624 swapFree=67108860/67108860
[pid=6024] ppid=6021 vsize=10555476 memory=46756 CPUtime=0.53 cores=1,3,5,7
/proc/6024/stat : 6024 (java) S 6021 6024 32402 0 -1 1077944320 8688 0 0 0 51 2 0 0 20 0 15 0 95635143 10808807424 11689 33554432000 4194304 4196468 140735589563648 140735589546192 140306325724919 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
/proc/6024/statm: 2638869 11689 3042 1 0 2627263 0
[pid=6024/tid=6026] ppid=6021 vsize=10555476 memory=53476 CPUtime=0.29 cores=1,3,5,7
/proc/6024/task/6026/stat : 6026 (java) R 6021 6024 32402 0 -1 4202560 5510 0 0 0 28 1 0 0 20 0 15 0 95635143 10808807424 11689 33554432000 4194304 4196468 140735589563648 140306329961296 140305928105096 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6027] ppid=6021 vsize=10555476 memory=35 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6027/stat : 6027 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635144 10808807424 11689 33554432000 4194304 4196468 140735589563648 140306251799696 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6028] ppid=6021 vsize=10555476 memory=140300992407840 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6028/stat : 6028 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635144 10808807424 11689 33554432000 4194304 4196468 140735589563648 140306250746896 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6029] ppid=6021 vsize=10555476 memory=60388 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6029/stat : 6029 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635144 10808807424 11689 33554432000 4194304 4196468 140735589563648 140306249694096 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6030] ppid=6021 vsize=10555476 memory=35 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6030/stat : 6030 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635144 10808807424 11689 33554432000 4194304 4196468 140735589563648 140306248641296 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10555476 memory=140300992414752 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) S 6021 6024 32402 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 95635145 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305563068784 140306325736066 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6032] ppid=6021 vsize=10555476 memory=35 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6032/stat : 6032 (java) S 6021 6024 32402 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 95635146 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305562014752 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6033] ppid=6021 vsize=10555476 memory=2244 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6033/stat : 6033 (java) S 6021 6024 32402 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95635146 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305560961904 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6034] ppid=6021 vsize=10555476 memory=2244 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6034/stat : 6034 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635148 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305559910224 140306325743515 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6035] ppid=6021 vsize=10555476 memory=0 CPUtime=0.04 cores=1,3,5,7
/proc/6024/task/6035/stat : 6035 (java) S 6021 6024 32402 0 -1 1077944384 601 0 0 0 4 0 0 0 20 0 15 0 95635148 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305558858608 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6036] ppid=6021 vsize=10555476 memory=140300878204431 CPUtime=0.04 cores=1,3,5,7
/proc/6024/task/6036/stat : 6036 (java) S 6021 6024 32402 0 -1 1077944384 216 0 0 0 4 0 0 0 20 0 15 0 95635148 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305557805808 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6037] ppid=6021 vsize=10555476 memory=140300992355768 CPUtime=0.13 cores=1,3,5,7
/proc/6024/task/6037/stat : 6037 (java) R 6021 6024 32402 0 -1 4202560 994 0 0 0 13 0 0 0 20 0 15 0 95635148 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305556750800 140306304647901 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6038] ppid=6021 vsize=10555476 memory=140300878208975 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6038/stat : 6038 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635149 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305555700448 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6039] ppid=6021 vsize=10555476 memory=280601870575552 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6039/stat : 6039 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635149 10808807424 11689 33554432000 4194304 4196468 140735589563648 140305554647728 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
Current children cumulated CPU time: 0.53 s
Current children cumulated vsize: 10555476 KiB
Current children cumulated memory: 46756 KiB

[startup+0.702474 s]
/proc/loadavg: 3.93 2.63 2.30 10/216 6039
/proc/meminfo: memFree=23256832/32770624 swapFree=67108860/67108860
[pid=6024] ppid=6021 vsize=10555476 memory=347980 CPUtime=1.54 cores=1,3,5,7
/proc/6024/stat : 6024 (java) S 6021 6024 32402 0 -1 1077944320 10836 0 0 0 140 14 0 0 20 0 15 0 95635143 10808807424 86995 33554432000 4194304 4196468 140735589563648 140735589546192 140306325724919 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
/proc/6024/statm: 2638869 86995 3099 1 0 2627263 0
[pid=6024/tid=6026] ppid=6021 vsize=10555476 memory=2372 CPUtime=0.61 cores=1,3,5,7
/proc/6024/task/6026/stat : 6026 (java) S 6021 6024 32402 0 -1 1077944384 5918 0 0 0 56 5 0 0 20 0 15 0 95635143 10808807424 86995 33554432000 4194304 4196468 140735589563648 140306329955584 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6027] ppid=6021 vsize=10555476 memory=0 CPUtime=0.05 cores=1,3,5,7
/proc/6024/task/6027/stat : 6027 (java) R 6021 6024 32402 0 -1 4202560 126 0 0 0 3 2 0 0 20 0 15 0 95635144 10808807424 86995 33554432000 4194304 4196468 140735589563648 140306251799696 140306318821755 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6028] ppid=6021 vsize=10555476 memory=1200 CPUtime=0.05 cores=1,3,5,7
/proc/6024/task/6028/stat : 6028 (java) R 6021 6024 32402 0 -1 4202560 134 0 0 0 3 2 0 0 20 0 15 0 95635144 10808807424 86995 33554432000 4194304 4196468 140735589563648 140306250746784 140306310752793 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6029] ppid=6021 vsize=10555476 memory=15872 CPUtime=0.06 cores=1,3,5,7
/proc/6024/task/6029/stat : 6029 (java) R 6021 6024 32402 0 -1 4202560 135 0 0 0 4 2 0 0 20 0 15 0 95635144 10808807424 86995 33554432000 4194304 4196468 140735589563648 140306249694096 140306310752793 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6030] ppid=6021 vsize=10555476 memory=15572 CPUtime=0.04 cores=1,3,5,7
/proc/6024/task/6030/stat : 6030 (java) R 6021 6024 32402 0 -1 4202560 47 0 0 0 3 1 0 0 20 0 15 0 95635144 10808807424 86995 33554432000 4194304 4196468 140735589563648 140306248641496 140306310747109 0 4 0 16800975 0 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10555476 memory=2241 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) S 6021 6024 32402 0 -1 1077944384 82 0 0 0 0 0 0 0 20 0 15 0 95635145 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305563067296 140306325735125 0 0 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6032] ppid=6021 vsize=10555476 memory=2244 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6032/stat : 6032 (java) S 6021 6024 32402 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 95635146 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305562014752 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6033] ppid=6021 vsize=10555476 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6033/stat : 6033 (java) S 6021 6024 32402 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 95635146 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305560961904 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6034] ppid=6021 vsize=10555476 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6034/stat : 6034 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635148 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305559910224 140306325743515 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6035] ppid=6021 vsize=10555476 memory=0 CPUtime=0.21 cores=1,3,5,7
/proc/6024/task/6035/stat : 6035 (java) R 6021 6024 32402 0 -1 4202560 1193 0 0 0 21 0 0 0 20 0 15 0 95635148 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305558839624 140306306426583 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6036] ppid=6021 vsize=10555476 memory=0 CPUtime=0.24 cores=1,3,5,7
/proc/6024/task/6036/stat : 6036 (java) D 6021 6024 32402 0 -1 4202560 610 0 0 0 24 0 0 0 20 0 15 0 95635148 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305557791272 140306318442071 0 4 0 16800975 18446744071582151463 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6037] ppid=6021 vsize=10555476 memory=0 CPUtime=0.22 cores=1,3,5,7
/proc/6024/task/6037/stat : 6037 (java) S 6021 6024 32402 0 -1 1077944384 1230 0 0 0 22 0 0 0 20 0 15 0 95635148 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305556753008 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6038] ppid=6021 vsize=10555476 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6038/stat : 6038 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 95635149 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305555700448 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6039] ppid=6021 vsize=10555476 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6039/stat : 6039 (java) S 6021 6024 32402 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 95635149 10808807424 86995 33554432000 4194304 4196468 140735589563648 140305554647728 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
Current children cumulated CPU time: 1.54 s
Current children cumulated vsize: 10555476 KiB
Current children cumulated memory: 347980 KiB

[startup+1.50083 s]
/proc/loadavg: 3.93 2.63 2.30 8/216 6039
/proc/meminfo: memFree=23079472/32770624 swapFree=67108860/67108860
[pid=6024] ppid=6021 vsize=10555476 memory=544584 CPUtime=3.4 cores=1,3,5,7
/proc/6024/stat : 6024 (java) S 6021 6024 32402 0 -1 1077944320 12643 0 0 0 301 39 0 0 20 0 15 0 95635143 10808807424 136146 33554432000 4194304 4196468 140735589563648 140735589546192 140306325724919 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
/proc/6024/statm: 2638869 136146 3112 1 0 2627263 0
[pid=6024/tid=6026] ppid=6021 vsize=10555476 memory=3467834613763815231 CPUtime=1.18 cores=1,3,5,7
/proc/6024/task/6026/stat : 6026 (java) R 6021 6024 32402 0 -1 4202560 5943 0 0 0 113 5 0 0 20 0 15 0 95635143 10808807424 136146 33554432000 4194304 4196468 140735589563648 140306329958448 140305931299597 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6027] ppid=6021 vsize=10555476 memory=387452 CPUtime=0.27 cores=1,3,5,7
/proc/6024/task/6027/stat : 6027 (java) S 6021 6024 32402 0 -1 1077944384 273 0 0 0 20 7 0 0 20 0 15 0 95635144 10808807424 136146 33554432000 4194304 4196468 140735589563648 140306251799696 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6028] ppid=6021 vsize=10555476 memory=2241 CPUtime=0.28 cores=1,3,5,7
/proc/6024/task/6028/stat : 6028 (java) S 6021 6024 32402 0 -1 1077944384 279 0 0 0 20 8 0 0 20 0 15 0 95635144 10808807424 136146 33554432000 4194304 4196468 140735589563648 140306250746896 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6029] ppid=6021 vsize=10555476 memory=1200 CPUtime=0.28 cores=1,3,5,7
/proc/6024/task/6029/stat : 6029 (java) S 6021 6024 32402 0 -1 1077944384 313 0 0 0 20 8 0 0 20 0 15 0 95635144 10808807424 136146 33554432000 4194304 4196468 140735589563648 140306249694096 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6030] ppid=6021 vsize=10555476 memory=15872 CPUtime=0.26 cores=1,3,5,7
/proc/6024/task/6030/stat : 6030 (java) S 6021 6024 32402 0 -1 1077944384 195 0 0 0 18 8 0 0 20 0 15 0 95635144 10808807424 136146 33554432000 4194304 4196468 140735589563648 140306248641296 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10555476 memory=15572 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) S 6021 6024 32402 0 -1 1077944384 208 0 0 0 0 0 0 0 20 0 15 0 95635145 10808807424 136146 33554432000 4194304 4196468 140735589563648 140305563068784 140306325736066 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0

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

/proc/6024/task/6030/stat : 6030 (java) R 6021 6024 32402 0 -1 4202560 191377 0 0 0 36007 203 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306248641104 140306318353127 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10688756 memory=8560 CPUtime=23.65 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) S 6021 6024 32402 0 -1 1077944384 72532 0 0 0 2361 4 0 0 20 0 16 0 95635145 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305563067328 140306325735125 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6032] ppid=6021 vsize=10688756 memory=15872 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6032/stat : 6032 (java) S 6021 6024 32402 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 16 0 95635146 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305562014816 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6033] ppid=6021 vsize=10688756 memory=8197116 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6033/stat : 6033 (java) S 6021 6024 32402 0 -1 1077944384 95 0 0 0 0 0 0 0 20 0 16 0 95635146 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305560961920 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6034] ppid=6021 vsize=10688756 memory=8197116 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6034/stat : 6034 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305559910224 140306325743515 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6035] ppid=6021 vsize=10688756 memory=12068 CPUtime=0.45 cores=1,3,5,7
/proc/6024/task/6035/stat : 6035 (java) S 6021 6024 32402 0 -1 1077944384 2101 0 0 0 45 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305558858656 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6036] ppid=6021 vsize=10688756 memory=4100 CPUtime=0.51 cores=1,3,5,7
/proc/6024/task/6036/stat : 6036 (java) S 6021 6024 32402 0 -1 1077944384 2386 0 0 0 51 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305557805568 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6037] ppid=6021 vsize=10688756 memory=27524 CPUtime=0.26 cores=1,3,5,7
/proc/6024/task/6037/stat : 6037 (java) S 6021 6024 32402 0 -1 1077944384 2185 0 0 0 26 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305556753056 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6038] ppid=6021 vsize=10688756 memory=1292 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6038/stat : 6038 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 95635149 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305555700448 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6039] ppid=6021 vsize=10688756 memory=2448 CPUtime=0.16 cores=1,3,5,7
/proc/6024/task/6039/stat : 6039 (java) S 6021 6024 32402 0 -1 1077944384 642 0 0 0 9 7 0 0 20 0 16 0 95635149 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305554647728 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6121] ppid=6021 vsize=10688756 memory=8197096 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6121/stat : 6121 (java) S 6021 6024 32402 0 -1 1077944384 110 0 0 0 0 0 0 0 20 0 16 0 95668990 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305553591424 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
Current children cumulated CPU time: 1482.97 s
Current children cumulated vsize: 10688756 KiB
Current children cumulated memory: 8197116 KiB

[startup+404.542 s]
# the end of solver process 6024 was just reported to runsolver
# cumulated CPU time of all completed processes:  user=1481.4 s, system=8.34134 s

Solver just ended.
??? end of watcher thread
Dumping a history of the last processes samples

[startup+403.201 s]
/proc/loadavg: 6.98 5.84 3.94 9/217 6130
/proc/meminfo: memFree=15504612/32770624 swapFree=67108860/67108860
[pid=6024] ppid=6021 vsize=10688756 memory=8197116 CPUtime=1486.45 cores=1,3,5,7
/proc/6024/stat : 6024 (java) S 6021 6024 32402 0 -1 1077944320 584838 0 0 0 147816 829 0 0 20 0 16 0 95635143 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140735589546192 140306325724919 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
/proc/6024/statm: 2672189 2049279 3179 1 0 2660545 0
[pid=6024/tid=6026] ppid=6021 vsize=10688756 memory=8197116 CPUtime=13.08 cores=1,3,5,7
/proc/6024/task/6026/stat : 6026 (java) S 6021 6024 32402 0 -1 1077944384 18512 0 0 0 1298 10 0 0 20 0 16 0 95635143 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306329965600 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6027] ppid=6021 vsize=10688756 memory=1292 CPUtime=362.52 cores=1,3,5,7
/proc/6024/task/6027/stat : 6027 (java) R 6021 6024 32402 0 -1 4202560 103194 0 0 0 36055 197 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306251799584 140306307334724 0 4 0 16800975 0 0 0 -1 3 0 0 1 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6028] ppid=6021 vsize=10688756 memory=4100 CPUtime=361.87 cores=1,3,5,7
/proc/6024/task/6028/stat : 6028 (java) R 6021 6024 32402 0 -1 4202560 77833 0 0 0 35992 195 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306250746704 140306318353127 0 4 0 16800975 0 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6029] ppid=6021 vsize=10688756 memory=27524 CPUtime=360.86 cores=1,3,5,7
/proc/6024/task/6029/stat : 6029 (java) R 6021 6024 32402 0 -1 4202560 112390 0 0 0 35874 212 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306249694216 140306318353127 0 4 0 16800975 0 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6030] ppid=6021 vsize=10688756 memory=1292 CPUtime=362.97 cores=1,3,5,7
/proc/6024/task/6030/stat : 6030 (java) R 6021 6024 32402 0 -1 4202560 191377 0 0 0 36093 204 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306248641104 140306318353127 0 4 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10688756 memory=8112282956445269571 CPUtime=23.65 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) S 6021 6024 32402 0 -1 1077944384 72532 0 0 0 2361 4 0 0 20 0 16 0 95635145 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305563067328 140306325735125 0 0 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6032] ppid=6021 vsize=10688756 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6032/stat : 6032 (java) S 6021 6024 32402 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 16 0 95635146 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305562014816 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6033] ppid=6021 vsize=10688756 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6033/stat : 6033 (java) S 6021 6024 32402 0 -1 1077944384 95 0 0 0 0 0 0 0 20 0 16 0 95635146 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305560961920 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6034] ppid=6021 vsize=10688756 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6034/stat : 6034 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305559910224 140306325743515 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6035] ppid=6021 vsize=10688756 memory=4100 CPUtime=0.45 cores=1,3,5,7
/proc/6024/task/6035/stat : 6035 (java) S 6021 6024 32402 0 -1 1077944384 2101 0 0 0 45 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305558858656 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6036] ppid=6021 vsize=10688756 memory=27524 CPUtime=0.51 cores=1,3,5,7
/proc/6024/task/6036/stat : 6036 (java) S 6021 6024 32402 0 -1 1077944384 2386 0 0 0 51 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305557805568 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6037] ppid=6021 vsize=10688756 memory=1292 CPUtime=0.26 cores=1,3,5,7
/proc/6024/task/6037/stat : 6037 (java) S 6021 6024 32402 0 -1 1077944384 2185 0 0 0 26 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305556753056 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6038] ppid=6021 vsize=10688756 memory=2448 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6038/stat : 6038 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 95635149 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305555700448 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6039] ppid=6021 vsize=10688756 memory=1732 CPUtime=0.16 cores=1,3,5,7
/proc/6024/task/6039/stat : 6039 (java) S 6021 6024 32402 0 -1 1077944384 642 0 0 0 9 7 0 0 20 0 16 0 95635149 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305554647728 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6121] ppid=6021 vsize=10688756 memory=8197116 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6121/stat : 6121 (java) S 6021 6024 32402 0 -1 1077944384 110 0 0 0 0 0 0 0 20 0 16 0 95668990 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305553591424 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
Current children cumulated CPU time: 1486.45 s
Current children cumulated vsize: 10688756 KiB
Current children cumulated memory: 8197116 KiB

[startup+404.001 s]*
/proc/loadavg: 6.98 5.84 3.94 6/217 6130
/proc/meminfo: memFree=15504612/32770624 swapFree=67108860/67108860
[pid=6024] ppid=6021 vsize=10688756 memory=8197116 CPUtime=1489.19 cores=1,3,5,7
/proc/6024/stat : 6024 (java) S 6021 6024 32402 0 -1 1077944320 585076 0 0 0 148090 829 0 0 20 0 16 0 95635143 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140735589546192 140306325724919 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
/proc/6024/statm: 2672189 2049279 3179 1 0 2660545 0
[pid=6024/tid=6026] ppid=6021 vsize=10688756 memory=6935054825532540783 CPUtime=13.08 cores=1,3,5,7
/proc/6024/task/6026/stat : 6026 (java) S 6021 6024 32402 0 -1 1077944384 18512 0 0 0 1298 10 0 0 20 0 16 0 95635143 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306329965600 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6027] ppid=6021 vsize=10688756 memory=9047017150487036571 CPUtime=363.19 cores=1,3,5,7
/proc/6024/task/6027/stat : 6027 (java) S 6021 6024 32402 0 -1 1077944384 103194 0 0 0 36122 197 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306251799696 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6028] ppid=6021 vsize=10688756 memory=-8707038579349950309 CPUtime=362.52 cores=1,3,5,7
/proc/6024/task/6028/stat : 6028 (java) S 6021 6024 32402 0 -1 1077944384 77833 0 0 0 36057 195 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306250746896 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6029] ppid=6021 vsize=10688756 memory=-8412656567318647667 CPUtime=361.51 cores=1,3,5,7
/proc/6024/task/6029/stat : 6029 (java) S 6021 6024 32402 0 -1 1077944384 112390 0 0 0 35938 213 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306249694096 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6030] ppid=6021 vsize=10688756 memory=2816 CPUtime=363.62 cores=1,3,5,7
/proc/6024/task/6030/stat : 6030 (java) S 6021 6024 32402 0 -1 1077944384 191377 0 0 0 36158 204 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306248641296 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10688756 memory=2536 CPUtime=23.79 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) R 6021 6024 32402 0 -1 4202560 72770 0 0 0 2375 4 0 0 20 0 16 0 95635145 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305563067328 140306310182489 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6032] ppid=6021 vsize=10688756 memory=4096 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6032/stat : 6032 (java) S 6021 6024 32402 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 16 0 95635146 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305562014816 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6033] ppid=6021 vsize=10688756 memory=8197116 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6033/stat : 6033 (java) S 6021 6024 32402 0 -1 1077944384 95 0 0 0 0 0 0 0 20 0 16 0 95635146 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305560961920 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6034] ppid=6021 vsize=10688756 memory=0 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6034/stat : 6034 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305559910224 140306325743515 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6035] ppid=6021 vsize=10688756 memory=0 CPUtime=0.45 cores=1,3,5,7
/proc/6024/task/6035/stat : 6035 (java) S 6021 6024 32402 0 -1 1077944384 2101 0 0 0 45 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305558858656 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6036] ppid=6021 vsize=10688756 memory=800 CPUtime=0.51 cores=1,3,5,7
/proc/6024/task/6036/stat : 6036 (java) S 6021 6024 32402 0 -1 1077944384 2386 0 0 0 51 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305557805568 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6037] ppid=6021 vsize=10688756 memory=12068 CPUtime=0.26 cores=1,3,5,7
/proc/6024/task/6037/stat : 6037 (java) S 6021 6024 32402 0 -1 1077944384 2185 0 0 0 26 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305556753056 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6038] ppid=6021 vsize=10688756 memory=1440 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6038/stat : 6038 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 95635149 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305555700448 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6039] ppid=6021 vsize=10688756 memory=5792 CPUtime=0.16 cores=1,3,5,7
/proc/6024/task/6039/stat : 6039 (java) S 6021 6024 32402 0 -1 1077944384 642 0 0 0 9 7 0 0 20 0 16 0 95635149 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305554647728 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6121] ppid=6021 vsize=10688756 memory=1224 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6121/stat : 6121 (java) S 6021 6024 32402 0 -1 1077944384 110 0 0 0 0 0 0 0 20 0 16 0 95668990 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305553591424 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
Current children cumulated CPU time: 1489.19 s
Current children cumulated vsize: 10688756 KiB
Current children cumulated memory: 8197116 KiB

[startup+404.401 s]
/proc/loadavg: 6.98 5.84 3.94 6/217 6130
/proc/meminfo: memFree=15504612/32770624 swapFree=67108860/67108860
[pid=6024] ppid=6021 vsize=10688756 memory=8197116 CPUtime=1489.58 cores=1,3,5,7
/proc/6024/stat : 6024 (java) S 6021 6024 32402 0 -1 1077944320 585076 0 0 0 148129 829 0 0 20 0 16 0 95635143 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140735589546192 140306325724919 0 0 0 16800975 18446744073709551615 0 0 17 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
/proc/6024/statm: 2672189 2049279 3179 1 0 2660545 0
[pid=6024/tid=6026] ppid=6021 vsize=10688756 memory=1004 CPUtime=13.08 cores=1,3,5,7
/proc/6024/task/6026/stat : 6026 (java) S 6021 6024 32402 0 -1 1077944384 18512 0 0 0 1298 10 0 0 20 0 16 0 95635143 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306329965600 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6027] ppid=6021 vsize=10688756 memory=1200 CPUtime=363.19 cores=1,3,5,7
/proc/6024/task/6027/stat : 6027 (java) S 6021 6024 32402 0 -1 1077944384 103194 0 0 0 36122 197 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306251799696 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 1 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6028] ppid=6021 vsize=10688756 memory=8112282956445269571 CPUtime=362.52 cores=1,3,5,7
/proc/6024/task/6028/stat : 6028 (java) S 6021 6024 32402 0 -1 1077944384 77833 0 0 0 36057 195 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306250746896 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6029] ppid=6021 vsize=10688756 memory=8197116 CPUtime=361.51 cores=1,3,5,7
/proc/6024/task/6029/stat : 6029 (java) S 6021 6024 32402 0 -1 1077944384 112390 0 0 0 35938 213 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306249694096 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6030] ppid=6021 vsize=10688756 memory=8112282956445269571 CPUtime=363.62 cores=1,3,5,7
/proc/6024/task/6030/stat : 6030 (java) S 6021 6024 32402 0 -1 1077944384 191377 0 0 0 36158 204 0 0 20 0 16 0 95635144 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140306248641296 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6031] ppid=6021 vsize=10688756 memory=3004 CPUtime=24.18 cores=1,3,5,7
/proc/6024/task/6031/stat : 6031 (java) R 6021 6024 32402 0 -1 4202560 72770 0 0 0 2414 4 0 0 20 0 16 0 95635145 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305563067328 140306310182539 0 0 0 16800975 0 0 0 -1 5 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6032] ppid=6021 vsize=10688756 memory=8112282956445269571 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6032/stat : 6032 (java) S 6021 6024 32402 0 -1 1077944384 49 0 0 0 0 0 0 0 20 0 16 0 95635146 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305562014816 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6033] ppid=6021 vsize=10688756 memory=8197144 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6033/stat : 6033 (java) S 6021 6024 32402 0 -1 1077944384 95 0 0 0 0 0 0 0 20 0 16 0 95635146 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305560961920 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6034] ppid=6021 vsize=10688756 memory=6935054825532540783 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6034/stat : 6034 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305559910224 140306325743515 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6035] ppid=6021 vsize=10688756 memory=4388 CPUtime=0.45 cores=1,3,5,7
/proc/6024/task/6035/stat : 6035 (java) S 6021 6024 32402 0 -1 1077944384 2101 0 0 0 45 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305558858656 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6036] ppid=6021 vsize=10688756 memory=3232 CPUtime=0.51 cores=1,3,5,7
/proc/6024/task/6036/stat : 6036 (java) S 6021 6024 32402 0 -1 1077944384 2386 0 0 0 51 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305557805568 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6037] ppid=6021 vsize=10688756 memory=8197144 CPUtime=0.26 cores=1,3,5,7
/proc/6024/task/6037/stat : 6037 (java) S 6021 6024 32402 0 -1 1077944384 2185 0 0 0 26 0 0 0 20 0 16 0 95635148 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305556753056 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 1 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6038] ppid=6021 vsize=10688756 memory=1160 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6038/stat : 6038 (java) S 6021 6024 32402 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 16 0 95635149 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305555700448 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 3 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6039] ppid=6021 vsize=10688756 memory=3004 CPUtime=0.17 cores=1,3,5,7
/proc/6024/task/6039/stat : 6039 (java) S 6021 6024 32402 0 -1 1077944384 642 0 0 0 10 7 0 0 20 0 16 0 95635149 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305554647728 140306325736066 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
[pid=6024/tid=6121] ppid=6021 vsize=10688756 memory=7963800 CPUtime=0 cores=1,3,5,7
/proc/6024/task/6121/stat : 6121 (java) S 6021 6024 32402 0 -1 1077944384 110 0 0 0 0 0 0 0 20 0 16 0 95668990 10945286144 2049279 33554432000 4194304 4196468 140735589563648 140305553591424 140306325735125 0 4 0 16800975 18446744071579849748 0 0 -1 7 0 0 0 0 0 6293624 6294260 17985536 140735589569670 140735589569823 140735589569823 140735589572559 0
Current children cumulated CPU time: 1489.58 s
Current children cumulated vsize: 10688756 KiB
Current children cumulated memory: 8197116 KiB

[startup+404.501 s]*
/proc/loadavg: 6.98 5.84 3.94 6/203 6130
/proc/meminfo: memFree=15850392/32770624 swapFree=67108860/67108860
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 0 KiB
Current children cumulated memory: 0 KiB

Child status: 0
Real time (s): 404.542
CPU time (s): 1489.74
CPU user time (s): 1481.4
CPU system time (s): 8.34134
CPU usage (%): 368.254
Max. virtual memory (cumulated for all children) (KiB): 10688756
Max. memory (cumulated for all children) (KiB): 8197148

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 1481.4
system time used= 8.34134
maximum resident set size= 8197244
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 585174
page faults= 0
swaps= 0
block input operations= 0
block output operations= 576
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 22132
involuntary context switches= 33382


# summary of solver processes directly reported to runsolver:
#   pid: 6024
#   total CPU time (s): 1489.74
#   total CPU user time (s): 1481.4
#   total CPU system time (s): 8.34134

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 2.31884 second user time and 4.49465 second system time

The end

Launcher Data

Begin job on node113 at 2017-08-13 13:43:37
IDJOB=4262920
IDBENCH=126219
IDSOLVER=2651
FILE ID=node113/4262920-1502625475
RUNJOBID= node113-1502615983-3944
PBS_JOBID= 20628303
Free space on /tmp= 61788 MiB

SOLVER NAME= sat4j-CSP 2017-07-05
BENCH NAME= XCSP17/GolombRuler/GolombRuler-a3-s1/GolombRuler-21-a3.xml
COMMAND LINE= java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4262920-1502625475/watcher-4262920-1502625475 -o /tmp/evaluation-result-4262920-1502625475/solver-4262920-1502625475 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node113-1502615983-3944 --watchdog 2580  java -DCompetitionOutput -jar HOME/sat4j-csp-170705.jar HOME/instance-4262920-1502625475.xml

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

MD5SUM BENCH= 77b850f9bb38d7d923034c01213ab5aa
RANDOM SEED=1036339645

node113.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.89
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.89
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.89
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.89
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:        23455668 kB
MemAvailable:   23771136 kB
Buffers:          109112 kB
Cached:           493092 kB
SwapCached:            0 kB
Active:          8707368 kB
Inactive:         153668 kB
Active(anon):    8208920 kB
Inactive(anon):    77700 kB
Active(file):     498448 kB
Inactive(file):    75968 kB
Unevictable:        6572 kB
Mlocked:            6572 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:              1628 kB
Writeback:             0 kB
AnonPages:       8221732 kB
Mapped:            54716 kB
Shmem:             25224 kB
Slab:             139956 kB
SReclaimable:     113776 kB
SUnreclaim:        26180 kB
KernelStack:        3856 kB
PageTables:        21756 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    8649704 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:   8050688 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      116096 kB
DirectMap2M:    33429504 kB

Free space on /tmp at the end= 61784 MiB
End job on node113 at 2017-08-13 13:50:21