Trace number 4272041

Some explanations

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

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

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

Solver answer on this benchmark

Solver NameAnswerobjective functionCPU timeWall clock time
choco-solver 5a (2017-07-26)SAT968 2085.28 1794.01

General information on the benchmark

NameGolombRuler/GolombRuler-a4-s1/
GolombRuler-27-a4.xml
MD5SUM4a6b886165f8d6d7f8f178d50db8a3de
Bench CategoryCOP (optimization problem)
Best result obtained on this benchmarkSAT TO
Best value of the objective obtained on this benchmark818
Best CPU time to get the best result obtained on this benchmark2520.1201
Satisfiable
(Un)Satisfiability was proved
Number of variables27
Number of constraints58502
Number of domains1
Minimum domain size1001
Maximum domain size1001
Distribution of domain sizes[{"size":1001,"count":27}]
Minimum variable degree8451
Maximum variable degree8452
Distribution of variable degrees[{"degree":8451,"count":25},{"degree":8452,"count":2}]
Minimum constraint arity1
Maximum constraint arity27
Distribution of constraint arities[{"arity":1,"count":1},{"arity":3,"count":5850},{"arity":4,"count":52650},{"arity":27,"count":1}]
Number of extensional constraints0
Number of intensional constraints58501
Distribution of constraint types[{"type":"intension","count":58501},{"type":"ordered","count":1}]
Optimization problemYES
Type of objectivemin VAR

Solver Data

0.00/0.10	c java -server -Xmx11000m -cp .:.//choco-parsers.jar org.chocosolver.parser.xcsp.ChocoXCSP "HOME/instance-4272041-1502779289.xml"  -tl '2520s' -p 1 -x 3
0.08/0.29	c [HOME/instance-4272041-1502779289.xml, -tl, 2520s, -p, 1, -x, 3]
0.26/0.35	c simple solver
0.26/0.41	c parse instance...
13.05/4.86	c solve instance...
1811.23/1623.75	o 968 
2085.16/1793.94	Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
2085.16/1793.94		at org.chocosolver.memory.trailing.trail.flatten.StoredLongTrail.resizeUpdateCapacity(StoredLongTrail.java:181)
2085.16/1793.94		at org.chocosolver.memory.trailing.trail.flatten.StoredLongTrail.savePreviousState(StoredLongTrail.java:142)
2085.16/1793.94		at org.chocosolver.memory.trailing.StoredLong.set(StoredLong.java:44)
2085.16/1793.94		at org.chocosolver.memory.structure.S64BitSet.clear(S64BitSet.java:348)
2085.16/1793.94		at org.chocosolver.solver.variables.impl.BitsetIntVarImpl.instantiateTo(BitsetIntVarImpl.java:367)
2085.16/1793.94		at org.chocosolver.solver.constraints.binary.PropAbsolute.propagate(PropAbsolute.java:97)
2085.16/1793.94		at org.chocosolver.solver.propagation.hardcoded.SevenQueuesPropagatorEngine.propagate(SevenQueuesPropagatorEngine.java:201)
2085.16/1793.94		at org.chocosolver.solver.search.strategy.selectors.values.IntDomainBest.bound(IntDomainBest.java:101)
2085.16/1793.94		at org.chocosolver.solver.search.strategy.selectors.values.IntDomainBest.selectValue(IntDomainBest.java:70)
2085.16/1793.94		at org.chocosolver.solver.search.strategy.selectors.variables.DomOverWDeg.computeDecision(DomOverWDeg.java:81)
2085.16/1793.94		at org.chocosolver.solver.search.strategy.selectors.variables.DomOverWDeg.computeDecision(DomOverWDeg.java:31)
2085.16/1793.94		at org.chocosolver.solver.search.strategy.strategy.StrategiesSequencer.computeDecision(StrategiesSequencer.java:74)
2085.16/1793.94		at org.chocosolver.solver.search.strategy.strategy.LastConflict.getDecision(LastConflict.java:94)
2085.16/1793.94		at org.chocosolver.solver.search.strategy.strategy.StrategiesSequencer.getDecision(StrategiesSequencer.java:97)
2085.16/1793.94		at org.chocosolver.solver.search.loop.move.MoveBinaryDFS.extend(MoveBinaryDFS.java:61)
2085.16/1793.94		at org.chocosolver.solver.search.loop.move.MoveRestart.extend(MoveRestart.java:81)
2085.16/1793.94		at org.chocosolver.solver.Solver.extend(Solver.java:429)
2085.16/1793.94		at org.chocosolver.solver.Solver.searchLoop(Solver.java:298)
2085.16/1793.94		at org.chocosolver.solver.Solver.solve(Solver.java:264)
2085.16/1793.94		at org.chocosolver.parser.xcsp.XCSP.singleThread(XCSP.java:148)
2085.16/1793.94		at org.chocosolver.parser.xcsp.XCSP.solve(XCSP.java:132)
2085.16/1793.94		at org.chocosolver.parser.xcsp.ChocoXCSP.main(ChocoXCSP.java:25)
2085.16/1793.94	s SATISFIABLE
2085.16/1793.94	v <instantiation>
2085.16/1793.94	v 	<list>x[0] x[1] x[2] x[3] x[4] x[5] x[6] x[7] x[8] x[9] x[10] x[11] x[12] x[13] x[14] x[15] x[16] x[17] x[18] x[19] x[20] x[21] x[22] x[23] x[24] x[25] x[26] </list>
2085.16/1793.94	v 	<values>0 1 4 6 13 21 31 45 64 87 98 133 155 171 226 276 302 330 382 478 518 567 662 724 849 931 968 </values>
2085.16/1793.94	v </instantiation>
2085.16/1793.94	c Unexpected resolution interruption!

