Skip to content

Commit a73d7b3

Browse files
author
Bruce Becker
committed
Added jdl with 16 cpus
1 parent 9b56c95 commit a73d7b3

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

grid/libsvm/study5-par16.jdl

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
[
2+
3+
# CODE-RADE libsvm Study 1 - see README.md
4+
# This
5+
6+
Type = "Job";
7+
JobType = "Normal";
8+
CPUNumber = 16;
9+
SMPGranularity = 16;
10+
# WholeNodes=true;
11+
12+
# Command to execute on the worker node
13+
# In this case, it is a script provided by us, which has to be included in the
14+
# Input Sandbox (see below)
15+
16+
Executable = "study8-par.sh";
17+
# Standard output (Would have been displayed to the screen output)
18+
19+
StdOutput = "rbf.out";
20+
21+
# Standard errors - we merge this with stdout
22+
23+
StdError = "rbf.out";
24+
25+
# Files to save after a jobrun (logfiles, outputfiles, etc.)
26+
27+
#OutputSandbox = {"rbf.out"};
28+
29+
# These are long-running jobs - we want to see what they are doing.
30+
# see : http://wiki.grid.auth.gr/wiki/bin/view/Groups/ALL/MonitoringTheOutputOfYourJob
31+
#PerusalFileEnable = true;
32+
# Set updates every 3 minutes
33+
#PerusalTimeInterval = 180;
34+
35+
InputSandbox = {"study8-par.sh",
36+
"grid-parallel.py",
37+
"text_normalization.pl"
38+
};
39+
40+
# See http://doc.grid.surfsara.nl/en/latest/Pages/Practices/data_replication.html?highlight=inputdata#data-requirements
41+
DataRequirements = {
42+
[
43+
InputData = {"lfn:/grid/sagrid/nwu-hlt/NCHLT/NCHLT_12K.tar.gz"};
44+
DataCatalogType = "DLI";
45+
DataCatalog = "http://lfc.magrid.ma:8085";
46+
]
47+
};
48+
DataAccessProtocol = {"gsiftp"};
49+
DataAccessProtocol = "gsiftp";
50+
51+
#Requirements = other.GlueCEUniqueID=="glite-ce.grid.uj.ac.za:8443/cream-pbs-sagrid";
52+
53+
# Number of times to resubmit job, if first submit fails from WMS
54+
RetryCount = 2;
55+
56+
# Number of times to resubmit the job, if the first submit fails from the local queue
57+
58+
ShallowRetryCount = 2;
59+
]

0 commit comments

Comments
 (0)