comparison 2013/Sep-2013/17th.html @ 9:e4748bca1eb3

mkdir 2013
author Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp>
date Tue, 14 Jan 2014 04:18:59 +0900
parents Sep-2013/17th.html@c9b2998eb516
children
comparison
equal deleted inserted replaced
8:0ce451f35622 9:e4748bca1eb3
1 <!DOCTYPE html>
2
3 <!--
4 Google HTML5 slide template
5
6 Authors: Luke Mahé (code)
7 Marcin Wichary (code and design)
8
9 Dominic Mazzoni (browser compatibility)
10 Charles Chen (ChromeVox support)
11
12 URL: http://code.google.com/p/html5slides/
13 -->
14
15 <html>
16 <head>
17 <title>2013-08-06</title>
18
19 <meta charset='utf-8'>
20 <script
21 src='http://html5slides.googlecode.com/svn/trunk/slides.js'></script>
22 </head>
23
24 <style>
25 /* Your individual styles here, or just use inline styles if that’s
26 what you want. */
27 .slides article { background-image: none !important; background-color: white; }
28
29
30 </style>
31
32 <body style='display: none'>
33
34 <section class='slides layout-regular template-default'>
35
36 <!-- Your slides (<article>s) go here. Delete or comment out the
37 slides below.-->
38
39 <article>
40 <h1>
41 Ceriumによる
42 <br>
43 正規表現マッチャの実装
44 </h1>
45 <p>
46 Masataka Kohagura
47 <br>
48 17th September , 2013
49 </p>
50 </article>
51
52 <article>
53 <h3>
54 研究目的
55 </h3>
56 <p>
57 本研究室では、Cell用に作られたCeriumにて並列プログラミングを行なっている。様々な例題を実装することにより、どのような問題でも並列処理ができることを証明する。
58 </p>
59 <p>
60 現在は文字列サーチを実装している段階で、ボイヤームーア法を実装している。
61 セミグループという、分割したファイルに対して並列処理をさせるような手法によって、既存の文字列サーチと処理速度を比較し、どれだけ速く、どれだけ効率よくなるのかを測定する。
62 </p>
63 <p>
64 並列処理は逐次処理よりも処理時間を短縮できる可能性があるが、I/O命令がボトルネックになる。
65 このボトルネックを軽減させるにはどのような処理をさせればよいのか考察し、処理全体の効率化の改善を図る。
66 </p>
67 </article>
68
69 <article>
70 <h3>
71 したこと
72 </h3>
73 <p>
74 ・三角波、矩形波の実装
75 </p>
76 </article>
77
78 <article class='smaller'>
79 <h3>波形</h3>
80 <p>三角波</p>
81 <section><pre>
82 double tri(double t){
83
84 double decimal_part = t - abs(t);
85
86 if(abs(t) % 2 != 0){
87 return decimal_part < 0.5 ? decimal_part : 1 - decimal_part;
88 }else{
89 return decimal_part < 0.5 ? -decimal_part : 1 - decimal_part;
90 }
91 }
92 </pre></section>
93
94 <p>矩形波</p>
95 <section><pre>
96 double square(double t){
97 double decimal_part = t - abs(t);
98 return decimal_part < 0.5 ? 1 : -1;
99 }
100 </pre></section>
101 </article>
102
103 <article class='smaller'>
104 <h3></h3>
105 <p>
106
107
108 </p>
109
110
111 </article>
112 </body>
113 </html>