Verifier Data

OK	968

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

command line: BIN/runsolver --timestamp -w /tmp/evaluation-result-4272041-1502779289/watcher-4272041-1502779289 -o /tmp/evaluation-result-4272041-1502779289/solver-4272041-1502779289 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node128-1502649221-29000 --watchdog 2580 ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 355872350 HOME/instance-4272041-1502779289.xml 

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

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=27149, runsolver pid=27146

[startup+0.100197 s]*
/proc/loadavg: 2.44 2.21 2.23 2/198 27150
/proc/meminfo: memFree=30620092/32770624 swapFree=67108860/67108860
[pid=27149] ppid=27146 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27149/stat : 27149 (xcsp3-exec) S 27146 27149 7968 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 31811517 9740288 345 18446744073709551615 4194304 5098028 140721986041744 140721986039848 140520447386236 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 12787712 140721986048378 140721986048582 140721986048582 140721986052075 0
/proc/27149/statm: 2378 345 289 221 0 87 0
Current children cumulated CPU time: 0 s
Current children cumulated vsize: 9512 KiB
Current children cumulated memory: 1380 KiB

[startup+0.217536 s]*
/proc/loadavg: 2.44 2.21 2.23 4/213 27165
/proc/meminfo: memFree=30609632/32770624 swapFree=67108860/67108860
[pid=27149] ppid=27146 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27149/stat : 27149 (xcsp3-exec) S 27146 27149 7968 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 31811517 9740288 345 18446744073709551615 4194304 5098028 140721986041744 140721986039848 140520447386236 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 12787712 140721986048378 140721986048582 140721986048582 140721986052075 0
/proc/27149/statm: 2378 345 289 221 0 87 0
[pid=27151] ppid=27149 vsize=13974352 memory=26748 CPUtime=0.08 cores=0,2,4,6
/proc/27151/stat : 27151 (java) S 27149 27149 7968 0 -1 1077944320 5102 0 0 0 6 2 0 0 20 0 15 0 31811528 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 140730388073072 139970192867063 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
/proc/27151/statm: 3493588 6687 2726 1 0 3482964 0
[pid=27151/tid=27152] ppid=27149 vsize=13974352 memory=7078076838863583841 CPUtime=0.06 cores=0,2,4,6
/proc/27151/task/27152/stat : 27152 (java) R 27149 27149 7968 0 -1 4202560 3253 0 0 0 5 1 0 0 20 0 15 0 31811528 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139970197098624 139970192890653 0 4 1 16800974 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27153] ppid=27149 vsize=13974352 memory=4123389896250521363 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27153/stat : 27153 (java) S 27149 27149 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 31811529 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139970112280848 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27154] ppid=27149 vsize=13974352 memory=140354526905984 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27154/stat : 27154 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811529 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139970111228304 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27155] ppid=27149 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27155/stat : 27155 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811529 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139970110175760 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27156] ppid=27149 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27156/stat : 27156 (java) S 27149 27149 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 31811529 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139970109123216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27157] ppid=27149 vsize=13974352 memory=140354526905984 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27157/stat : 27157 (java) S 27149 27149 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 31811530 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969378154992 139970192878210 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27158] ppid=27149 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27158/stat : 27158 (java) S 27149 27149 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 31811531 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969377101216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27159] ppid=27149 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27159/stat : 27159 (java) S 27149 27149 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 31811531 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969376048624 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27160] ppid=27149 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27160/stat : 27160 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969374997200 139970192885659 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27161] ppid=27149 vsize=13974352 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27161/stat : 27161 (java) S 27149 27149 7968 0 -1 1077944384 308 0 0 0 0 0 0 0 20 0 15 0 31811533 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969373943792 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27162] ppid=27149 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27162/stat : 27162 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969372891248 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27163] ppid=27149 vsize=13974352 memory=140354526905984 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27163/stat : 27163 (java) S 27149 27149 7968 0 -1 1077944384 235 0 0 0 0 0 0 0 20 0 15 0 31811534 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969371838704 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27164] ppid=27149 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27164/stat : 27164 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811534 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969370786400 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27165] ppid=27149 vsize=13974352 memory=140354526905984 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27165/stat : 27165 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811538 14309736448 6687 18446744073709551615 4194304 4196468 140730388090528 139969369733936 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
Current children cumulated CPU time: 0.08 s
Current children cumulated vsize: 13983864 KiB
Current children cumulated memory: 28128 KiB

