You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change the python collection from being done in the
same process to each collection being its own
process. This will improve the collection in
systems with many python packages that could
take more than one second for each collection
iteration.
echo -e "===================================== Ploting graph for ncs.smp process done =================================================\n"
39
135
echo"====================================== Ploting graph for NcsJVMLauncher process ========================================================"
40
136
bash graphs.sh NcsJVMLauncher $VERBOSE
41
-
echo -e "===================================== Ploting graph for NcsJVMLauncher process done =================================================\n"
42
-
echo"====================================== Ploting graph for python3 process ========================================================"
43
-
bash graphs.sh python3 $VERBOSE
44
-
echo -e "===================================== Ploting graph for python3 process done =================================================\n"
137
+
echo"===================================== Ploting graph for NcsJVMLauncher process done =================================================\n"
138
+
echo"====================================== Ploting graph for python3 processes ========================================================\n"
139
+
if [ -d"data/python3" ];then
140
+
echo"Plotting combined graph for python3 processes"
141
+
bash graphs.sh python3 $VERBOSE
142
+
else
143
+
echo"No python3 data directory found"
144
+
fi
145
+
echo"===================================== Ploting graph for python3 processes done =================================================\n"
45
146
echo"====================================== Ploting graph to compare between process ========================================================"
46
147
bash graphs_compare.sh $VERBOSE
47
148
echo -e "====================================== Ploting graph to compare between process done ========================================================\n"
0 commit comments