IEEE-conference-template-062824.tex 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. \documentclass[conference]{IEEEtran}
  2. \IEEEoverridecommandlockouts
  3. % The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
  4. %Template version as of 6/27/2024
  5. \usepackage{cite}
  6. \usepackage{amsmath,amssymb,amsfonts}
  7. \usepackage{algorithmic}
  8. \usepackage{graphicx}
  9. \usepackage{textcomp}
  10. \usepackage{xcolor}
  11. \usepackage{subcaption}
  12. \usepackage{booktabs}
  13. \usepackage{multirow}
  14. \usepackage{array}
  15. \usepackage{caption}
  16. % \setlength{\abovecaptionskip}{10pt} % Space above the caption
  17. % \setlength{\belowcaptionskip5{5pt} % Space below the caption
  18. \setlength{\textfloatsep}{8pt} % Example: 20pt of space
  19. \newcommand*\circled[1]{\raisebox{.5pt}{\textcircled{\raisebox{-.9pt} {#1}}}}
  20. \begin{document}
  21. % \bstctlcite{IEEEexample:BSTcontrol}
  22. \title{Intermittent Systems at Small Scale: Execution Model and Design Guidelines \\
  23. % \thanks{This work was supported by IITP grant funded by the Korea government (MSIT) (No.2021-0-00360, Development of Core Technology for Autonomous Energy-driven Computing System SW in Power-instable Environment).}
  24. \thanks{This work was supported by IITP grant funded by the Korea government (MSIT) (No.2021-0-00360 and RS-2024-00438551).}
  25. }
  26. \author{\IEEEauthorblockN{Youngbin Kim and Yoojin Lim}
  27. \IEEEauthorblockA{yb.kim@etri.re.kr, yoojin.lim@etri.re.kr \\
  28. Electronics and Telecommunications Research Institute (ETRI), Daejeon, Republic of Korea
  29. }
  30. }
  31. \maketitle
  32. \begin{abstract}
  33. % Intermittent systems execute long-running tasks in environments with frequent power failures, using small capacitors as energy storages.
  34. % Software designers rely on execution models that abstract hardware-level operations and describe how intermittent systems work.
  35. % However, as recent techniques target very short operation times with smaller energy storages, traditional models are failing to provide precise abstractions of the actual behavior.
  36. % In this paper, we propose a more accurate execution model that accounts for the buffering effects of a system's inherent capacitance, which is a major source of inconsistency in traditional models.
  37. % Our evaluation shows that systems designed upon the traditional model can be up to 5.62x less power efficient than expected and may lead to unsafe checkpoint execution.
  38. % Additionally, based on our model, we present design guidelines for small-scale intermittent systems, which improve the end-to-end latency of applications by 2.85x in dynamic and 3.04x in static checkpoint schemes, without any extra overhead.
  39. Intermittent systems require software support to execute tasks amid frequent power failures.
  40. In designing such techniques, software designers rely on execution models that abstract hardware-level operations.
  41. In this paper, we propose an execution model that more accurately describes emerging intermittent systems with small energy storage.
  42. Our evaluations show that systems designed based on the traditional models can be up to 5.62x less power-efficient than expected and may result in unsafe checkpoint operations.
  43. Our design guidelines enhance the performance of existing static and dynamic checkpoint techniques by 3.04x and 2.85x on average, respectively.
  44. \end{abstract}
  45. \begin{IEEEkeywords}
  46. Intermittent Computing, Batteryless System.
  47. \end{IEEEkeywords}
  48. \input{sections/Introduction.tex}
  49. \input{sections/OurModel.tex}
  50. \input{sections/OurApproach.tex}
  51. \input{sections/RelatedWork.tex}
  52. \input{sections/Conclusion.tex}
  53. % \input{sections/Notes.tex}
  54. \bibliographystyle{ieeetr}
  55. \bibliography{refs_short_2}
  56. \end{document}