About the Execution of GreatSPN for PhilosophersDyn-COL-80
Execution Summary | |||||
Max Memory Used (MB) |
Time wait (ms) | CPU Usage (ms) | I/O Wait (ms) | Computed Result | Execution Status |
2197.040 | 479301.00 | 478918.00 | 141.90 | [undef] | Cannot compute |
Execution Chart
We display below the execution chart for this examination (boot time has been removed).
Trace from the execution
Waiting for the VM to be ready (probing ssh)
...........................
=====================================================================
Generated by BenchKit 2-3254
Executing tool gspn
Input is PhilosophersDyn-COL-80, examination is StateSpace
Time confinement is 3600 seconds
Memory confinement is 16384 MBytes
Number of cores is 1
Run identifier is r042-smll-149440593900253
=====================================================================
--------------------
content from stdout:
=== Data for post analysis generated by BenchKit (invocation template)
no data necessary for post analysis
=== Now, execution of the tool begins
BK_START 1494531334825
LOADING model.pnml ...
MODEL CLASS: SYMMETRIC NET
PLACES: 8
TRANSITIONS: 7
CONSTANTS: 0
TEMPLATE VARS: 0
COLOR CLASSES: 2
COLOR VARS: 4
ARCS: 33
LOADING TIME: 0.455
UNFOLDING COLORS...
EXCEPTION RAISED.
FAILED.
CANNOT_COMPUTE
BK_STOP 1494531814126
--------------------
content from stderr:
java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:2219)
at java.util.ArrayList.grow(ArrayList.java:242)
at java.util.ArrayList.ensureExplicitCapacity(ArrayList.java:216)
at java.util.ArrayList.ensureCapacityInternal(ArrayList.java:208)
at java.util.ArrayList.add(ArrayList.java:440)
at org.antlr.v4.runtime.ParserRuleContext.addChild(ParserRuleContext.java:136)
at org.antlr.v4.runtime.Parser.unrollRecursionContexts(Parser.java:725)
at editor.domain.grammar.ExprLangParser.intMSetExpr(ExprLangParser.java:3227)
at editor.domain.grammar.ExprLangParser.mainIntMSetExpr(ExprLangParser.java:898)
at editor.domain.grammar.ParserContext.generateParseTreeFor(ParserContext.java:228)
at editor.domain.grammar.ParserContext.evaluate(ParserContext.java:384)
at editor.domain.Expr.evaluate(Expr.java:118)
at editor.domain.elements.GspnEdge.evaluateMultiplicity(GspnEdge.java:165)
at editor.domain.unfolding.Unfolding$TransitionUnfolder.unfoldRecursively(Unfolding.java:192)
at editor.domain.unfolding.Unfolding$TransitionUnfolder.unfoldRecursively(Unfolding.java:266)
at editor.domain.unfolding.Unfolding$TransitionUnfolder.unfoldRecursively(Unfolding.java:266)
at editor.domain.unfolding.Unfolding$TransitionUnfolder.unfoldRecursively(Unfolding.java:266)
at editor.domain.unfolding.Unfolding$TransitionUnfolder.access$600(Unfolding.java:148)
at editor.domain.unfolding.Unfolding.unfold(Unfolding.java:329)
at editor.UnfoldPNML2NetDefCommandLineTool.toolMain(UnfoldPNML2NetDefCommandLineTool.java:153)
at editor.UnfoldPNML2NetDefCommandLineTool.main(UnfoldPNML2NetDefCommandLineTool.java:47)
Sequence of Actions to be Executed by the VM
This is useful if one wants to reexecute the tool in the VM from the submitted image disk.
set -x
# this is for BenchKit: configuration of major elements for the test
export BK_INPUT="PhilosophersDyn-COL-80"
export BK_EXAMINATION="StateSpace"
export BK_TOOL="gspn"
export BK_RESULT_DIR="/tmp/BK_RESULTS/OUTPUTS"
export BK_TIME_CONFINEMENT="3600"
export BK_MEMORY_CONFINEMENT="16384"
# this is specific to your benchmark or test
export BIN_DIR="$HOME/BenchKit/bin"
# remove the execution directoty if it exists (to avoid increse of .vmdk images)
if [ -d execution ] ; then
rm -rf execution
fi
tar xzf /home/mcc/BenchKit/INPUTS/PhilosophersDyn-COL-80.tgz
mv PhilosophersDyn-COL-80 execution
# this is for BenchKit: explicit launching of the test
cd execution
echo "====================================================================="
echo " Generated by BenchKit 2-3254"
echo " Executing tool gspn"
echo " Input is PhilosophersDyn-COL-80, examination is StateSpace"
echo " Time confinement is $BK_TIME_CONFINEMENT seconds"
echo " Memory confinement is 16384 MBytes"
echo " Number of cores is 1"
echo " Run identifier is r042-smll-149440593900253"
echo "====================================================================="
echo
echo "--------------------"
echo "content from stdout:"
echo
echo "=== Data for post analysis generated by BenchKit (invocation template)"
echo
if [ "StateSpace" = "UpperBounds" ] ; then
echo "The expected result is a vector of positive values"
echo NUM_VECTOR
elif [ "StateSpace" != "StateSpace" ] ; then
echo "The expected result is a vector of booleans"
echo BOOL_VECTOR
else
echo "no data necessary for post analysis"
fi
echo
if [ -f "StateSpace.txt" ] ; then
echo "here is the order used to build the result vector(from text file)"
for x in $(grep Property StateSpace.txt | cut -d ' ' -f 2 | sort -u) ; do
echo "FORMULA_NAME $x"
done
elif [ -f "StateSpace.xml" ] ; then # for cunf (txt files deleted;-)
echo echo "here is the order used to build the result vector(from xml file)"
for x in $(grep '
echo "FORMULA_NAME $x"
done
fi
echo
echo "=== Now, execution of the tool begins"
echo
echo -n "BK_START "
date -u +%s%3N
echo
timeout -s 9 $BK_TIME_CONFINEMENT bash -c "/home/mcc/BenchKit/BenchKit_head.sh 2> STDERR ; echo ; echo -n \"BK_STOP \" ; date -u +%s%3N"
if [ $? -eq 137 ] ; then
echo
echo "BK_TIME_CONFINEMENT_REACHED"
fi
echo
echo "--------------------"
echo "content from stderr:"
echo
cat STDERR ;