view 14/slides/April_01st.html @ 64:e4cb70884eb2

slides rename
author Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp>
date Thu, 03 Apr 2014 16:30:39 +0900
parents 14/slides/April01st.html@6157582caebe
children
line wrap: on
line source

<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="content-type" content="text/html;charset=utf-8"> 
  <title>25th,March,2014</title>

<!-- 
   Notes on CSS media types used:
 
   1) projection -> slideshow mode (display one slide at-a-time; hide all others)
   2) screen     -> outline mode (display all slides-at-once on screen) 
   3) print      -> print (and print preview)
  
   Note: toggle between projection/screen (that is, slideshow/outline) mode using t-key

   Questions, comments?
   - send them along to the mailinglist/forum online @ http://groups.google.com/group/webslideshow    
-->

<!-- styles  -->
<style media="screen,projection">

html,
body,
.presentation { margin: 0; padding: 0; }

.slide { display: none;
         position: absolute;
         top: 0; left: 0; 
         margin: 0;
         border: none;
         padding: 2% 4% 0% 4%;         /* css note: order is => top right bottom left  */
         -moz-box-sizing: border-box;
         -webkit-box-sizing: border-box;
         box-sizing: border-box;
         width: 100%; height: 100%;    /* css note: lets use border-box; no need to add padding+border to get to 100% */
         overflow-x: hidden; overflow-y: auto;
         z-index: 2;
       }

.slide.current { display: block; }  /* only display current slide in projection mode */

.slide .stepcurrent { color: black; }
.slide .step        { color: silver; } /* or hide next steps e.g. .step { visibility: hidden; } */

.slide {
/*
  background-image: -webkit-linear-gradient(top, blue, aqua, blue, aqua);
  background-image: -moz-linear-gradient(top, blue, aqua, blue, aqua);
*/
}
</style>

<style media="screen">
.slide             { border-top: 1px solid #888; }
.slide:first-child { border: none;  }
</style>

<style media="print">
.slide    { page-break-inside: avoid; }
.slide h1 { page-break-after:  avoid; }
.slide ul { page-break-inside: avoid; }
</style>


<!-- add js lib (jquery) -->
<script src="js/jquery-1.7.min.js"></script>

<!-- S6 JS -->
<script src="js/jquery.slideshow.js"></script>
<script src="js/jquery.slideshow.counter.js"></script>
<script src="js/jquery.slideshow.controls.js"></script>
<script>
  $(document).ready( function() {
    Slideshow.init();
    
    // Example 2: Start Off in Outline Mode
    // Slideshow.init( { mode: 'outline' } );
    
    // Example 3: Use Custom Transition
    // Slideshow.transition = transitionScrollUp;
    // Slideshow.init();

    // Example 4: Start Off in Autoplay Mode with Custom Transition
    // Slideshow.transition = transitionScrollUp;
    // Slideshow.init( { mode: 'autoplay' } );
  } );
</script>

</head>
<body>


<div class="presentation">

  <!-- add slides here; example -->
  <div id="header">
    <h1>Cerium による並列処理向け I/O の設計と実装</h1>
  </div>

  <div class='cover'>
    <h1>今週までの活動</h1>
    <ul>
      <li>Abstract を作成</li>
      <li>word count にて、mmap vs blocked read</li>
    </ul>

    <h1>事務連絡</h1>
    <ul>
      <li>名刺を illustrator にて作成・注文</li>
      <li>
      並列信頼研ロゴステッカーは、業者注文停止のため注文が遅くなる<br>
      (再開までにしばらく時間がかかりそう)
      </li>
    </ul>
  </div>


  <div id="cover">
    <h1>Abstract</h1>
    当研究室では、並列プログラミングを容易にするためのフレームワーク、Cerium の開発を行っている。
    先行研究では Task の並列化によって処理速度の向上が見られたが、ファイル読み込みの I/O 処理と Task が並列に動作するように実装されていない。
    従来はファイル読み込みを mmap で実装していたが、本論文では Blocked Read で実装を行った。Blocked Read  とは、あるサイズずつで読み込む処理と、それらに文字列検索を行う処理を分離させるための実装法である。
    その実装を行った結果、従来の mmap の実装と比較して 1.55倍ほど速度が向上した。
    </p>

    <p>
    We have developed Cerium that is a parallel programing Framework.
    In preceding research, procceing speed improved by concurrency of tasks.
    But, Tasks and I/O proccecing
    </p>

  </div>

  <div class='cover'>
    <h1>word count で mmap vs Blocked Read</h1>
    <p>
    firefly 上で実行<br>
    2*2.66 GHz, HHD 1TB, memory 16GB<br>
    file size : 1GB<br>
    cpu num : 12
    </p>

  <table>
    <tr>
        <table>
        <tr><td>mode</td><td>time(s)</td></tr>
        <tr><td>cpu & mmap</td><td>22.98</td></tr>
        <tr><td>cpu & blocked read</td><td>13.14</td></tr>
        <tr><td>gpu & mmap</td><td>101.40</td></tr>
        <tr><td>gpu & blocked read</td><td>90.63</td></tr>
        </table>
       <tr>
     </table>
    <ul>
      <li></li>
      <li></li>
    </ul>
  </div>

  <div>
    <h1>名刺作成と注文</h1>
    <p>希望者全員の分の名刺の作成と注文を行った。</p>
    <p>到着予定日は 新B4、新M1 は4/3 頃、新M2 は4/6頃に到着予定。</p>
  </div>

  <div id="footer">
    <h1>並列信頼研ロゴステッカーについて</h1>
  </div>

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