From 0d343aa96311990693ccc19f0d1d601828d126f1 Mon Sep 17 00:00:00 2001 From: Moe Jette <jette1@llnl.gov> Date: Thu, 13 Mar 2003 21:22:46 +0000 Subject: [PATCH] Add framework for JSSPP2003 conference paper and title page for that paper. --- doc/jsspp/jsspp.tex | 47 ++++++++++++++++++++++++++++++++++++++++++ doc/pubdesign/Makefile | 11 ++++++---- 2 files changed, 54 insertions(+), 4 deletions(-) create mode 100644 doc/jsspp/jsspp.tex diff --git a/doc/jsspp/jsspp.tex b/doc/jsspp/jsspp.tex new file mode 100644 index 00000000000..71502253827 --- /dev/null +++ b/doc/jsspp/jsspp.tex @@ -0,0 +1,47 @@ +\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} diff --git a/doc/pubdesign/Makefile b/doc/pubdesign/Makefile index 800e9b0e8e4..f666b8ec85b 100644 --- a/doc/pubdesign/Makefile +++ b/doc/pubdesign/Makefile @@ -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 -- GitLab