forked from sfu-arch/llvm-epp
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added latex template for documentation
- Loading branch information
Snehasish Kumar
committed
Mar 9, 2017
1 parent
ed9d30d
commit 6290737
Showing
3 changed files
with
1,757 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% This is the template for submission to ISCA 2016 | ||
% The cls file is a modified from 'sig-alternate.cls' | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
|
||
\documentclass{sig-alternate} | ||
\usepackage{mathptmx} % This is Times font | ||
|
||
\newcommand{\ignore}[1]{} | ||
\usepackage{fancyhdr} | ||
\usepackage[normalem]{ulem} | ||
\usepackage[hyphens]{url} | ||
\usepackage{hyperref} | ||
|
||
|
||
%%%%%%%%%%%---SETME-----%%%%%%%%%%%%% | ||
\newcommand{\hpcasubmissionnumber}{NaN} | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\fancypagestyle{firstpage}{ | ||
\fancyhf{} | ||
\setlength{\headheight}{10pt} | ||
\renewcommand{\headrulewidth}{0pt} | ||
\fancyhead[C]{\normalsize{ISCA 2016 Submission | ||
\textbf{\#\hpcasubmissionnumber} \\ Confidential Draft: DO NOT DISTRIBUTE}} | ||
\pagenumbering{arabic} | ||
} | ||
|
||
%%%%%%%%%%%---SETME-----%%%%%%%%%%%%% | ||
\title{Efficient Path Profiling for LLVM} | ||
\author{Snehasish Kumar, Nick Sumner\\\{ska124,wsumner\}@cs.sfu.ca} | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\begin{document} | ||
\maketitle | ||
%\thispagestyle{firstpage} | ||
\pagestyle{plain} | ||
\begin{abstract} | ||
|
||
This document is intended to serve as a sample for submissions to ISCA 2016. We provide some guidelines that authors should follow when submitting papers to the conference. In an effort to respect the efforts of reviewers and in the interest of fairness to all prospective authors, we request that all submissions follow the formatting and submission rules detailed below. | ||
|
||
\end{abstract} | ||
|
||
\section{Introduction} | ||
|
||
\subsection{About this document} | ||
|
||
\section{Implementation} | ||
|
||
\section{Evaluation of overheads} | ||
|
||
\section{Roadmap} | ||
|
||
%%%%%%%%% -- BIB STYLE AND FILE -- %%%%%%%% | ||
\bibliographystyle{ieeetr} | ||
\bibliography{ref} | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
|
||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
|
||
@book{lamport94, | ||
author = "Leslie Lamport", | ||
title = "{\LaTeX: A Document Preparation System}", | ||
year = "1994", | ||
publisher = "Addison-Wesley", | ||
edition = "2nd", | ||
address = "Reading, Massachusetts" | ||
} | ||
|
||
@inproceedings{nicepaper1, | ||
author = "Firstname1 Lastname1 and Firstname2 Lastname2", | ||
title = "A Very Nice Paper To Cite", | ||
month = "Feb.", | ||
year = "2014", | ||
booktitle = "Intl. Symp. on High Performance Computer Architecture (HPCA)" | ||
} | ||
|
||
@inproceedings{nicepaper2, | ||
author = "Firstname1 Lastname1 and Firstname2 Lastname2 and Firstname3 Lastname3", | ||
title = "Another Very Nice Paper to Cite", | ||
month = "Oct.", | ||
year = "2012", | ||
booktitle = "Intl. Symp. on Microarchitecture (MICRO)" | ||
} | ||
|
||
@inproceedings{nicepaper3, | ||
author = "Firstname1 Lastname1 and Firstname2 Lastname2 and Firstname3 Lastname3 and Firstname4 Lastname4 and Firstname5 Lastname5", | ||
title = "Yet Another Very Nice Paper To Cite, With Many Author Names All Spelled Out", | ||
month = "June", | ||
year = "2011", | ||
booktitle = "Intl. Symp. on Computer Architecture (ISCA)" | ||
} |
Oops, something went wrong.