[startup+0.31147 s]*
/proc/loadavg: 2.44 2.21 2.23 3/213 27165
/proc/meminfo: memFree=30592712/32770624 swapFree=67108860/67108860
[pid=27149] ppid=27146 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27149/stat : 27149 (xcsp3-exec) S 27146 27149 7968 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 31811517 9740288 345 18446744073709551615 4194304 5098028 140721986041744 140721986039848 140520447386236 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 12787712 140721986048378 140721986048582 140721986048582 140721986052075 0
/proc/27149/statm: 2378 345 289 221 0 87 0
[pid=27151] ppid=27149 vsize=13974352 memory=36620 CPUtime=0.26 cores=0,2,4,6
/proc/27151/stat : 27151 (java) S 27149 27149 7968 0 -1 1077944320 8779 0 0 0 22 4 0 0 20 0 15 0 31811528 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 140730388073072 139970192867063 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
/proc/27151/statm: 3493588 9155 2980 1 0 3482964 0
[pid=27151/tid=27152] ppid=27149 vsize=13974352 memory=29678448712876256 CPUtime=0.16 cores=0,2,4,6
/proc/27151/task/27152/stat : 27152 (java) R 27149 27149 7968 0 -1 4202560 6019 0 0 0 13 3 0 0 20 0 15 0 31811528 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139970197094832 139970173142944 0 4 1 16800974 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27153] ppid=27149 vsize=13974352 memory=4294967596 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27153/stat : 27153 (java) S 27149 27149 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 31811529 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139970112280848 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27154] ppid=27149 vsize=13974352 memory=140354526916920 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27154/stat : 27154 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811529 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139970111228304 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27155] ppid=27149 vsize=13974352 memory=6944665225511868275 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27155/stat : 27155 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811529 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139970110175760 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27156] ppid=27149 vsize=13974352 memory=3472328295574038117 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27156/stat : 27156 (java) S 27149 27149 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 31811529 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139970109123216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27157] ppid=27149 vsize=13974352 memory=7016594012681605299 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27157/stat : 27157 (java) S 27149 27149 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 31811530 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969378154992 139970192878210 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27158] ppid=27149 vsize=13974352 memory=3472328296227418159 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27158/stat : 27158 (java) S 27149 27149 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 31811531 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969377101216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27159] ppid=27149 vsize=13974352 memory=6944656592455360604 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27159/stat : 27159 (java) S 27149 27149 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 31811531 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969376048624 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27160] ppid=27149 vsize=13974352 memory=6944656592387989600 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27160/stat : 27160 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969374997200 139970192885659 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27161] ppid=27149 vsize=13974352 memory=0 CPUtime=0.02 cores=0,2,4,6
/proc/27151/task/27161/stat : 27161 (java) S 27149 27149 7968 0 -1 1077944384 541 0 0 0 2 0 0 0 20 0 15 0 31811533 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969373943792 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27162] ppid=27149 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27162/stat : 27162 (java) S 27149 27149 7968 0 -1 1077944384 193 0 0 0 0 0 0 0 20 0 15 0 31811533 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969372891248 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27163] ppid=27149 vsize=13974352 memory=140354526905984 CPUtime=0.05 cores=0,2,4,6
/proc/27151/task/27163/stat : 27163 (java) S 27149 27149 7968 0 -1 1077944384 720 0 0 0 5 0 0 0 20 0 15 0 31811534 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969371838704 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27164] ppid=27149 vsize=13974352 memory=-1 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27164/stat : 27164 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811534 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969370786400 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27165] ppid=27149 vsize=13974352 memory=140354526905984 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27165/stat : 27165 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811538 14309736448 9155 18446744073709551615 4194304 4196468 140730388090528 139969369733936 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
Current children cumulated CPU time: 0.26 s
Current children cumulated vsize: 13983864 KiB
Current children cumulated memory: 38000 KiB

[startup+0.702735 s]
/proc/loadavg: 2.44 2.21 2.23 5/213 27165
/proc/meminfo: memFree=30576968/32770624 swapFree=67108860/67108860
[pid=27149] ppid=27146 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27149/stat : 27149 (xcsp3-exec) S 27146 27149 7968 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 31811517 9740288 345 18446744073709551615 4194304 5098028 140721986041744 140721986039848 140520447386236 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 12787712 140721986048378 140721986048582 140721986048582 140721986052075 0
/proc/27149/statm: 2378 345 289 221 0 87 0
[pid=27151] ppid=27149 vsize=13978684 memory=89716 CPUtime=1.27 cores=0,2,4,6
/proc/27151/stat : 27151 (java) S 27149 27149 7968 0 -1 1077944320 13038 0 0 0 121 6 0 0 20 0 15 0 31811528 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 140730388073072 139970192867063 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
/proc/27151/statm: 3494671 22429 3143 1 0 3482964 0
[pid=27151/tid=27152] ppid=27149 vsize=13978684 memory=5793432669426373732 CPUtime=0.53 cores=0,2,4,6
/proc/27151/task/27152/stat : 27152 (java) R 27149 27149 7968 0 -1 4202560 7804 0 0 0 49 4 0 0 20 0 15 0 31811528 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139970197103136 139970192878998 0 4 1 16800974 0 0 0 -1 0 0 0 3 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27153] ppid=27149 vsize=13978684 memory=8099279071866868845 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27153/stat : 27153 (java) S 27149 27149 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 31811529 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139970112280848 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27154] ppid=27149 vsize=13978684 memory=7378976914027405912 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27154/stat : 27154 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811529 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139970111228304 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27155] ppid=27149 vsize=13978684 memory=5787213844244489303 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27155/stat : 27155 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811529 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139970110175760 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27156] ppid=27149 vsize=13978684 memory=7590926441931106660 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27156/stat : 27156 (java) S 27149 27149 7968 0 -1 1077944384 2 0 0 0 0 0 0 0 20 0 15 0 31811529 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139970109123216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27157] ppid=27149 vsize=13978684 memory=2867664589436253 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27157/stat : 27157 (java) S 27149 27149 7968 0 -1 1077944384 5 0 0 0 0 0 0 0 20 0 15 0 31811530 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969378154992 139970192878210 0 0 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27158] ppid=27149 vsize=13978684 memory=151556178748389 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27158/stat : 27158 (java) S 27149 27149 7968 0 -1 1077944384 33 0 0 0 0 0 0 0 20 0 15 0 31811531 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969377101216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27159] ppid=27149 vsize=13978684 memory=280708727863912 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27159/stat : 27159 (java) S 27149 27149 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 31811531 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969376048624 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27160] ppid=27149 vsize=13978684 memory=140354363975312 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27160/stat : 27160 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969374997200 139970192885659 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27161] ppid=27149 vsize=13978684 memory=280708727801304 CPUtime=0.27 cores=0,2,4,6
/proc/27151/task/27161/stat : 27161 (java) S 27149 27149 7968 0 -1 1077944384 1192 0 0 0 27 0 0 0 20 0 15 0 31811533 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969373943792 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27162] ppid=27149 vsize=13978684 memory=7451882128350471276 CPUtime=0.24 cores=0,2,4,6
/proc/27151/task/27162/stat : 27162 (java) S 27149 27149 7968 0 -1 1077944384 1334 0 0 0 24 0 0 0 20 0 15 0 31811533 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969372891248 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27163] ppid=27149 vsize=13978684 memory=7373643174464416100 CPUtime=0.2 cores=0,2,4,6
/proc/27151/task/27163/stat : 27163 (java) R 27149 27149 7968 0 -1 4202560 1399 0 0 0 20 0 0 0 20 0 15 0 31811534 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969371838704 139970192888410 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27164] ppid=27149 vsize=13978684 memory=7158877763089424743 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27164/stat : 27164 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811534 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969370786400 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27165] ppid=27149 vsize=13978684 memory=7589810501984479595 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27165/stat : 27165 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811538 14314172416 22429 18446744073709551615 4194304 4196468 140730388090528 139969369733936 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
Current children cumulated CPU time: 1.27 s
Current children cumulated vsize: 13988196 KiB
Current children cumulated memory: 91096 KiB

