0
|
1 %\documentstyle{ipsjpapers}
|
|
2 \documentclass{ipsjpapers}
|
|
3 \usepackage[dvipdfm]{graphicx}
|
|
4 \usepackage{url}
|
|
5
|
|
6 \input{dummy.tex} %% font
|
|
7
|
|
8 % ユーザが定義したマクロなど.
|
|
9 \makeatletter
|
|
10 \let\@ARRAY\@array \def\@array{\def\<{\inhibitglue}\@ARRAY}
|
|
11 \def\<{\(\langle\)}
|
|
12 \def\>{\(\rangle\)}
|
|
13 \def\|{\verb|}
|
|
14 \def\Underline{\setbox0\hbox\bgroup\let\\\endUnderline}
|
|
15 \def\endUnderline{\vphantom{y}\egroup\smash{\underline{\box0}}\\}
|
|
16 \def\LATEX{\iLATEX\Large}
|
|
17 \def\LATEx{\iLATEX\normalsize}
|
|
18 \def\LATex{\iLATEX\small}
|
|
19 \def\iLATEX#1{L\kern-.36em\raise.3ex\hbox{#1\bf A}\kern-.15em
|
|
20 T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}
|
|
21 \def\LATEXe{\ifx\LaTeXe\undefined \LaTeX 2e\else\LaTeXe\fi}
|
|
22 \def\LATExe{\ifx\LaTeXe\undefined \iLATEX\scriptsize 2e\else\LaTeXe\fi}
|
|
23 \def\Quote{\list{}{}\item[]}
|
|
24 \let\endQuote\endlist
|
|
25 \def\TT{\if@LaTeX@e\tt\fi}
|
|
26 \def\CS#1{\if@LaTeX@e\tt\expandafter\string\csname#1\endcsname\else
|
|
27 $\backslash$#1\fi}
|
|
28
|
|
29 %\checklines % 行送りを確認する時に使用
|
|
30 \begin{document}%{
|
|
31 % 和文表題
|
|
32 \title{Cell 用の Fine-Grain Task Manager の実装}
|
|
33 % 英文表題
|
|
34 \etitle{Implementation of Fine-grain Task Manager for Cell}
|
|
35 % 所属ラベルの定義
|
|
36 \affilabel{ie.u-ryukyu1}{琉球大学理工学研究科情報工学専攻\\Interdisciplinary Infomation Engineering, Graduate School of Engineering and Science, University of the Ryukyus}
|
|
37 \affilabel{ie.u-ryukyu2}{琉球大学工学部情報工学科\\Infomation Engineering, University of the Ryukyus}
|
|
38 % 和文著者名
|
|
39 \author{宮國 渡\affiref{ie.u-ryukyu1}\and
|
|
40 河野 真治\affiref{ie.u-ryukyu2}}
|
|
41
|
|
42 % 英文著者名
|
|
43 \eauthor{Wataru MIYAGUNI\affiref{ie.u-ryukyu1}\and
|
|
44 Shinji KONO\affiref{ie.u-ryukyu2}}
|
|
45
|
|
46 % 和文概要
|
|
47 \begin{abstract}
|
|
48 近年、CPU の性能向上は、クロックサイクルをあげることよりも、
|
|
49 複数の CPU コア (Many Core Architecture) を導入することにより
|
|
50 得られるようになって来ている。しかし、Many Core Architecture のプログラムは
|
|
51 複雑であり、その信頼性を確保することは難しい。
|
|
52 本研究では Many Core Architecture 向けの Fine Grain Task Manager を設計する。
|
|
53 例題として、Rendering を含む PS3 上のゲームプログラム用フレームワークである
|
|
54 Cerium を用いる
|
|
55 \end{abstract}
|
|
56 % 英文概要
|
|
57 \begin{eabstract}
|
|
58 CPU performance is achieved in Many Core Architecture rather than high clock speed recently. The complicated nature of this architecture makes reliable program difficult.
|
|
59 In this paper, we implemented Fine Grain Task Manager for Many Core
|
|
60 Architecture.
|
|
61 We use this method for "Cerium" that is the framework for the game program on PS3 including Rendering.
|
|
62
|
|
63 \end{eabstract}
|
|
64
|
|
65 % 表題などの出力
|
|
66 \maketitle
|
|
67
|
|
68 % 本文はここから始まる
|
|
69
|
|
70 \input{introduction} % 研究目的
|
|
71 \input{cell} % Cell
|
|
72 \input{manycore} % many core system
|
|
73 \input{task_manager} % Task Manager
|
|
74 \input{dev} % 開発過程
|
3
|
75 \input{student} % 学生の反応
|
0
|
76 \input{cerium} % Cerium
|
|
77 \input{compare} % 評価と考察
|
|
78 \input{conclusion} % まとめ
|
|
79
|
|
80 \bibliographystyle{ipsjunsrt}
|
|
81 \bibliography{ess2008}
|
|
82
|
|
83 \end{document}
|