Quellcode durchsuchen

Update on local

Youngbin Kim vor 1 Jahr
Ursprung
Commit
691deac0bb

+ 24 - 0
figs/crop_margin.py

@@ -0,0 +1,24 @@
+from pdfCropMargins import crop
+
+files = [
+    "intermittent_computing.pdf",
+    "detailed_execution_model.pdf",
+    "system.pdf",
+]
+
+need_top_margins = [
+    # "expr_ckpt_2.pdf",
+]
+
+need_right_margins = [
+    # "validation_2_3.pdf",
+]
+
+for file in files:
+    outfile = "cropped/" + file
+    if file in need_top_margins:
+        crop(["-o", outfile, "-p4", "0", "0", "0", "50", file])
+    elif file in need_right_margins:
+        crop(["-o", outfile, "-p4", "0", "0", "50", "0", file])
+    else:
+        crop(["-o", outfile, file])

BIN
figs/cropped/detailed_execution_model.pdf


BIN
figs/cropped/intermittent_computing.pdf


BIN
figs/cropped/system.pdf


BIN
figs/intermittent_computing_2.pdf


BIN
figs/plot_expr_2_cropped.pdf


BIN
figs/plot_expr_5_cropped.pdf


BIN
figs/plot_expr_6_cropped.pdf


BIN
figs/plot_expr_8a_cropped.pdf


BIN
figs/plot_expr_8b_cropped.pdf


BIN
figs/system.pdf


+ 1 - 1
sections/Introduction.tex

@@ -4,7 +4,7 @@ Intermittent system consists of hardware and software.
 
 \begin{figure}
     \centering
-    \includegraphics[width=\linewidth]{figs/intermittent_computing.pdf}
+    \includegraphics[width=\linewidth]{figs/cropped/intermittent_computing.pdf}
     \caption{Traditional execution model of intermittent systems.}
     \label{fig:introduction}
 \end{figure}

+ 26 - 2
sections/OurModel.tex

@@ -2,6 +2,13 @@
 
 \subsection{System Description}
 
+\begin{figure}
+    \centering
+    \includegraphics[width=\linewidth]{figs/cropped/system.pdf}
+    \caption{caption}
+    % \label{fig:introduction}
+\end{figure}
+
 \subsection{Execution Model}
 
 \begin{figure}
@@ -30,7 +37,7 @@ Three key observations that affect software designer's decision.
 
 \begin{figure}
     \centering
-    \includegraphics[width=\linewidth]{figs/detailed_execution_model.pdf}
+    \includegraphics[width=\linewidth]{figs/cropped/detailed_execution_model.pdf}
     \caption{Traditional execution model of intermittent systems.}
     \label{fig:detailed_execution_model}
 \end{figure}
@@ -55,4 +62,21 @@ Three key observations that affect software designer's decision.
 
 Show percentage of execution time executed after power supply stops.
 
-\subsection{Impact of Sub-normal Voltage Execution}
+\subsection{Impact of Sub-normal Voltage Execution}
+
+\begin{figure}
+    \centering
+    \begin{subfigure}{0.48\linewidth}
+        \includegraphics[width=\textwidth]{figs/plot_expr_2_cropped.pdf}
+        \caption{Trace of one power cycle.}
+        % \label{fig:eval_voltage_trace}
+    \end{subfigure}
+    \hfill
+    \begin{subfigure}{0.48\linewidth}
+        \includegraphics[width=\textwidth]{figs/plot_expr_2_cropped.pdf}
+        \caption{Detailed trace.}
+        % \label{fig:eval_adaptivenss_finished_tasks}
+    \end{subfigure}
+    \caption{Voltage of the capacitor and Vdd, sampled 470uF and 1.5mA.}
+    % \label{fig:}
+\end{figure}