[startup+1.5008 s]
/proc/loadavg: 2.44 2.21 2.23 6/213 27165
/proc/meminfo: memFree=30426460/32770624 swapFree=67108860/67108860
[pid=27149] ppid=27146 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27149/stat : 27149 (xcsp3-exec) S 27146 27149 7968 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 31811517 9740288 345 18446744073709551615 4194304 5098028 140721986041744 140721986039848 140520447386236 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 12787712 140721986048378 140721986048582 140721986048582 140721986052075 0
/proc/27149/statm: 2378 345 289 221 0 87 0
[pid=27151] ppid=27149 vsize=13980732 memory=298308 CPUtime=3.59 cores=0,2,4,6
/proc/27151/stat : 27151 (java) S 27149 27149 7968 0 -1 1077944320 15134 0 0 0 344 15 0 0 20 0 15 0 31811528 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 140730388073072 139970192867063 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
/proc/27151/statm: 3495183 74577 3208 1 0 3483476 0
[pid=27151/tid=27152] ppid=27149 vsize=13980732 memory=280708728012064 CPUtime=1.28 cores=0,2,4,6
/proc/27151/task/27152/stat : 27152 (java) R 27149 27149 7968 0 -1 4202560 8542 0 0 0 121 7 0 0 20 0 15 0 31811528 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139970197102784 139970176947550 0 4 1 16800974 0 0 0 -1 4 0 0 3 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27153] ppid=27149 vsize=13980732 memory=0 CPUtime=0.05 cores=0,2,4,6
/proc/27151/task/27153/stat : 27153 (java) S 27149 27149 7968 0 -1 1077944384 97 0 0 0 4 1 0 0 20 0 15 0 31811529 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139970112280848 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27154] ppid=27149 vsize=13980732 memory=0 CPUtime=0.04 cores=0,2,4,6
/proc/27151/task/27154/stat : 27154 (java) S 27149 27149 7968 0 -1 1077944384 84 0 0 0 3 1 0 0 20 0 15 0 31811529 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139970111228304 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27155] ppid=27149 vsize=13980732 memory=-8774313645642428999 CPUtime=0.02 cores=0,2,4,6
/proc/27151/task/27155/stat : 27155 (java) S 27149 27149 7968 0 -1 1077944384 67 0 0 0 2 0 0 0 20 0 15 0 31811529 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139970110175760 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27156] ppid=27149 vsize=13980732 memory=62020 CPUtime=0.05 cores=0,2,4,6
/proc/27151/task/27156/stat : 27156 (java) S 27149 27149 7968 0 -1 1077944384 85 0 0 0 4 1 0 0 20 0 15 0 31811529 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139970109123216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27157] ppid=27149 vsize=13980732 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27157/stat : 27157 (java) S 27149 27149 7968 0 -1 1077944384 82 0 0 0 0 0 0 0 20 0 15 0 31811530 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969378154992 139970192878210 0 0 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27158] ppid=27149 vsize=13980732 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27158/stat : 27158 (java) S 27149 27149 7968 0 -1 1077944384 34 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969377101280 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27159] ppid=27149 vsize=13980732 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27159/stat : 27159 (java) S 27149 27149 7968 0 -1 1077944384 21 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969376048624 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27160] ppid=27149 vsize=13980732 memory=0 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27160/stat : 27160 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969374997200 139970192885659 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27161] ppid=27149 vsize=13980732 memory=0 CPUtime=0.88 cores=0,2,4,6
/proc/27151/task/27161/stat : 27161 (java) S 27149 27149 7968 0 -1 1077944384 1605 0 0 0 88 0 0 0 20 0 15 0 31811533 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969373943792 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27162] ppid=27149 vsize=13980732 memory=6463925781705 CPUtime=0.83 cores=0,2,4,6
/proc/27151/task/27162/stat : 27162 (java) S 27149 27149 7968 0 -1 1077944384 1503 0 0 0 82 1 0 0 20 0 15 0 31811533 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969372891248 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27163] ppid=27149 vsize=13980732 memory=11848 CPUtime=0.38 cores=0,2,4,6
/proc/27151/task/27163/stat : 27163 (java) R 27149 27149 7968 0 -1 4202560 1770 0 0 0 37 1 0 0 20 0 15 0 31811534 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969371831968 139970185966910 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27164] ppid=27149 vsize=13980732 memory=26984 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27164/stat : 27164 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811534 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969370786400 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27165] ppid=27149 vsize=13980732 memory=2244 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27165/stat : 27165 (java) S 27149 27149 7968 0 -1 1077944384 1 0 0 0 0 0 0 0 20 0 15 0 31811538 14316269568 74577 18446744073709551615 4194304 4196468 140730388090528 139969369733936 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0

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

