changeset 64:e4cb70884eb2

slides rename
author Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp>
date Thu, 03 Apr 2014 16:30:39 +0900
parents 6157582caebe
children 852b0904cafe
files 14/slides/April01st.html 14/slides/April_01st.html 14/slides/March-25th.html 14/slides/March25th.html
diffstat 4 files changed, 310 insertions(+), 310 deletions(-) [+]
line wrap: on
line diff
--- a/14/slides/April01st.html	Wed Apr 02 08:44:42 2014 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,173 +0,0 @@
-<!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>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/14/slides/April_01st.html	Thu Apr 03 16:30:39 2014 +0900
@@ -0,0 +1,173 @@
+<!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>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/14/slides/March-25th.html	Thu Apr 03 16:30:39 2014 +0900
@@ -0,0 +1,137 @@
+<!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 id="cover">
+    <h1>研究目的と背景</h1>
+    <p>
+    近年のCPUのほとんどはマルチコアであり、それらの性能を引き出すためには並列プログラミングが必須となっている。そこで当研究室では Cerium Library の開発を行い、提供することによって並列プログラミングを容易にしている。
+    </p>
+    <p>
+    先行研究では Task の並列化によって、プログラム全体の処理速度は向上しているが、ファイル読み込み等の I/O に対して並列に Task が動作するようにはされていない。
+    </p>
+    <p>
+    現状では、ファイルを全て memory に mapping を行ってから Task が走るようになっているので、非常に大きいサイズのファイルを読み込むと、ファイルを memory に mapping するまでの時間がオーバーヘッドになってしまう。
+    </p>
+    <p>
+    本研究では I/O と Task の並列化の設計、実装によってプログラム全体の処理速度、処理効率を上げていく。
+    </p>
+  </div>
+
+  <div class='cover'>
+    <h1>Your Slide Title Here</h1>
+    <ul>
+      <li>Item One Here</li>
+      <li>Item Two Here</li>
+    </ul>
+  </div>
+
+  <div>
+    <h1>Another Slide Title Here</h1>
+    <p>yada yada yada</p>
+  </div>
+
+  <div id="footer">
+    <h1>[your_footer_here]</h1>
+    <h2>[your_subfooter_here]</h2>
+  </div>
+
+</div> <!-- presentation -->
+</body>
+</html>
--- a/14/slides/March25th.html	Wed Apr 02 08:44:42 2014 +0900
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,137 +0,0 @@
-<!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 id="cover">
-    <h1>研究目的と背景</h1>
-    <p>
-    近年のCPUのほとんどはマルチコアであり、それらの性能を引き出すためには並列プログラミングが必須となっている。そこで当研究室では Cerium Library の開発を行い、提供することによって並列プログラミングを容易にしている。
-    </p>
-    <p>
-    先行研究では Task の並列化によって、プログラム全体の処理速度は向上しているが、ファイル読み込み等の I/O に対して並列に Task が動作するようにはされていない。
-    </p>
-    <p>
-    現状では、ファイルを全て memory に mapping を行ってから Task が走るようになっているので、非常に大きいサイズのファイルを読み込むと、ファイルを memory に mapping するまでの時間がオーバーヘッドになってしまう。
-    </p>
-    <p>
-    本研究では I/O と Task の並列化の設計、実装によってプログラム全体の処理速度、処理効率を上げていく。
-    </p>
-  </div>
-
-  <div class='cover'>
-    <h1>Your Slide Title Here</h1>
-    <ul>
-      <li>Item One Here</li>
-      <li>Item Two Here</li>
-    </ul>
-  </div>
-
-  <div>
-    <h1>Another Slide Title Here</h1>
-    <p>yada yada yada</p>
-  </div>
-
-  <div id="footer">
-    <h1>[your_footer_here]</h1>
-    <h2>[your_subfooter_here]</h2>
-  </div>
-
-</div> <!-- presentation -->
-</body>
-</html>