0
|
1 %% v1.3 [2003/10/31]
|
|
2 \documentclass[technicalreport]{ieicej}
|
|
3 %\documentclass[technicalreport,usejistfm]{ieicej}
|
|
4 %\usepackage{graphicx}
|
|
5 \usepackage{latexsym}
|
|
6 \usepackage[dvipdfm]{graphicx}
|
|
7 %\usepackage[fleqn]{amsmath}
|
|
8 %\usepackage[psamsfonts]{amssymb}
|
|
9
|
|
10 \def\IEICEJcls{\texttt{ieicej.cls}}
|
|
11 \def\IEICEver{1.3}
|
|
12 \newcommand{\AmSLaTeX}{%
|
|
13 $\mathcal A$\lower.4ex\hbox{$\!\mathcal M\!$}$\mathcal S$-\LaTeX}
|
|
14 \newcommand{\PS}{{\scshape Post\-Script}}
|
|
15 \def\BibTeX{{\rmfamily B\kern-.05em{\scshape i\kern-.025em b}\kern-.08em
|
|
16 T\kern-.1667em\lower.7ex\hbox{E}\kern-.125em X}}
|
|
17
|
|
18 \jtitle{CからCellアーキテクチャを利用したCbCへの変換}
|
|
19 \jsubtitle{}
|
|
20 \etitle{ Conversion to CbC which used the Cell architecture from C }
|
|
21 \esubtitle{}
|
|
22 \authorlist{%
|
|
23 \authorentry[akira@cr.ie.u-ryukyu.ac.jp]{神里 晃 }{Akira KAMIZATO}{Okinawa}%
|
|
24 \authorentry[kono@ie.u-ryukyu.ac.jp]{河野 真治}{Shinji KONO}{Okinawa}%
|
|
25 }
|
|
26 \affiliate[Okinawa]{琉球大学理工学研究科情報工学専攻\hskip1zw
|
|
27 〒903-0213 沖縄県西原町千原1番地}
|
|
28 {Information Engineering,
|
|
29 University Of Ryukyus\hskip1em
|
|
30 Senbaru 1, Nishihara , Okinawa,
|
|
31 903-0213 Japan}
|
|
32 %\affiliate[Tokyo]{琉球大学工学部情報工学専攻\hskip1zw
|
|
33 % 〒903-0213 沖縄県西原町千原1番地}
|
|
34 % {Information Engineering,
|
|
35 % University Of Ryukyus\hskip1em
|
|
36 % Senbaru 1, Nishihara , Okinawa,
|
|
37 % 903-0213 Japan}
|
|
38
|
|
39 %\MailAddress{$\dagger$hanako@denshi.ac.jp,
|
|
40 % $\dagger\dagger$\{taro,jiro\}@jouhou.co.jp}
|
|
41
|
|
42 \begin{document}
|
|
43 \begin{jabstract}
|
|
44 我々は状態遷移記述に向いたCの下位言語であるContinuation based C(CbC)を提
|
3
|
45 案している。今回Cellアーキテクチャ上でのCbCを利用したCellプログラムについて
|
|
46 考察する。CbCはサブルーチンコールは行われず、gotoで接続された状態になるので、依存関係が明白になる。Cよりも自然な形で並列計算にマッピングしやすいという特徴を備えている。
|
|
47 %今回Cellアーキテクチャを利用し、C言語からCbCを利用したCellプ
|
|
48 %ログラムを生成する手法について考察する。本変換で、信頼性の高い並列計算を
|
|
49 %行うシーケンシャルなプログラムを提供することが可能となる.
|
0
|
50 \end{jabstract}
|
|
51 \begin{jkeyword}
|
|
52 Cell,マルチコア,
|
|
53 \end{jkeyword}
|
|
54 \begin{eabstract}
|
|
55 IEICE (the Institute of Electronics, Information
|
|
56 and Communication Engineers) provides
|
|
57 a p\LaTeXe\ class file, named \IEICEJcls\ (ver.\,\IEICEver),
|
|
58 for the Technical Report of IEICE.
|
|
59 This document describes how to use the class file,
|
|
60 and also makes some remarks about typesetting a document by using p\LaTeXe.
|
|
61 The design is based on ASCII Japanese p\LaTeXe.
|
|
62 \end{eabstract}
|
|
63 \begin{ekeyword}
|
|
64 p\LaTeXe\ class file, typesetting
|
|
65 \end{ekeyword}
|
|
66 \maketitle
|
|
67
|
|
68 \input{introduction.tex}
|
|
69 \input{cbc.tex}
|
|
70 \input{cell.tex}
|
2
|
71 \input{multicore.tex}
|
0
|
72 \input{rendering.tex}
|
2
|
73 \input{debug.tex}
|
|
74 \input{compare.tex}
|
0
|
75 \input{finally.tex}
|
|
76 \input{bibitem.tex}
|
|
77 \end{document}
|
|
78
|