[pid=27151/tid=27153] ppid=27149 vsize=13980732 memory=1380 CPUtime=90.47 cores=0,2,4,6
/proc/27151/task/27153/stat : 27153 (java) R 27149 27149 7968 0 -1 4202560 119699 0 0 0 8808 239 0 0 20 0 15 0 31811529 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139970112280656 139970185495271 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27154] ppid=27149 vsize=13980732 memory=-8774313645642428999 CPUtime=92.21 cores=0,2,4,6
/proc/27151/task/27154/stat : 27154 (java) R 27149 27149 7968 0 -1 4202560 98867 0 0 0 9011 210 0 0 20 0 15 0 31811529 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139970111228424 139970185495271 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27155] ppid=27149 vsize=13980732 memory=1440 CPUtime=90.02 cores=0,2,4,6
/proc/27151/task/27155/stat : 27155 (java) R 27149 27149 7968 0 -1 4202560 62735 0 0 0 8773 229 0 0 20 0 15 0 31811529 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139970110175568 139970185495271 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27156] ppid=27149 vsize=13980732 memory=1380 CPUtime=90.34 cores=0,2,4,6
/proc/27151/task/27156/stat : 27156 (java) R 27149 27149 7968 0 -1 4202560 63379 0 0 0 8792 242 0 0 20 0 15 0 31811529 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139970109123416 139970177863464 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27157] ppid=27149 vsize=13980732 memory=1700 CPUtime=10.45 cores=0,2,4,6
/proc/27151/task/27157/stat : 27157 (java) S 27149 27149 7968 0 -1 1077944384 48693 0 0 0 1033 12 0 0 20 0 15 0 31811530 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969378153552 139970192877269 0 0 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27158] ppid=27149 vsize=13980732 memory=1228 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27158/stat : 27158 (java) S 27149 27149 7968 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969377101280 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27159] ppid=27149 vsize=13980732 memory=1000 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27159/stat : 27159 (java) S 27149 27149 7968 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969376048640 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27160] ppid=27149 vsize=13980732 memory=2012 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27160/stat : 27160 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969374997200 139970192885659 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27161] ppid=27149 vsize=13980732 memory=-3622645143214314312 CPUtime=4.11 cores=0,2,4,6
/proc/27151/task/27161/stat : 27161 (java) S 27149 27149 7968 0 -1 1077944384 27697 0 0 0 408 3 0 0 20 0 15 0 31811533 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969373943840 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27162] ppid=27149 vsize=13980732 memory=1732 CPUtime=4.16 cores=0,2,4,6
/proc/27151/task/27162/stat : 27162 (java) S 27149 27149 7968 0 -1 1077944384 29414 0 0 0 412 4 0 0 20 0 15 0 31811533 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969372891296 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27163] ppid=27149 vsize=13980732 memory=1700 CPUtime=0.96 cores=0,2,4,6
/proc/27151/task/27163/stat : 27163 (java) S 27149 27149 7968 0 -1 1077944384 20179 0 0 0 93 3 0 0 20 0 15 0 31811534 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969371838464 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27164] ppid=27149 vsize=13980732 memory=1228 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27164/stat : 27164 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811534 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969370786400 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27165] ppid=27149 vsize=13980732 memory=-8774313645642428999 CPUtime=1.06 cores=0,2,4,6
/proc/27151/task/27165/stat : 27165 (java) S 27149 27149 7968 0 -1 1077944384 2449 0 0 0 54 52 0 0 20 0 15 0 31811538 14316269568 2859711 18446744073709551615 4194304 4196468 140730388090528 139969369733936 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 14 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
Current children cumulated CPU time: 2068.62 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 11440224 KiB

