view Slide/prosym.html @ 0:413d0470a44f

intro
author tobaru
date Tue, 15 May 2018 18:24:49 +0900
parents
children 60405cc47b3a
line wrap: on
line source

<!DOCTYPE html>
<html>
<head>
   <meta http-equiv="content-type" content="text/html;charset=utf-8">
   <title>Gears OS のモジュール化と並列 API</title>

<meta name="generator" content="Slide Show (S9) v2.5.0 on Ruby 2.4.1 (2017-03-22) [x86_64-darwin15]">
<meta name="author"    content="Mitsuki Miyagi, Yu Tobaru, Shinji Kono" >

<!-- style sheet links -->
<link rel="stylesheet" href="s6/themes/projection.css"   media="screen,projection">
<link rel="stylesheet" href="s6/themes/screen.css"       media="screen">
<link rel="stylesheet" href="s6/themes/print.css"        media="print">
<link rel="stylesheet" href="s6/themes/blank.css"        media="screen,projection">

<!-- JS -->
<script src="s6/js/jquery-1.11.3.min.js"></script>
<script src="s6/js/jquery.slideshow.js"></script>
<script src="s6/js/jquery.slideshow.counter.js"></script>
<script src="s6/js/jquery.slideshow.controls.js"></script>
<script src="s6/js/jquery.slideshow.footer.js"></script>
<script src="s6/js/jquery.slideshow.autoplay.js"></script>

<!-- prettify -->
<link rel="stylesheet" href="scripts/prettify.css">
<script src="scripts/prettify.js"></script>

<script>
  $(document).ready( function() {
    Slideshow.init();

    $('code').each(function(_, el) {
      if (!el.classList.contains('noprettyprint')) {
        el.classList.add('prettyprint');
      }
    });
    prettyPrint();
  } );

  
</script>

<!-- Better Browser Banner for Microsoft Internet Explorer (IE) -->
<!--[if IE]>
<script src="s6/js/jquery.microsoft.js"></script>
<![endif]-->



</head>
<body>

<div class="layout">
  <div id="header"></div>
  <div id="footer">
    <div align="right">
      <img src="s6/images/logo.svg" width="200px">
    </div>
  </div>
</div>

<div class="presentation">

  <div class='slide cover'>
    <table width="90%" height="90%" border="0" align="center">
      <tr>
        <td>
          <div align="center">
            <h1><font color="#808db5">Gears OS のモジュール化と並列 API</font></h1>
          </div>
        </td>
      </tr>
      <tr>
        <td>
          <div align="left">
            Mitsuki Miyagi, Yu Tobaru, Shinji Kono
            琉球大学
            <hr style="color:#ffcc00;background-color:#ffcc00;text-align:left;border:none;width:100%;height:0.2em;">
          </div>
        </td>
      </tr>
    </table>
  </div>

<div class='slide '>
<!-- === begin markdown block ===

      generated by markdown/1.2.0 on Ruby 2.4.1 (2017-03-22) [x86_64-darwin15]
                on 2018-05-15 18:23:36 +0900 with Markdown engine kramdown (1.13.2)
                  using options {}
  -->

<!-- _S9SLIDE_ -->
<h1 id="os-">OS の信頼性</h1>
<ul>
  <li>コンピュータの信頼性の基本はメモリなどの資源管理を行う OS である。</li>
  <li>OS は非決定的な実行を持つため、OS の信頼性を保証するには、証明を用いる方法とプログラムの可能な実行を全て数え上げるモデル検査を用いる必要がある。
    <ul>
      <li>従来のテストとデバッグではテスト仕切れない部分が残ってしまい、不十分。</li>
      <li>モデル検査は無限の状態でなくても巨大な状態を調べる事になり、状態を有限に制限したり、状態を抽象化したりする方法が用いられる。</li>
    </ul>
  </li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="os--1">OS の拡張性</h1>
<ul>
  <li>時代とともに進歩するハードウェア、サービスに対応するために OS 自体が拡張される必要がある。</li>
  <li>OS を検証する際にも、1度ではなくアプリケーションやサービス、デバイスが新しくなる毎に検証をやり直す必要がある。</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="os--2">OS の拡張性と信頼性の両立</h1>
<ul>
  <li>OSの拡張性と信頼性の観点から、OS は信頼性と拡張性を両立させることが重要であるといえる。</li>
  <li>本研究室では、OS の信頼性の保証と拡張性を実現することを目標に Gears OS を設計中である。</li>
  <li>par gotoかAPIの説明まで書く?</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="section">スライドの流れ</h1>
<ul>
  <li>
    <font color="red">CbC</font>
  </li>
  <li>GearsOS</li>
  <li>Interface</li>
  <li>Context</li>
  <li>Gears OS の並列処理</li>
  <li>Synchronized Queue</li>
  <li>並列構文</li>
  <li>比較</li>
  <li>今後の課題</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="cbc">CbC</h1>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="gears-os">Gears OS</h1>
<ul>
  <li>Gaears OS の構成</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="interface">Interface</h1>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="context">Context</h1>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="gears-os-">Gears OS の並列処理</h1>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="synchronized-queue">Synchronized Queue</h1>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="section-1">並列構文</h1>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="section-2">比較</h1>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="section-3">今後の課題</h1>

<!-- === end markdown block === -->
</div>


</div><!-- presentation -->
</body>
</html>