Mercurial > hg > Papers > 2010 > jsst-yutaka
changeset 15:ada468ecbba5
fix
author | Yutaka_Kinjyo |
---|---|
date | Sun, 12 Sep 2010 11:58:16 +0900 |
parents | ca231fdd013c |
children | 89341a42b6fb |
files | presen/presen.html |
diffstat | 1 files changed, 20 insertions(+), 48 deletions(-) [+] |
line wrap: on
line diff
--- a/presen/presen.html Sun Sep 12 02:16:11 2010 +0900 +++ b/presen/presen.html Sun Sep 12 11:58:16 2010 +0900 @@ -463,6 +463,9 @@ </div> <div class="slide"> + +WordCountのTask内容 + <ul> <li>WordCountTask(<font color="red">TaskArray化</font>)</li> <ul> @@ -508,17 +511,12 @@ </div> + + <div class="slide"> <h1>WordCount</h1> -<ul> - <li>time : 実行時間</li> - <li>dma wait : dma転送待ちの割合</li> - <li>mail wait : mail待ちの割合</li> -</ul> - -<br> - +time : 実行時間 <table border="3" style="width:100%;"> <tr> <th></th> @@ -527,65 +525,39 @@ </tr> <tr> <th>time</th> -<td align="center">2.184s</td> -<td align="center">2.109s</td> +<td align="center">2.102s</td> +<td align="center">2.083s</td> </tr> <tr> <th>dma wait</th> -<td align="center">18%</td> <td align="center">12%</td> +<td align="center">17(+5)%</td> </tr> <tr> <th>mail wait</th> -<td align="center">5%</td> -<td align="center">8%</td> +<td align="center">7%</td> +<td align="center">2(-5)%</td> </tr> -<caption></caption> +<caption>WordCountの比較</caption> </table><br> +Mail wait の割合が減少、代わりに dma wait が増加 + +</div> + <div class="slide"> <h1>WordCount</h1> <ul> - <li>あまり効果は見られなかった</li> - <li>PPE側のTaskがないので、あまりmail待ちが入らない</li> - <li>ファイルのサイズが大きいのでメモリアクセスで時間がかかる</li> + <li>PPEで実行するTaskがないため、Mailをチェックしやすい</li> + <li>dma wait が</li> + <li></li> </ul> -<br> - -<table border="3" style="width:100%;"> -<tr> -<th></th> -<th>Task</th> -<th>TaskArray</th> -</tr> -<tr> -<th>time</th> -<td align="center">2.184s</td> -<td align="center">2.109s</td> - -</tr> -<tr> -<th>dma wait</th> -<td align="center">18%</td> -<td align="center">12%</td> - -</tr> -<tr> -<th>mail wait</th> -<td align="center">5%</td> -<td align="center">8%</td> -</tr> - -<caption></caption> - -</table><br> - </div> <div class="slide"> @@ -594,7 +566,7 @@ 改善策 <ul> - <li>一度にファイルマッピングをしない</li> + <li></li> <li>同じ領域を切り替えて、何度かに分けてマッピングする</li> <li>スワップを減らし、アクセス時間を短縮できる</li> <li>dma wait の割合が減る</li>