File: sub_only.def

package info (click to toggle)
ecflow 5.15.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,868 kB
  • sloc: cpp: 269,341; python: 22,756; sh: 3,609; perl: 770; xml: 333; f90: 204; ansic: 141; makefile: 70
file content (33 lines) | stat: -rw-r--r-- 863 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
extern /limits:c1a
extern /limits:linux_cluster
extern /limits:pdb
extern /limits:q2diss
suite limit_suiteName
	limit sg1  10
	limit mars 10
endsuite

suite limit_s1
	limit mars 10
	limit sg1  10
endsuite

suite limit_extern_and_submission_limits
    inlimit -s /limits:c1a
    family limits
    	limit hpcd 20
    endfamily
    
    family anon    
   		inlimit -s limits:hpcd       
    	task t1
    		inlimit -s /limit_suiteName:sg1        # another suite limit
    		inlimit -s /limit_suiteName:mars       # another suite limit
    		inlimit -s /limit_s1:mars              # another suite limit
    		inlimit -s /limit_s1:sg1               # another suite limit
   		task t2
   			inlimit -s /limit_extern_and_submission_limits/limits:hpcd      # This suite limit
  		task t3
   			inlimit -s /limits:c1a           # extern suite limit
    endfamily
endsuite