init the MWD writeup
This commit is contained in:
2
mwd_gpu/.gitignore
vendored
Normal file
2
mwd_gpu/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
*.bak
|
||||||
|
*.sav
|
||||||
15
mwd_gpu/Makefile
Normal file
15
mwd_gpu/Makefile
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
DOC=mwdGpu
|
||||||
|
INPUT=$(DOC).tex
|
||||||
|
TARGET=$(DOC).pdf
|
||||||
|
TEX=pdflatex -shell-escape
|
||||||
|
BIB=bibtex
|
||||||
|
|
||||||
|
default: $(TARGET)
|
||||||
|
|
||||||
|
$(TARGET): $(INPUT) Makefile
|
||||||
|
# $(TEX) $< && $(BIB) $(DOC) && $(TEX) $< && $(TEX) $<
|
||||||
|
$(TEX) $< && $(TEX) $<
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(DOC).{pdf,out,aux,log}
|
||||||
|
rm -f *.{pdf,out,aux,log,bbl,blg}
|
||||||
57
mwd_gpu/mwdGpu.tex
Normal file
57
mwd_gpu/mwdGpu.tex
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
\documentclass[11pt]{article}
|
||||||
|
\usepackage{mhchem}
|
||||||
|
\usepackage{booktabs}
|
||||||
|
\usepackage{multirow}
|
||||||
|
\usepackage{textcomp}
|
||||||
|
\usepackage{epsfig}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage[noabbrev, capitalize]{cleveref} % hyperref must be loaded first
|
||||||
|
\usepackage[
|
||||||
|
detect-weight=true,
|
||||||
|
per=slash,
|
||||||
|
detect-family=true,
|
||||||
|
separate-uncertainty=true]{siunitx}
|
||||||
|
% \usepackage{listings}
|
||||||
|
\usepackage[dvipsnames]{xcolor}
|
||||||
|
\usepackage{upquote}
|
||||||
|
|
||||||
|
\usepackage[framemethod=tikz]{mdframed}
|
||||||
|
\usepackage{adjustbox}
|
||||||
|
|
||||||
|
% \definecolor{greybg}{rgb}{0.25,0.25,0.25}
|
||||||
|
% \definecolor{yellowbg}{rgb}{0.91, 0.84, 0.42}
|
||||||
|
% \definecolor{bananamania}{rgb}{0.98, 0.91, 0.71}
|
||||||
|
|
||||||
|
\mdfdefinestyle{warning}{%
|
||||||
|
linecolor=red!70,
|
||||||
|
frametitle={Warning},
|
||||||
|
frametitlerule=true,
|
||||||
|
frametitlebackgroundcolor=orange!40,
|
||||||
|
backgroundcolor=orange!30,
|
||||||
|
innertopmargin=\topskip,
|
||||||
|
roundcorner=8pt,
|
||||||
|
linewidth=1pt,
|
||||||
|
}
|
||||||
|
% \mdtheorem[style=theoremstyle]{warning}{Warning}
|
||||||
|
|
||||||
|
\mdfdefinestyle{listing}{%
|
||||||
|
linecolor=Aquamarine!50,
|
||||||
|
linewidth=1pt,
|
||||||
|
backgroundcolor=yellow!40,
|
||||||
|
roundcorner=8pt,
|
||||||
|
% frametitlerule=true,
|
||||||
|
% frametitlebackgroundcolor=yellow!50,
|
||||||
|
innertopmargin=\topskip,
|
||||||
|
}
|
||||||
|
% \mdtheorem[style=listing]{listing}{Listing}
|
||||||
|
|
||||||
|
% \DeclareSIUnit\eVperc{\eV\per\clight}
|
||||||
|
% \DeclareSIUnit\clight{\text{\ensuremath{c}}}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\title{Moving window decomposition implementation using GPU}
|
||||||
|
\author{Nam H. Tran \\ Boston University}
|
||||||
|
\date{\today}
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\end{document}
|
||||||
Reference in New Issue
Block a user