-
Notifications
You must be signed in to change notification settings - Fork 0
/
omni_schema.yaml
261 lines (221 loc) · 5.31 KB
/
omni_schema.yaml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
---
id: https://w3id.org/omnibenchmark/omni-schema
name: omni-schema
title: omni-schema
description: |-
Data model for omnibenchmark.
license: Apache Software License 2.0
see_also:
- https://omnibenchmark.github.io/omni-schema
prefixes:
omni_schema: https://w3id.org/omnibenchmark/omni-schema/
linkml: https://w3id.org/linkml/
schema: http://schema.org/
example: https://example.org/
default_prefix: omni_schema
default_range: string
imports:
- linkml:types
enums:
StorageAPIEnum:
permissible_values:
S3:
text: S3
SoftwareBackendEnum:
permissible_values:
apptainer:
text: apptainer
envmodules:
text: envmodules
conda:
text: conda
docker:
text: docker
host:
text: host
classes:
IdentifiableEntity:
abstract: true
description: >-
A generic grouping for any identifiable entity
slots:
- id
- name
- description
class_uri: schema:Thing
Benchmark:
is_a: IdentifiableEntity
tree_root: true
description: >-
A multi-stage workflow to evaluate processing stage for a specific task.
slots:
- version
- benchmarker
- software_backend
- storage
- storage_api
- storage_bucket_name
- software_environments
- benchmark_yaml_spec
- stages
Stage:
is_a: IdentifiableEntity
description: >-
A benchmark subtask with equivalent and independent modules.
slots:
- modules
- inputs
- outputs
Module:
is_a: IdentifiableEntity
description: >-
A single benchmark component assigned to a specific stage.
slots:
- software_environment
- repository
- exclude
- parameters
IOFile:
is_a: IdentifiableEntity
description: >-
Represents an input / output file.
slots:
- path
InputCollection:
description: >-
A holder for valid input combinations.
slots:
- entries
Repository:
description: >-
A reference to code repository containing the module's executable code.
slots:
- url
- commit
Parameter:
description: >-
A parameter and its scope.
slots:
- values
SoftwareEnvironment:
is_a: IdentifiableEntity
description: >-
Contains snapshots of the software environment required for the modules to run.
slots:
- easyconfig
- envmodule
- conda
- apptainer
slots:
id:
identifier: true
slot_uri: schema:identifier
range: uriorcurie
description: A unique identifier for a thing
required: true
name:
slot_uri: schema:name
description: A human-readable name for a thing
description:
slot_uri: schema:description
description: A human-readable description for a thing
version:
range: string
description: The version of the benchmark.
required: true
benchmarker:
range: string
description: The name and contact details of the person responsible for this benchmark.
required: true
software_backend:
range: SoftwareBackendEnum
description: The software backend used to run the benchmark, e.g. whether apptainer, envmodules, or conda.
required: true
storage:
range: string
description: The place hosting all benchmark data.
required: true
storage_api:
range: StorageAPIEnum
description: The type of the storage API, i.e. S3.
required: true
storage_bucket_name:
range: string
description: The name of the bucket (i.e. for S3)
required: true
stages:
range: Stage
multivalued: true
inlined: true
inlined_as_list: true
required: true
modules:
range: Module
multivalued: true
inlined: true
inlined_as_list: true
required: true
inputs:
range: InputCollection
multivalued: true
inlined: true
inlined_as_list: true
outputs:
range: IOFile
multivalued: true
inlined: true
inlined_as_list: true
exclude:
range: Module
multivalued: true
description: Ignore these module's outputs as input.
repository:
range: Repository
description: The code repository hosting the module.
required: true
parameters:
range: Parameter
multivalued: true
software_environments:
range: SoftwareEnvironment
description: "Dictionary of software environments keyed by their identifiers"
multivalued: true
inlined: true
inlined_as_list: true
required: true
software_environment:
range: SoftwareEnvironment
description: Reference to a software environment by key.
required: true
path:
range: string
description: The output path pattern for the IO file.
url:
range: string
description: The git compatible url.
required: true
commit:
range: string
description: The commit hash.
required: true
values:
range: string
multivalued: true
entries:
range: IOFile
multivalued: true
easyconfig:
range: string
description: Easybuild configuration file.
envmodule:
range: string
description: Environment module name.
conda:
range: string
description: Conda environment file.
apptainer:
range: string
description: Apptainer image static ORAS url, including name:tag.
benchmark_yaml_spec:
range: string
description: Benchmark Specification version.