Skip to content
Snippets Groups Projects
Commit 0d343aa9 authored by Moe Jette's avatar Moe Jette
Browse files

Add framework for JSSPP2003 conference paper and title page for that paper.

parent debbbe83
No related branches found
No related tags found
No related merge requests found
\documentclass{article}
\usepackage{graphics}
\usepackage{epsfig}
\usepackage{hhline}
\title{SLURM: Simple Linux Utility for Resource Management\thanks{
This document was prepared as an account of work sponsored by an
agency of the United States Government. Neither the United States
Government nor the University of California nor any of their
employees, makes any warranty, express or implied, or assumes any
legal liability or responsibility for the accuracy, completeness, or
usefulness of any information, apparatus, product, or process
disclosed, or represents that its use would not infringe privately
owned rights. Reference herein to any specific commercial product,
process, or service by trade name, trademark, manufacturer, or
otherwise, does not necessarily constitute or imply its endorsement,
recommendation, or favoring by the United States Government or the
University of California. The views and opinions of authors expressed
herein do not necessarily state or reflect those of the United States
Government or the University of California, and shall not be used for
advertising or product endorsement purposes.
This work was performed under the auspices of the U. S. Department of
Energy by the University of California, Lawrence Livermore National
Laboratory under Contract No. W-7405-Eng-48.}}
\author{Morris Jette \and Mark Grondona}
% We cheat here to easily get the desired allignment
\date{\{jette1,mgrondona\}@llnl.gov}
\begin{document}
\maketitle
\begin{abstract}
Simple Linux Utility for Resource Management (SLURM) is an open source,
fault-tolerant, and highly scalable cluster management and job
scheduling system for Linux clusters of thousands of nodes. Components
include machine status, partition management, job management, scheduling
and stream copy modules. This paper presents a overview of the SLURM architecture and functionality.
\end{abstract}
\section{Overview}
TBD
\end{document}
......@@ -9,9 +9,9 @@
# 'info "GNU make"': "Using variables": "Automatic" also lists a few more.
REPORT = report
JSSPP = jsspp
TEX = llnl.tex $(REPORT).tex
TEX = llnl.tex $(JSSPP).tex $(REPORT).tex
FIGDIR = figures
FIGS = $(FIGDIR)/arch.eps \
......@@ -39,7 +39,10 @@ BIB = project.bib
%.pdf: %.dvi
dvipdf $< $@
all: $(REPORT).ps
all: $(JSSPP).ps $(REPORT).ps
$(JSSPP).dvi: $(TEX) $(FIGS) $(PLOTS) $(BIB)
latex $(JSSPP)
$(REPORT).dvi: $(TEX) $(FIGS) $(PLOTS) $(BIB)
rm -f *.log *.aux *.blg *.bbl
......@@ -53,5 +56,5 @@ view: $(REPORT).ps
ghostview $(REPORT) &
clean:
rm -f *~ *.dvi *.log *.aux report.ps *.blg *.bbl #*.eps #*.gif *.ps
rm -f *~ *.dvi *.log *.aux $(JSSPP).ps $(REPORT).ps *.blg *.bbl #*.eps #*.gif *.ps
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment