view sigos.tex @ 4:715578f76084

fixed
author sugi
date Mon, 01 Apr 2013 21:17:42 +0900
parents 7482647c66ec
children ae099fad4c1e
line wrap: on
line source

\documentclass[techrep]{ipsjpapers}
\usepackage[dvipdfm]{graphicx}
\usepackage{listings,jlisting}
\usepackage{url}

\input{dummy.tex} %% Font 

% ユーザが定義したマクロなど.
\makeatletter

\begin{document}

% 和文表題
\title{分散フレームワークAliceのDataSegmentの更新に関する改良}
% 英文表題
\etitle{}

% 所属ラベルの定義
\affilabel{1}{琉球大学理工学研究科情報工学専攻 \\Interdisciplinary Infomation Engineering, Graduate School of Engineering and Science, University of the Ryukyus.}
\affilabel{2}{琉球大学工学部情報工学科\\Infomation Engineering, University of the Ryukyus.}

% 和文著者名
\author{
  杉本 優\affiref{1}\and
  河野 真治\affiref{2}
}

% 英文著者名
\eauthor{
  Yu SUGIMOTO\affiref{1}\and
  Shinji KONO\affiref{2}
}

% 連絡先(投稿時に必要.製版用では無視される.)
\contact{杉本 優\\
        〒903-0213 沖縄県西原町千原1番地\\
	琉球大学工学部情報工学科\\
        TEL: (098)895-2221\qquad FAX: (098)895-8727\\
        email: dimolto@cr.ie.u-ryukyu.ac.jp} 

% 和文概要
\begin{abstract}
Aliceは、データをDataSegment、タスクをCodeSegmentという単位に分割して記述する分散フレームワークである。Aliceを使用して水族館の例題を通して分散フレームワークとしての記述能力を確認した。一方で、bitonic sortなどの並列処理では、Data Segmentの更新のオーバーヘッドが大きいことがわかった。本論文ではこれを解決する手法としてData Segmentのflipを提案し、効果の測定を行った。

\end{abstract}

% 英文概要
\begin{eabstract}
Alice is an distributed programming frame work, which uses Data Segment and Code Segment as programming units.  We checked  Alice has an ability to write distributed program using aquarium example.
In bitonic sort example refined Data Segment update is slow. So We propose a new API ``flip'' to  solve the problem and show its variation.
\end{eabstract}
% 表題などの出力
\maketitle

% 本文はここから始まる
\lstset{%
  frame=single,
  stringstyle={\ttfamily},
  commentstyle={\ttfamily},
  identifierstyle={\ttfamily}, 
  keywordstyle={\ttfamily},
  basicstyle={\ttfamily},
  breaklines=true,
  xleftmargin=0zw,
  xrightmargin=0zw,
  framerule=.2pt,
  columns=[l]{fullflexible},
  numbers=left,
  stepnumber=1,
  numberstyle={\scriptsize},
  numbersep=1em,
  language={Java},
  tabsize=4,
  lineskip=-0.5zw,
  morecomment={[s][]{/**}{*/}},
}


\input{introduction}   % 研究目的
\input{alice}           % Aliceについて
\input{problem}           % 問題点
\input{improvement}           % 改善案
\input{compare} 
\input{conclusion}     % まとめ

\nocite{kono}
\nocite{libspe2}
\bibliographystyle{ipsjunsrt}
\bibliography{sigos}

\input{bibliography}   % 参考文献

\end{document}