[startup+1792 s]*
/proc/loadavg: 3.33 2.40 2.25 6/213 27482
/proc/meminfo: memFree=19004040/32770624 swapFree=67108860/67108860
[pid=27149] ppid=27146 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27149/stat : 27149 (xcsp3-exec) S 27146 27149 7968 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 31811517 9740288 345 18446744073709551615 4194304 5098028 140721986041744 140721986039848 140520447386236 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 12787712 140721986048378 140721986048582 140721986048582 140721986052075 0
/proc/27149/statm: 2378 345 289 221 0 87 0
[pid=27151] ppid=27149 vsize=13980732 memory=11438956 CPUtime=2081.06 cores=0,2,4,6
/proc/27151/stat : 27151 (java) S 27149 27149 7968 0 -1 1077944320 700287 0 0 0 207086 1020 0 0 20 0 15 0 31811528 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 140730388073072 139970192867063 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
/proc/27151/statm: 3495183 2859739 3259 1 0 3483476 0
[pid=27151/tid=27152] ppid=27149 vsize=13980732 memory=4278483708103473607 CPUtime=1684.75 cores=0,2,4,6
/proc/27151/task/27152/stat : 27152 (java) S 27149 27149 7968 0 -1 1077944384 223545 0 0 0 168444 31 0 0 20 0 15 0 31811528 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970197105904 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 3 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27153] ppid=27149 vsize=13980732 memory=8700 CPUtime=93.5 cores=0,2,4,6
/proc/27151/task/27153/stat : 27153 (java) R 27149 27149 7968 0 -1 4202560 119699 0 0 0 9110 240 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970112280968 139970185495271 0 4 1 16800974 0 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27154] ppid=27149 vsize=13980732 memory=4124 CPUtime=95.3 cores=0,2,4,6
/proc/27151/task/27154/stat : 27154 (java) R 27149 27149 7968 0 -1 4202560 98867 0 0 0 9319 211 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970111228424 139970185495271 0 4 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27155] ppid=27149 vsize=13980732 memory=19672 CPUtime=93.12 cores=0,2,4,6
/proc/27151/task/27155/stat : 27155 (java) R 27149 27149 7968 0 -1 4202560 63027 0 0 0 9083 229 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970110175568 139970185971736 0 4 1 16800974 0 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27156] ppid=27149 vsize=13980732 memory=-7003737579269690708 CPUtime=93.55 cores=0,2,4,6
/proc/27151/task/27156/stat : 27156 (java) R 27149 27149 7968 0 -1 4202560 65380 0 0 0 9112 243 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970109123024 139970185495271 0 4 1 16800974 0 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27157] ppid=27149 vsize=13980732 memory=1440 CPUtime=10.45 cores=0,2,4,6
/proc/27151/task/27157/stat : 27157 (java) S 27149 27149 7968 0 -1 1077944384 48693 0 0 0 1033 12 0 0 20 0 15 0 31811530 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969378153552 139970192877269 0 0 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27158] ppid=27149 vsize=13980732 memory=9916 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27158/stat : 27158 (java) S 27149 27149 7968 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969377101280 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27159] ppid=27149 vsize=13980732 memory=1200 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27159/stat : 27159 (java) S 27149 27149 7968 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969376048640 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27160] ppid=27149 vsize=13980732 memory=15872 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27160/stat : 27160 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969374997200 139970192885659 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27161] ppid=27149 vsize=13980732 memory=0 CPUtime=4.11 cores=0,2,4,6
/proc/27151/task/27161/stat : 27161 (java) S 27149 27149 7968 0 -1 1077944384 27697 0 0 0 408 3 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969373943840 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27162] ppid=27149 vsize=13980732 memory=-7163656231596748891 CPUtime=4.16 cores=0,2,4,6
/proc/27151/task/27162/stat : 27162 (java) S 27149 27149 7968 0 -1 1077944384 29414 0 0 0 412 4 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969372891296 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27163] ppid=27149 vsize=13980732 memory=-6611477520289458278 CPUtime=0.96 cores=0,2,4,6
/proc/27151/task/27163/stat : 27163 (java) S 27149 27149 7968 0 -1 1077944384 20179 0 0 0 93 3 0 0 20 0 15 0 31811534 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969371838464 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27164] ppid=27149 vsize=13980732 memory=7598824234097836114 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27164/stat : 27164 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811534 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969370786400 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27165] ppid=27149 vsize=13980732 memory=25757 CPUtime=1.07 cores=0,2,4,6
/proc/27151/task/27165/stat : 27165 (java) S 27149 27149 7968 0 -1 1077944384 2449 0 0 0 55 52 0 0 20 0 15 0 31811538 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969369733936 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 14 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
Current children cumulated CPU time: 2081.06 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 11440336 KiB

[startup+1792.8 s]
/proc/loadavg: 3.33 2.40 2.25 6/213 27482
/proc/meminfo: memFree=19004040/32770624 swapFree=67108860/67108860
[pid=27149] ppid=27146 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27149/stat : 27149 (xcsp3-exec) S 27146 27149 7968 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 31811517 9740288 345 18446744073709551615 4194304 5098028 140721986041744 140721986039848 140520447386236 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 12787712 140721986048378 140721986048582 140721986048582 140721986052075 0
/proc/27149/statm: 2378 345 289 221 0 87 0
[pid=27151] ppid=27149 vsize=13980732 memory=11438956 CPUtime=2084.06 cores=0,2,4,6
/proc/27151/stat : 27151 (java) S 27149 27149 7968 0 -1 1077944320 701555 0 0 0 207385 1021 0 0 20 0 15 0 31811528 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 140730388073072 139970192867063 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
/proc/27151/statm: 3495183 2859739 3259 1 0 3483476 0
[pid=27151/tid=27152] ppid=27149 vsize=13980732 memory=-8774313645642428999 CPUtime=1684.75 cores=0,2,4,6
/proc/27151/task/27152/stat : 27152 (java) S 27149 27149 7968 0 -1 1077944384 223545 0 0 0 168444 31 0 0 20 0 15 0 31811528 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970197105904 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 3 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27153] ppid=27149 vsize=13980732 memory=11438844 CPUtime=94.24 cores=0,2,4,6
/proc/27151/task/27153/stat : 27153 (java) S 27149 27149 7968 0 -1 1077944384 119724 0 0 0 9183 241 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970112280848 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27154] ppid=27149 vsize=13980732 memory=1732 CPUtime=96.03 cores=0,2,4,6
/proc/27151/task/27154/stat : 27154 (java) S 27149 27149 7968 0 -1 1077944384 98898 0 0 0 9392 211 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970111228304 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27155] ppid=27149 vsize=13980732 memory=1700 CPUtime=93.86 cores=0,2,4,6
/proc/27151/task/27155/stat : 27155 (java) S 27149 27149 7968 0 -1 1077944384 63701 0 0 0 9157 229 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970110175760 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27156] ppid=27149 vsize=13980732 memory=1228 CPUtime=94.29 cores=0,2,4,6
/proc/27151/task/27156/stat : 27156 (java) S 27149 27149 7968 0 -1 1077944384 65917 0 0 0 9186 243 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970109123216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27157] ppid=27149 vsize=13980732 memory=1000 CPUtime=10.5 cores=0,2,4,6
/proc/27151/task/27157/stat : 27157 (java) R 27149 27149 7968 0 -1 4202560 48693 0 0 0 1038 12 0 0 20 0 15 0 31811530 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969378153552 139970177324661 0 0 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27158] ppid=27149 vsize=13980732 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27158/stat : 27158 (java) S 27149 27149 7968 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969377101280 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27159] ppid=27149 vsize=13980732 memory=4124 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27159/stat : 27159 (java) S 27149 27149 7968 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969376048640 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27160] ppid=27149 vsize=13980732 memory=19672 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27160/stat : 27160 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969374997200 139970192885659 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27161] ppid=27149 vsize=13980732 memory=1380 CPUtime=4.11 cores=0,2,4,6
/proc/27151/task/27161/stat : 27161 (java) S 27149 27149 7968 0 -1 1077944384 27697 0 0 0 408 3 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969373943840 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27162] ppid=27149 vsize=13980732 memory=0 CPUtime=4.16 cores=0,2,4,6
/proc/27151/task/27162/stat : 27162 (java) S 27149 27149 7968 0 -1 1077944384 29414 0 0 0 412 4 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969372891296 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27163] ppid=27149 vsize=13980732 memory=4452 CPUtime=0.96 cores=0,2,4,6
/proc/27151/task/27163/stat : 27163 (java) S 27149 27149 7968 0 -1 1077944384 20179 0 0 0 93 3 0 0 20 0 15 0 31811534 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969371838464 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27164] ppid=27149 vsize=13980732 memory=6660 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27164/stat : 27164 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811534 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969370786400 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27165] ppid=27149 vsize=13980732 memory=11438956 CPUtime=1.07 cores=0,2,4,6
/proc/27151/task/27165/stat : 27165 (java) S 27149 27149 7968 0 -1 1077944384 2449 0 0 0 55 52 0 0 20 0 15 0 31811538 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969369733936 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 14 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
Current children cumulated CPU time: 2084.06 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 11440336 KiB

