How to Manage Many Jobs

From HPC users
Revision as of 14:36, 16 August 2019 by Harfst (talk | contribs) (Created page with "== Introduction == Often, you may need to run many nearly identical jobs. There are different approaches to achieve this goal with minimal effort and some of the approaches ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Introduction

Often, you may need to run many nearly identical jobs. There are different approaches to achieve this goal with minimal effort and some of the approaches will be described below. Which approach best suits your needs depends on the nature of your problem but some hints are given for making the choice.

In the examples below, a simple program to decide whether a number is a prime will be used. Basically, you can run the program, e.g. with

$ ./isprime 73
yes

to see if, in this case, 73 is a prime (yes it is).

Packaging many Tasks in a Single Job