view slides/20160412/slide.html @ 105:95e6916ff708

auto-Update generated slides by script
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Tue, 12 Apr 2016 18:15:36 +0900
parents
children
line wrap: on
line source

<!DOCTYPE html>
<html>
<head>
   <meta http-equiv="content-type" content="text/html;charset=utf-8">
   <title>Verification of programs using Continuation based C</title>

<meta name="generator" content="Slide Show (S9) v2.5.0 on Ruby 2.3.0 (2015-12-25) [x86_64-darwin14]">
<meta name="author"    content="Yasutaka Higa" >

<!-- 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');
        el.style.display = 'block';
      }
    });
    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">Verification of programs using Continuation based C</font></h1>
          </div>
        </td>
      </tr>
      <tr>
        <td>
          <div align="left">
            Yasutaka Higa
            
            <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.3.0 (2015-12-25) [x86_64-darwin14]
                on 2016-04-12 18:15:35 +0900 with Markdown engine kramdown (1.9.0)
                  using options {}
  -->

<!-- _S9SLIDE_ -->
<h1 id="section">研究目的</h1>
<ul>
  <li>コードセグメントとデータセグメントという単位を用いてプログラムを記述する手法を提案する</li>
  <li>プログラムはコードセグメントという処理の集合として表され、相互に接続される</li>
  <li>個々のコードセグメントを検証し、検証されたコードセグメントどうしの組み合わせによりプログラム全体を検証する</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="section-1">研究内容</h1>
<ul>
  <li>コードセグメントとデータセグメントを用いたプログラムに対し、検証を行なう</li>
  <li>コードセグメントどうしの接続の間にメタ計算として検証機構を導入する</li>
  <li>コードを検証用に変更することなく、仕様を満たすか検証する</li>
  <li>検証の対象として Gears OS のデータ構造を用いる</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="section-2">近況報告</h1>
<ul>
  <li>Synchronized Queue の verification をどうするか</li>
  <li>Red-Black Tree の検証の面倒なところ</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="gears--synchronized-queue-">Gears の synchronized queue はどうするか</h1>
<ul>
  <li>有限長 or 無限長</li>
  <li>
    <table>
      <tbody>
        <tr>
          <td>有限長なら限度まで入ってる時に put すると(待つ</td>
          <td>失敗する)</td>
        </tr>
      </tbody>
    </table>
  </li>
  <li>
    <table>
      <tbody>
        <tr>
          <td>empty に対して get すると(待つ</td>
          <td>失敗する)</td>
        </tr>
      </tbody>
    </table>
  </li>
  <li>今の Gears のコードは無限長、getは空だと待つ</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="synchronized-queue-">Synchronized Queue の何をチェックするか</h1>
<ul>
  <li>適当に探してみた論文</li>
  <li><a href="http://www.cs.technion.ac.il/~yahave/papers/softmc03.pdf">Automatically Verifying Concurrent Queue Algorithms</a></li>
  <li>CAS 版と lock 版がある</li>
  <li>こちらも無限長、getは待つ</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="properties-sample-in-automatically-verifying-concurrent-queue-algorithms">Properties Sample in Automatically Verifying Concurrent Queue Algorithms</h1>
<ul>
  <li>P1. The linked list is always connected.</li>
  <li>P2. Nodes are only inserted after the last node of the linked list.</li>
  <li>P3. Nodes are only deleted from the beginning of the linked list.</li>
  <li>P4. Head always points to the first node in the linked list.</li>
  <li>P5. Tail always points to a node in the linked list.</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="section-3">どう検証するか</h1>
<ul>
  <li>仕様
    <ul>
      <li>Get は empty なら待ち</li>
      <li>Put は中の要素数にかかわらず受けつける</li>
    </ul>
  </li>
  <li>thread の挙動を全列挙すると全部止まる可能性がある</li>
  <li>Get する thread と Put する thread の実行順を全部列挙
    <ul>
      <li>CAS にたぶん失敗しないので良いのかなといった感じ</li>
    </ul>
  </li>
  <li>CAS のコードは別にチェックする?</li>
</ul>


</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="red-black-tree-">Red-Black Tree の検証の面倒な点</h1>
<ul>
  <li>気分転換に書いてたりしましたが</li>
  <li>再帰なしスタックなしで木をどうやってDFSするか</li>
  <li>メモリを copying GC like に管理する
    <ul>
      <li>copy した tree と node stack との整合性を取るのが大変</li>
    </ul>
  </li>
</ul>

<!-- vim: set filetype=markdown.slide: -->
<!-- === end markdown block === -->
</div>


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