[startup+1793.6 s]
/proc/loadavg: 3.33 2.40 2.25 3/213 27482
/proc/meminfo: memFree=19004164/32770624 swapFree=67108860/67108860
[pid=27149] ppid=27146 vsize=9512 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27149/stat : 27149 (xcsp3-exec) S 27146 27149 7968 0 -1 4202496 515 0 0 0 0 0 0 0 20 0 1 0 31811517 9740288 345 18446744073709551615 4194304 5098028 140721986041744 140721986039848 140520447386236 0 65536 5 65538 18446744071579417331 0 0 17 4 0 0 10 0 0 7196144 7232144 12787712 140721986048378 140721986048582 140721986048582 140721986052075 0
/proc/27149/statm: 2378 345 289 221 0 87 0
[pid=27151] ppid=27149 vsize=13980732 memory=11438956 CPUtime=2084.86 cores=0,2,4,6
/proc/27151/stat : 27151 (java) S 27149 27149 7968 0 -1 1077944320 701555 0 0 0 207465 1021 0 0 20 0 15 0 31811528 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 140730388073072 139970192867063 0 0 1 16800974 18446744073709551615 0 0 17 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
/proc/27151/statm: 3495183 2859739 3259 1 0 3483476 0
[pid=27151/tid=27152] ppid=27149 vsize=13980732 memory=0 CPUtime=1684.75 cores=0,2,4,6
/proc/27151/task/27152/stat : 27152 (java) S 27149 27149 7968 0 -1 1077944384 223545 0 0 0 168444 31 0 0 20 0 15 0 31811528 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970197105904 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 3 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27153] ppid=27149 vsize=13980732 memory=4124 CPUtime=94.24 cores=0,2,4,6
/proc/27151/task/27153/stat : 27153 (java) S 27149 27149 7968 0 -1 1077944384 119724 0 0 0 9183 241 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970112280848 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27154] ppid=27149 vsize=13980732 memory=19672 CPUtime=96.03 cores=0,2,4,6
/proc/27151/task/27154/stat : 27154 (java) S 27149 27149 7968 0 -1 1077944384 98898 0 0 0 9392 211 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970111228304 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27155] ppid=27149 vsize=13980732 memory=2424 CPUtime=93.86 cores=0,2,4,6
/proc/27151/task/27155/stat : 27155 (java) S 27149 27149 7968 0 -1 1077944384 63701 0 0 0 9157 229 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970110175760 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27156] ppid=27149 vsize=13980732 memory=-8774313645642428999 CPUtime=94.29 cores=0,2,4,6
/proc/27151/task/27156/stat : 27156 (java) S 27149 27149 7968 0 -1 1077944384 65917 0 0 0 9186 243 0 0 20 0 15 0 31811529 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139970109123216 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27157] ppid=27149 vsize=13980732 memory=1380 CPUtime=11.3 cores=0,2,4,6
/proc/27151/task/27157/stat : 27157 (java) R 27149 27149 7968 0 -1 4202560 48693 0 0 0 1118 12 0 0 20 0 15 0 31811530 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969378153440 139970177863408 0 0 1 16800974 0 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27158] ppid=27149 vsize=13980732 memory=1380 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27158/stat : 27158 (java) S 27149 27149 7968 0 -1 1077944384 45 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969377101280 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27159] ppid=27149 vsize=13980732 memory=11438844 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27159/stat : 27159 (java) S 27149 27149 7968 0 -1 1077944384 50 0 0 0 0 0 0 0 20 0 15 0 31811531 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969376048640 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27160] ppid=27149 vsize=13980732 memory=4124 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27160/stat : 27160 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969374997200 139970192885659 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27161] ppid=27149 vsize=13980732 memory=19672 CPUtime=4.11 cores=0,2,4,6
/proc/27151/task/27161/stat : 27161 (java) S 27149 27149 7968 0 -1 1077944384 27697 0 0 0 408 3 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969373943840 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 4 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27162] ppid=27149 vsize=13980732 memory=2424 CPUtime=4.16 cores=0,2,4,6
/proc/27151/task/27162/stat : 27162 (java) S 27149 27149 7968 0 -1 1077944384 29414 0 0 0 412 4 0 0 20 0 15 0 31811533 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969372891296 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 0 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27163] ppid=27149 vsize=13980732 memory=1296 CPUtime=0.96 cores=0,2,4,6
/proc/27151/task/27163/stat : 27163 (java) S 27149 27149 7968 0 -1 1077944384 20179 0 0 0 93 3 0 0 20 0 15 0 31811534 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969371838464 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 6 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27164] ppid=27149 vsize=13980732 memory=1732 CPUtime=0 cores=0,2,4,6
/proc/27151/task/27164/stat : 27164 (java) S 27149 27149 7968 0 -1 1077944384 3 0 0 0 0 0 0 0 20 0 15 0 31811534 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969370786400 139970192877269 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 0 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
[pid=27151/tid=27165] ppid=27149 vsize=13980732 memory=1700 CPUtime=1.07 cores=0,2,4,6
/proc/27151/task/27165/stat : 27165 (java) S 27149 27149 7968 0 -1 1077944384 2449 0 0 0 55 52 0 0 20 0 15 0 31811538 14316269568 2859739 18446744073709551615 4194304 4196468 140730388090528 139969369733936 139970192878210 0 4 1 16800974 18446744071579849748 0 0 -1 2 0 0 14 0 0 6293624 6294260 36904960 140730388095410 140730388095586 140730388095586 140730388099023 0
Current children cumulated CPU time: 2084.86 s
Current children cumulated vsize: 13990244 KiB
Current children cumulated memory: 11440336 KiB

