comparison before_s6/2014/2014_04_01/2014_04_01.html @ 5:ab2d529bb1d7

add slide
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 14 Oct 2014 19:17:35 +0900
parents
children
comparison
equal deleted inserted replaced
4:10fb2b05e390 5:ab2d529bb1d7
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset='utf-8'>
5 <title>Presentation</title>
6 <script src='./s6_trunk/slides.js'></script>
7 <style media='screen,projection'>
8 /****
9 * Add your styles here.
10 */
11
12 body { font-size: 175%; }
13
14 .step { color: silver; } /* or hide next steps e.g. .step { visibility: hidden; } */
15
16 .slide {
17 font-family: 'Open Sans', Arial, sans-serif;
18
19 color: rgb(102, 102, 102);
20 text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
21 }
22
23 .slide h1, .slide h2, .slide h3 {
24 color: rgb(51, 51, 51);
25 }
26
27 .slide pre {
28 font-family: 'Droid Sans Mono', 'Courier New', monospace;
29 font-size: 80%;
30
31 padding: 5px 10px;
32
33 margin-top: 40px;
34 margin-bottom: 40px;
35
36 color: black;
37 background: rgb(240, 240, 240);
38 border: 1px solid rgb(224, 224, 224);
39 box-shadow: inset 0 2px 6px rgba(0, 0, 0, .1);
40 overflow: hidden;
41 }
42
43 .slide code {
44 font-family: 'Droid Sans Mono', 'Courier New', monospace;
45 color: black;
46 }
47 </style>
48 </head>
49 <body>
50
51 <section class='slides'>
52 <!-- Add your slides here. Delete or comment out the slides below. -->
53 <article>
54 <h1>Data Segment の設計</h1>
55 <p><br>Kaito Tokumori<br>April 01, 2014</p>
56 </article>
57 <article>
58 <h3>Abstract</h3>
59 <p> 当研究室ではプログラムを Data Segmnet, Code Segment という単位を用いる手法を提案している。Data Segment は計算に必要なデータ、Code Segmnet は計算処理の単位であり、これらの組みがこの手法における1つの Task に相当する。この手法には、各 Task の待ち合わせ制御は Data Segment に依存する、Data Segment は内部表現と外部表現を持つ、Data Segment は priority を持ち処理順序の切り替えが可能、といった要件が存在し、 Data Segment はこれらの要件を満たすように設計されなければならない。
60 <p> 本研究では Data Segment の設計を行う。
61 </article>
62
63 <article>
64 <h3>今回したこと</h3>
65 <ul>
66 <li>図の清書</li>
67 <li>Abstract</li>
68 </ul>
69 </article>
70
71 </section>
72 </body>
73 </html>