Mercurial > hg > Members > masakoha > masa
changeset 68:5c9895caa58e
add
author | Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Apr 2014 15:58:40 +0900 |
parents | 88749f6fa038 |
children | 084c34abe465 |
files | 14/slides/April_08th.html |
diffstat | 1 files changed, 175 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/14/slides/April_08th.html Tue Apr 08 15:58:40 2014 +0900 @@ -0,0 +1,175 @@ +<!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>目次の作成</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>目次</h1> +Title : Cerium による並列処理向け I/O の設計と実装<br> +<br> +第1章 研究背景と目的<br> +<br> +第2章 Cerium Task Manager<br> +<br> +第3章 Cerium Task Manager を使った例題<br> +・3.1 File Read<br> +・3.2 Word Count<br> +<br> +第4章 並列処理向け I/O の設計と実装<br> +・4.1 mmapでの実装<br> +・4.2 Blocked Read の設計と実装<br> +・4.3 I/O 専用 thread の実装<br> +<br> +第5章 ベンチマーク<br> +<br> +第6章 結論 + </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> + </div> + + <div> + <h1>名刺作成と注文</h1> + <p>希望者全員の分の名刺の作成と注文を行った</p> + <p>希望者全員には配布済み</p> + </div> + + <div id="footer"> + <h1>並列信頼研ロゴステッカーについて</h1> + </div> + +</div> <!-- presentation --> +</body> +</html>