[startup+1794 s]*
/proc/loadavg: 3.22 2.39 2.24 3/200 27483
/proc/meminfo: memFree=30078636/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: 1
Real time (s): 1794.01
CPU time (s): 2085.28
CPU user time (s): 2075
CPU system time (s): 10.2797
CPU usage (%): 116.235
Max. virtual memory (cumulated for all children) (KiB): 13990244
Max. memory (cumulated for all children) (KiB): 11440484

getrusage(RUSAGE_CHILDREN,...) data:
user time used= 2075
system time used= 10.2797
maximum resident set size= 11439484
integral shared memory size= 0
integral unshared data size= 0
integral unshared stack size= 0
page reclaims= 702347
page faults= 0
swaps= 0
block input operations= 0
block output operations= 1992
messages sent= 0
messages received= 0
signals received= 0
voluntary context switches= 50858
involuntary context switches= 11989


# summary of solver processes directly reported to runsolver:
#   pid: 27149
#   total CPU time (s): 2085.28
#   total CPU user time (s): 2075
#   total CPU system time (s): 10.2797

??? join timestamper begins
??? join timestamper ends
??? end of timestamper thread
runsolver used 11.6585 second user time and 17.1886 second system time

The end

Launcher Data

Begin job on node128 at 2017-08-15 08:27:31
IDJOB=4272041
IDBENCH=126242
IDSOLVER=2664
FILE ID=node128/4272041-1502779289
RUNJOBID= node128-1502649221-29000
PBS_JOBID= 
Free space on /tmp= 62020 MiB

SOLVER NAME= choco-solver 5a
BENCH NAME= XCSP17/GolombRuler/GolombRuler-a4-s1/GolombRuler-27-a4.xml
COMMAND LINE= ./xcsp3-exec -dir DIR -tl TIMEOUT -ml 11000 -tdir TMPDIR -seed RANDOMSEED BENCHNAME
RUNSOLVER COMMAND LINE= BIN/runsolver --timestamp -w /tmp/evaluation-result-4272041-1502779289/watcher-4272041-1502779289 -o /tmp/evaluation-result-4272041-1502779289/solver-4272041-1502779289 -C 2520 -W 2520 -M 15500 --bin-var /tmp/runsolver-exch-node128-1502649221-29000 --watchdog 2580  ./xcsp3-exec -dir HOME -tl 2520 -ml 11000 -tdir HOME -seed 355872350 HOME/instance-4272041-1502779289.xml

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

MD5SUM BENCH= 4a6b886165f8d6d7f8f178d50db8a3de
RANDOM SEED=355872350

node128.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.94
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.94
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.94
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.94
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:        30620092 kB
MemAvailable:   31496624 kB
Buffers:          219840 kB
Cached:           940912 kB
SwapCached:            0 kB
Active:           883028 kB
Inactive:         848400 kB
Active(anon):     571364 kB
Inactive(anon):    16764 kB
Active(file):     311664 kB
Inactive(file):   831636 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:      67108860 kB
SwapFree:       67108860 kB
Dirty:             10064 kB
Writeback:             0 kB
AnonPages:        570968 kB
Mapped:            49464 kB
Shmem:             17116 kB
Slab:             123536 kB
SReclaimable:      98132 kB
SUnreclaim:        25404 kB
KernelStack:        3488 kB
PageTables:         6364 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    83494172 kB
Committed_AS:    1395492 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      350232 kB
VmallocChunk:   34341910524 kB
HardwareCorrupted:     0 kB
AnonHugePages:    440320 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      132480 kB
DirectMap2M:    33413120 kB

Free space on /tmp at the end= 62012 MiB
End job on node128 at 2017-08-15 08:57:26