@grnsft/if 0.1.9 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. package/.commitlintrc.js +45 -0
  2. package/.husky/commit-msg +4 -0
  3. package/.husky/pre-commit +6 -0
  4. package/CONTRIBUTING.md +82 -109
  5. package/README.md +16 -12
  6. package/build/config/config.d.ts +4 -3
  7. package/build/config/config.js +11 -10
  8. package/build/config/params.js +17 -17
  9. package/build/config/strings.d.ts +9 -8
  10. package/build/config/strings.js +13 -12
  11. package/build/index.js +19 -69
  12. package/build/lib/aggregate.d.ts +6 -0
  13. package/build/lib/aggregate.js +72 -0
  14. package/build/lib/compute.d.ts +5 -0
  15. package/build/lib/compute.js +84 -0
  16. package/build/lib/exhaust.d.ts +6 -0
  17. package/build/lib/exhaust.js +47 -0
  18. package/build/lib/initialize.d.ts +6 -0
  19. package/build/lib/initialize.js +98 -0
  20. package/build/lib/load.d.ts +6 -0
  21. package/build/lib/load.js +24 -0
  22. package/build/lib/parameterize.d.ts +5 -0
  23. package/build/lib/parameterize.js +49 -0
  24. package/build/models/export-csv.d.ts +2 -0
  25. package/build/models/export-csv.js +129 -0
  26. package/build/models/export-log.d.ts +4 -0
  27. package/build/models/export-log.js +18 -0
  28. package/build/models/export-yaml.d.ts +4 -0
  29. package/build/models/export-yaml.js +24 -0
  30. package/build/models/group-by.d.ts +11 -0
  31. package/build/models/group-by.js +56 -0
  32. package/build/models/index.d.ts +2 -1
  33. package/build/models/index.js +5 -3
  34. package/build/models/time-sync.d.ts +2 -57
  35. package/build/models/time-sync.js +204 -158
  36. package/build/types/aggregation.js +5 -0
  37. package/build/types/compute.d.ts +25 -0
  38. package/build/types/compute.js +3 -0
  39. package/build/types/exhaust-plugin-interface.d.ts +7 -0
  40. package/build/types/exhaust-plugin-interface.js +3 -0
  41. package/build/types/group-by.d.ts +3 -0
  42. package/build/types/group-by.js +3 -0
  43. package/build/types/initialize.d.ts +4 -0
  44. package/build/types/initialize.js +3 -0
  45. package/build/types/interface.d.ts +8 -0
  46. package/build/types/interface.js +3 -0
  47. package/build/types/load.d.ts +7 -0
  48. package/build/types/load.js +3 -0
  49. package/build/types/manifest.d.ts +40 -0
  50. package/build/types/manifest.js +3 -0
  51. package/build/types/parameters.d.ts +4 -5
  52. package/build/types/parameters.js +1 -1
  53. package/build/types/process-args.d.ts +3 -5
  54. package/build/types/process-args.js +1 -1
  55. package/build/types/time-sync.d.ts +9 -2
  56. package/build/types/time-sync.js +1 -1
  57. package/build/util/aggregation-helper.d.ts +6 -0
  58. package/build/util/aggregation-helper.js +56 -0
  59. package/build/util/args.d.ts +6 -3
  60. package/build/util/args.js +21 -17
  61. package/build/util/errors.d.ts +1 -1
  62. package/build/util/errors.js +8 -4
  63. package/build/util/helpers.d.ts +4 -0
  64. package/build/util/helpers.js +23 -4
  65. package/build/util/json.d.ts +4 -0
  66. package/build/util/json.js +16 -0
  67. package/build/util/logger.d.ts +5 -0
  68. package/build/util/logger.js +40 -0
  69. package/build/util/validations.d.ts +22 -19
  70. package/build/util/validations.js +41 -34
  71. package/examples/{impls/test → manifests}/azure-importer.yml +8 -8
  72. package/examples/manifests/basic-demo.yml +75 -0
  73. package/examples/manifests/basic.yml +27 -0
  74. package/examples/manifests/boavizta-pipeline.yml +85 -0
  75. package/examples/{impls/test → manifests}/boavizta.yml +11 -12
  76. package/examples/{impls/test → manifests}/ccf.yml +9 -10
  77. package/examples/manifests/cim.yml +20 -0
  78. package/examples/manifests/cloud-metadata.yml +41 -0
  79. package/examples/manifests/co2js.yml +30 -0
  80. package/examples/manifests/coefficient.yml +23 -0
  81. package/examples/manifests/csv-export.yml +34 -0
  82. package/examples/manifests/e-mem.yml +21 -0
  83. package/examples/{impls/test → manifests}/e-net.yml +9 -8
  84. package/examples/manifests/generics.yml +71 -0
  85. package/examples/manifests/group-by.yml +48 -0
  86. package/examples/manifests/mock-observation.yml +33 -0
  87. package/examples/manifests/multiply.yml +23 -0
  88. package/examples/manifests/nesting-demo.yml +89 -0
  89. package/examples/manifests/nesting.yml +215 -0
  90. package/examples/manifests/pipeline-demo-1.yml +85 -0
  91. package/examples/manifests/pipeline-demo-2.yml +149 -0
  92. package/examples/manifests/pipeline-demo.yml +128 -0
  93. package/examples/manifests/pipeline-teads-sci.yml +82 -0
  94. package/examples/manifests/pipeline-with-generics.yml +147 -0
  95. package/examples/manifests/pipeline-with-mocks.yml +146 -0
  96. package/examples/{impls/test → manifests}/sci-e.yml +6 -8
  97. package/examples/manifests/sci-m.yml +23 -0
  98. package/examples/{impls/test → manifests}/sci-o.yml +10 -10
  99. package/examples/{impls/test → manifests}/sci.yml +10 -9
  100. package/examples/manifests/shell.yml +20 -0
  101. package/examples/manifests/sum.yml +23 -0
  102. package/examples/{impls/test → manifests}/tdp-finder.yml +6 -7
  103. package/examples/manifests/teads-aws.yml +22 -0
  104. package/examples/manifests/teads-curve.yml +20 -0
  105. package/examples/manifests/time-sync.yml +32 -0
  106. package/examples/manifests/watt-time.yml +42 -0
  107. package/jest.config.js +6 -1
  108. package/package.json +13 -8
  109. package/src/__tests__/integration/templates/integration.yaml +16 -0
  110. package/src/models/README.md +6 -6
  111. package/tsconfig.test.json +1 -1
  112. package/Makefile +0 -16
  113. package/build/lib/aggregator.d.ts +0 -7
  114. package/build/lib/aggregator.js +0 -46
  115. package/build/lib/models-universe.d.ts +0 -40
  116. package/build/lib/models-universe.js +0 -145
  117. package/build/lib/observatory.d.ts +0 -20
  118. package/build/lib/observatory.js +0 -31
  119. package/build/lib/supercomputer.d.ts +0 -39
  120. package/build/lib/supercomputer.js +0 -116
  121. package/build/types/aggregator.js +0 -5
  122. package/build/types/impl.d.ts +0 -92
  123. package/build/types/impl.js +0 -19
  124. package/build/types/model-interface.d.ts +0 -13
  125. package/build/types/model-interface.js +0 -3
  126. package/build/types/models-universe.d.ts +0 -20
  127. package/build/types/models-universe.js +0 -3
  128. package/build/types/supercomputer.d.ts +0 -4
  129. package/build/types/supercomputer.js +0 -3
  130. package/build/util/param-selectors.d.ts +0 -5
  131. package/build/util/param-selectors.js +0 -14
  132. package/examples/impls/case-studies/accenture.yml +0 -155
  133. package/examples/impls/case-studies/aggregation.yml +0 -97
  134. package/examples/impls/case-studies/aveva.yaml +0 -48
  135. package/examples/impls/case-studies/azure-yassine.yaml +0 -67
  136. package/examples/impls/case-studies/boavizta.yml +0 -26
  137. package/examples/impls/case-studies/dow_msft.yml +0 -173
  138. package/examples/impls/case-studies/farm-insights.yaml +0 -35
  139. package/examples/impls/case-studies/gsf-website.yaml +0 -93
  140. package/examples/impls/case-studies/msft-eshoppen.yaml +0 -162
  141. package/examples/impls/case-studies/msft-green-ai.yaml +0 -58
  142. package/examples/impls/case-studies/ntt-data-on-premise.yaml +0 -201
  143. package/examples/impls/test/aggregation-test.yml +0 -109
  144. package/examples/impls/test/aggregation-test2.yml +0 -52
  145. package/examples/impls/test/cim.yml +0 -19
  146. package/examples/impls/test/e-mem.yml +0 -19
  147. package/examples/impls/test/if-demo.yml +0 -59
  148. package/examples/impls/test/large-impl.yml +0 -257303
  149. package/examples/impls/test/metadata.yml +0 -21
  150. package/examples/impls/test/nesting.yml +0 -113
  151. package/examples/impls/test/new-params-test.yml +0 -35
  152. package/examples/impls/test/sci-m.yml +0 -24
  153. package/examples/impls/test/shell.yml +0 -19
  154. package/examples/impls/test/teads-cpu.yml +0 -18
  155. package/examples/impls/test/time-sync-avoid-padding.yml +0 -50
  156. package/examples/impls/test/time-sync.yml +0 -76
  157. package/examples/ompls/aggregation-test.yml +0 -340
  158. package/examples/ompls/aggregation-test2.yml +0 -83
  159. package/examples/ompls/azure-importer.yml +0 -145
  160. package/examples/ompls/boavizta.yml +0 -32
  161. package/examples/ompls/ccf.yml +0 -29
  162. package/examples/ompls/cim.yml +0 -29
  163. package/examples/ompls/complex-pipeline.yml +0 -105
  164. package/examples/ompls/e-mem.yml +0 -26
  165. package/examples/ompls/full-sci.yml +0 -64
  166. package/examples/ompls/if-demo.yml +0 -517
  167. package/examples/ompls/metadata.yml +0 -29
  168. package/examples/ompls/nesting.yml +0 -113
  169. package/examples/ompls/sci-e.yml +0 -23
  170. package/examples/ompls/sci-m.yml +0 -33
  171. package/examples/ompls/sci-o.yml +0 -29
  172. package/examples/ompls/sci.yml +0 -37
  173. package/examples/ompls/shell.yml +0 -23
  174. package/examples/ompls/teads-cpu.yml +0 -24
  175. package/examples/ompls/time-sync.yml +0 -212
  176. /package/build/types/{aggregator.d.ts → aggregation.d.ts} +0 -0
@@ -1,517 +0,0 @@
1
- name: if-demo
2
- description: demo pipeline
3
- tags: null
4
- initialize:
5
- models:
6
- - name: azure-importer
7
- path: if-models
8
- model: AzureImporterModel
9
- - name: cloud-instance-metadata
10
- path: if-models
11
- model: CloudInstanceMetadataModel
12
- - name: teads-curve
13
- path: if-community-models
14
- model: TeadsCurveModel
15
- - name: sci-e
16
- path: if-models
17
- model: SciEModel
18
- - name: sci-o
19
- path: if-models
20
- model: SciOModel
21
- - name: sci-e
22
- path: if-models
23
- model: SciEModel
24
- - name: sci-m
25
- path: if-models
26
- model: SciMModel
27
- - name: sci
28
- path: if-models
29
- model: SciModel
30
- graph:
31
- children:
32
- child:
33
- pipeline:
34
- - azure-importer
35
- - cloud-instance-metadata
36
- - teads-curve
37
- - sci-e
38
- - sci-o
39
- - sci-m
40
- - sci
41
- config:
42
- sci-o:
43
- grid-carbon-intensity: 951
44
- sci:
45
- functional-unit: ''
46
- functional-unit-time: hour
47
- functional-unit-duration: 1
48
- inputs:
49
- - timestamp: '2023-11-02T10:35:31.820Z'
50
- duration: 3600
51
- azure-observation-window: 5 min
52
- azure-observation-aggregation: average
53
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
54
- azure-resource-group: vm1_group
55
- azure-vm-name: vm1
56
- total-embodied-emissions: 1533.12
57
- time-reserved: 300
58
- expected-lifespan: 94348800
59
- resources-reserved: 1
60
- total-resources: 64
61
- outputs:
62
- - timestamp: '2023-11-02T10:35:31.820Z'
63
- cloud-vendor: azure
64
- cpu-util: '0.314'
65
- mem-availableGB: 0.488636416
66
- mem-usedGB: 0.5113635839999999
67
- total-memoryGB: '1'
68
- mem-util: 51.13635839999999
69
- location: uksouth
70
- cloud-instance-type: Standard_B1s
71
- duration: 300
72
- azure-observation-window: 5 min
73
- azure-observation-aggregation: average
74
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
75
- azure-resource-group: vm1_group
76
- azure-vm-name: vm1
77
- total-embodied-emissions: 1533.12
78
- time-reserved: 300
79
- expected-lifespan: 94348800
80
- resources-reserved: 1
81
- total-resources: 64
82
- grid-carbon-intensity: 951
83
- functional-unit: ''
84
- functional-unit-time: hour
85
- functional-unit-duration: 1
86
- vcpus-allocated: '1'
87
- vcpus-total: '64'
88
- physical-processor: >-
89
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
90
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
91
- 2.4 GHz
92
- memory-available: '1'
93
- thermal-design-power: '270'
94
- energy-cpu: 0.0028475446387886973
95
- energy: 0.0028475446387886973
96
- operational-carbon: 2.708014951488051
97
- embodied-carbon: 0.00007616949023199022
98
- carbon: 0.009026970403260942
99
- sci: 32.49709345173939
100
- - timestamp: '2023-11-02T10:35:31.820Z'
101
- cloud-vendor: azure
102
- cpu-util: '0.314'
103
- mem-availableGB: 0.48978984960000005
104
- mem-usedGB: 0.5102101504
105
- total-memoryGB: '1'
106
- mem-util: 51.021015039999995
107
- location: uksouth
108
- cloud-instance-type: Standard_B1s
109
- duration: 300
110
- azure-observation-window: 5 min
111
- azure-observation-aggregation: average
112
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
113
- azure-resource-group: vm1_group
114
- azure-vm-name: vm1
115
- total-embodied-emissions: 1533.12
116
- time-reserved: 300
117
- expected-lifespan: 94348800
118
- resources-reserved: 1
119
- total-resources: 64
120
- grid-carbon-intensity: 951
121
- functional-unit: ''
122
- functional-unit-time: hour
123
- functional-unit-duration: 1
124
- vcpus-allocated: '1'
125
- vcpus-total: '64'
126
- physical-processor: >-
127
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
128
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
129
- 2.4 GHz
130
- memory-available: '1'
131
- thermal-design-power: '270'
132
- energy-cpu: 0.0028475446387886973
133
- energy: 0.0028475446387886973
134
- operational-carbon: 2.708014951488051
135
- embodied-carbon: 0.00007616949023199022
136
- carbon: 0.009026970403260942
137
- sci: 32.49709345173939
138
- - timestamp: '2023-11-02T10:35:31.820Z'
139
- cloud-vendor: azure
140
- cpu-util: '0.301'
141
- mem-availableGB: 0.490733568
142
- mem-usedGB: 0.509266432
143
- total-memoryGB: '1'
144
- mem-util: 50.9266432
145
- location: uksouth
146
- cloud-instance-type: Standard_B1s
147
- duration: 300
148
- azure-observation-window: 5 min
149
- azure-observation-aggregation: average
150
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
151
- azure-resource-group: vm1_group
152
- azure-vm-name: vm1
153
- total-embodied-emissions: 1533.12
154
- time-reserved: 300
155
- expected-lifespan: 94348800
156
- resources-reserved: 1
157
- total-resources: 64
158
- grid-carbon-intensity: 951
159
- functional-unit: ''
160
- functional-unit-time: hour
161
- functional-unit-duration: 1
162
- vcpus-allocated: '1'
163
- vcpus-total: '64'
164
- physical-processor: >-
165
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
166
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
167
- 2.4 GHz
168
- memory-available: '1'
169
- thermal-design-power: '270'
170
- energy-cpu: 0.0028414365818491432
171
- energy: 0.0028414365818491432
172
- operational-carbon: 2.7022061893385354
173
- embodied-carbon: 0.00007616949023199022
174
- carbon: 0.009007607862762558
175
- sci: 32.42738830594521
176
- - timestamp: '2023-11-02T10:35:31.820Z'
177
- cloud-vendor: azure
178
- cpu-util: '0.298'
179
- mem-availableGB: 0.490733568
180
- mem-usedGB: 0.509266432
181
- total-memoryGB: '1'
182
- mem-util: 50.9266432
183
- location: uksouth
184
- cloud-instance-type: Standard_B1s
185
- duration: 300
186
- azure-observation-window: 5 min
187
- azure-observation-aggregation: average
188
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
189
- azure-resource-group: vm1_group
190
- azure-vm-name: vm1
191
- total-embodied-emissions: 1533.12
192
- time-reserved: 300
193
- expected-lifespan: 94348800
194
- resources-reserved: 1
195
- total-resources: 64
196
- grid-carbon-intensity: 951
197
- functional-unit: ''
198
- functional-unit-time: hour
199
- functional-unit-duration: 1
200
- vcpus-allocated: '1'
201
- vcpus-total: '64'
202
- physical-processor: >-
203
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
204
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
205
- 2.4 GHz
206
- memory-available: '1'
207
- thermal-design-power: '270'
208
- energy-cpu: 0.0028400270215236593
209
- energy: 0.0028400270215236593
210
- operational-carbon: 2.700865697469
211
- embodied-carbon: 0.00007616949023199022
212
- carbon: 0.009003139556530775
213
- sci: 32.41130240351079
214
- - timestamp: '2023-11-02T10:35:31.820Z'
215
- cloud-vendor: azure
216
- cpu-util: '0.301'
217
- mem-availableGB: 0.49178214400000003
218
- mem-usedGB: 0.5082178559999999
219
- total-memoryGB: '1'
220
- mem-util: 50.82178559999999
221
- location: uksouth
222
- cloud-instance-type: Standard_B1s
223
- duration: 300
224
- azure-observation-window: 5 min
225
- azure-observation-aggregation: average
226
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
227
- azure-resource-group: vm1_group
228
- azure-vm-name: vm1
229
- total-embodied-emissions: 1533.12
230
- time-reserved: 300
231
- expected-lifespan: 94348800
232
- resources-reserved: 1
233
- total-resources: 64
234
- grid-carbon-intensity: 951
235
- functional-unit: ''
236
- functional-unit-time: hour
237
- functional-unit-duration: 1
238
- vcpus-allocated: '1'
239
- vcpus-total: '64'
240
- physical-processor: >-
241
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
242
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
243
- 2.4 GHz
244
- memory-available: '1'
245
- thermal-design-power: '270'
246
- energy-cpu: 0.0028414365818491432
247
- energy: 0.0028414365818491432
248
- operational-carbon: 2.7022061893385354
249
- embodied-carbon: 0.00007616949023199022
250
- carbon: 0.009007607862762558
251
- sci: 32.42738830594521
252
- - timestamp: '2023-11-02T10:35:31.820Z'
253
- cloud-vendor: azure
254
- cpu-util: '0.298'
255
- mem-availableGB: 0.49178214400000003
256
- mem-usedGB: 0.5082178559999999
257
- total-memoryGB: '1'
258
- mem-util: 50.82178559999999
259
- location: uksouth
260
- cloud-instance-type: Standard_B1s
261
- duration: 300
262
- azure-observation-window: 5 min
263
- azure-observation-aggregation: average
264
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
265
- azure-resource-group: vm1_group
266
- azure-vm-name: vm1
267
- total-embodied-emissions: 1533.12
268
- time-reserved: 300
269
- expected-lifespan: 94348800
270
- resources-reserved: 1
271
- total-resources: 64
272
- grid-carbon-intensity: 951
273
- functional-unit: ''
274
- functional-unit-time: hour
275
- functional-unit-duration: 1
276
- vcpus-allocated: '1'
277
- vcpus-total: '64'
278
- physical-processor: >-
279
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
280
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
281
- 2.4 GHz
282
- memory-available: '1'
283
- thermal-design-power: '270'
284
- energy-cpu: 0.0028400270215236593
285
- energy: 0.0028400270215236593
286
- operational-carbon: 2.700865697469
287
- embodied-carbon: 0.00007616949023199022
288
- carbon: 0.009003139556530775
289
- sci: 32.41130240351079
290
- - timestamp: '2023-11-02T10:35:31.820Z'
291
- cloud-vendor: azure
292
- cpu-util: '0.304'
293
- mem-availableGB: 0.492306432
294
- mem-usedGB: 0.507693568
295
- total-memoryGB: '1'
296
- mem-util: 50.7693568
297
- location: uksouth
298
- cloud-instance-type: Standard_B1s
299
- duration: 300
300
- azure-observation-window: 5 min
301
- azure-observation-aggregation: average
302
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
303
- azure-resource-group: vm1_group
304
- azure-vm-name: vm1
305
- total-embodied-emissions: 1533.12
306
- time-reserved: 300
307
- expected-lifespan: 94348800
308
- resources-reserved: 1
309
- total-resources: 64
310
- grid-carbon-intensity: 951
311
- functional-unit: ''
312
- functional-unit-time: hour
313
- functional-unit-duration: 1
314
- vcpus-allocated: '1'
315
- vcpus-total: '64'
316
- physical-processor: >-
317
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
318
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
319
- 2.4 GHz
320
- memory-available: '1'
321
- thermal-design-power: '270'
322
- energy-cpu: 0.0028428461389389424
323
- energy: 0.0028428461389389424
324
- operational-carbon: 2.7035466781309343
325
- embodied-carbon: 0.00007616949023199022
326
- carbon: 0.00901207615873722
327
- sci: 32.44347417145399
328
- - timestamp: '2023-11-02T10:35:31.820Z'
329
- cloud-vendor: azure
330
- cpu-util: '0.3'
331
- mem-availableGB: 0.49283072000000006
332
- mem-usedGB: 0.50716928
333
- total-memoryGB: '1'
334
- mem-util: 50.716927999999996
335
- location: uksouth
336
- cloud-instance-type: Standard_B1s
337
- duration: 300
338
- azure-observation-window: 5 min
339
- azure-observation-aggregation: average
340
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
341
- azure-resource-group: vm1_group
342
- azure-vm-name: vm1
343
- total-embodied-emissions: 1533.12
344
- time-reserved: 300
345
- expected-lifespan: 94348800
346
- resources-reserved: 1
347
- total-resources: 64
348
- grid-carbon-intensity: 951
349
- functional-unit: ''
350
- functional-unit-time: hour
351
- functional-unit-duration: 1
352
- vcpus-allocated: '1'
353
- vcpus-total: '64'
354
- physical-processor: >-
355
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
356
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
357
- 2.4 GHz
358
- memory-available: '1'
359
- thermal-design-power: '270'
360
- energy-cpu: 0.0028409667287652447
361
- energy: 0.0028409667287652447
362
- operational-carbon: 2.701759359055748
363
- embodied-carbon: 0.00007616949023199022
364
- carbon: 0.009006118428486599
365
- sci: 32.42202634255176
366
- - timestamp: '2023-11-02T10:35:31.820Z'
367
- cloud-vendor: azure
368
- cpu-util: '0.636'
369
- mem-availableGB: 0.5062524928000001
370
- mem-usedGB: 0.49374750719999994
371
- total-memoryGB: '1'
372
- mem-util: 49.374750719999994
373
- location: uksouth
374
- cloud-instance-type: Standard_B1s
375
- duration: 300
376
- azure-observation-window: 5 min
377
- azure-observation-aggregation: average
378
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
379
- azure-resource-group: vm1_group
380
- azure-vm-name: vm1
381
- total-embodied-emissions: 1533.12
382
- time-reserved: 300
383
- expected-lifespan: 94348800
384
- resources-reserved: 1
385
- total-resources: 64
386
- grid-carbon-intensity: 951
387
- functional-unit: ''
388
- functional-unit-time: hour
389
- functional-unit-duration: 1
390
- vcpus-allocated: '1'
391
- vcpus-total: '64'
392
- physical-processor: >-
393
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
394
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
395
- 2.4 GHz
396
- memory-available: '1'
397
- thermal-design-power: '270'
398
- energy-cpu: 0.0029988096470848187
399
- energy: 0.0029988096470848187
400
- operational-carbon: 2.8518679743776625
401
- embodied-carbon: 0.00007616949023199022
402
- carbon: 0.009506480479559648
403
- sci: 34.22332972641473
404
- - timestamp: '2023-11-02T10:35:31.820Z'
405
- cloud-vendor: azure
406
- cpu-util: '0.29500000000000004'
407
- mem-availableGB: 0.509607936
408
- mem-usedGB: 0.490392064
409
- total-memoryGB: '1'
410
- mem-util: 49.039206400000005
411
- location: uksouth
412
- cloud-instance-type: Standard_B1s
413
- duration: 300
414
- azure-observation-window: 5 min
415
- azure-observation-aggregation: average
416
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
417
- azure-resource-group: vm1_group
418
- azure-vm-name: vm1
419
- total-embodied-emissions: 1533.12
420
- time-reserved: 300
421
- expected-lifespan: 94348800
422
- resources-reserved: 1
423
- total-resources: 64
424
- grid-carbon-intensity: 951
425
- functional-unit: ''
426
- functional-unit-time: hour
427
- functional-unit-duration: 1
428
- vcpus-allocated: '1'
429
- vcpus-total: '64'
430
- physical-processor: >-
431
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
432
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
433
- 2.4 GHz
434
- memory-available: '1'
435
- thermal-design-power: '270'
436
- energy-cpu: 0.0028386174579947384
437
- energy: 0.0028386174579947384
438
- operational-carbon: 2.699525202552996
439
- embodied-carbon: 0.00007616949023199022
440
- carbon: 0.008998671240144094
441
- sci: 32.39521646451874
442
- - timestamp: '2023-11-02T10:35:31.820Z'
443
- cloud-vendor: azure
444
- cpu-util: '0.309'
445
- mem-availableGB: 0.5106565120000001
446
- mem-usedGB: 0.48934348799999994
447
- total-memoryGB: '1'
448
- mem-util: 48.934348799999995
449
- location: uksouth
450
- cloud-instance-type: Standard_B1s
451
- duration: 300
452
- azure-observation-window: 5 min
453
- azure-observation-aggregation: average
454
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
455
- azure-resource-group: vm1_group
456
- azure-vm-name: vm1
457
- total-embodied-emissions: 1533.12
458
- time-reserved: 300
459
- expected-lifespan: 94348800
460
- resources-reserved: 1
461
- total-resources: 64
462
- grid-carbon-intensity: 951
463
- functional-unit: ''
464
- functional-unit-time: hour
465
- functional-unit-duration: 1
466
- vcpus-allocated: '1'
467
- vcpus-total: '64'
468
- physical-processor: >-
469
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
470
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
471
- 2.4 GHz
472
- memory-available: '1'
473
- thermal-design-power: '270'
474
- energy-cpu: 0.0028451953934772694
475
- energy: 0.0028451953934772694
476
- operational-carbon: 2.705780819196883
477
- embodied-carbon: 0.00007616949023199022
478
- carbon: 0.009019523295623716
479
- sci: 32.470283864245374
480
- - timestamp: '2023-11-02T10:35:31.820Z'
481
- cloud-vendor: azure
482
- cpu-util: '0.484'
483
- mem-availableGB: 0.5106565120000001
484
- mem-usedGB: 0.48934348799999994
485
- total-memoryGB: '1'
486
- mem-util: 48.934348799999995
487
- location: uksouth
488
- cloud-instance-type: Standard_B1s
489
- duration: 300
490
- azure-observation-window: 5 min
491
- azure-observation-aggregation: average
492
- azure-subscription-id: 9de7e19f-8a18-4e73-9451-45fc74e7d0d3
493
- azure-resource-group: vm1_group
494
- azure-vm-name: vm1
495
- total-embodied-emissions: 1533.12
496
- time-reserved: 300
497
- expected-lifespan: 94348800
498
- resources-reserved: 1
499
- total-resources: 64
500
- grid-carbon-intensity: 951
501
- functional-unit: ''
502
- functional-unit-time: hour
503
- functional-unit-duration: 1
504
- vcpus-allocated: '1'
505
- vcpus-total: '64'
506
- physical-processor: >-
507
- Intel Xeon Platinum 8370C,Intel Xeon Platinum 8272CL,Intel Xeon
508
- 8171M 2.1 GHz,Intel Xeon E5-2673 v4 2.3 GHz,Intel® Xeon® E5-2673 v3
509
- 2.4 GHz
510
- memory-available: '1'
511
- thermal-design-power: '270'
512
- energy-cpu: 0.002927412423351122
513
- energy: 0.002927412423351122
514
- operational-carbon: 2.783969214606917
515
- embodied-carbon: 0.00007616949023199022
516
- carbon: 0.00928015128032383
517
- sci: 33.40854460916579
@@ -1,29 +0,0 @@
1
- name: sci-m
2
- description: simple demo invoking metadata lookup
3
- tags: null
4
- initialize:
5
- models:
6
- - name: cloud-instance-metadata
7
- kind: builtin
8
- graph:
9
- children:
10
- child:
11
- pipeline:
12
- - cloud-instance-metadata
13
- config:
14
- cloud-instance-metadata: null
15
- inputs:
16
- - timestamp: 2023-07-06T00:00
17
- duration: 3600
18
- cloud-vendor: azure
19
- cloud-instance-type: Standard_NC24s_v3
20
- outputs:
21
- - timestamp: 2023-07-06T00:00
22
- duration: 3600
23
- cloud-vendor: azure
24
- cloud-instance-type: Standard_NC24s_v3
25
- vcpus-allocated: '24'
26
- vcpus-total: '28'
27
- physical-processor: Intel Xeon E5-2690 v4
28
- memory-available: '448'
29
- thermal-design-power: '135'
@@ -1,113 +0,0 @@
1
- name: nesting-demo
2
- description: null
3
- tags:
4
- kind: web
5
- complexity: moderate
6
- category: on-premise
7
- initialize:
8
- models:
9
- - name: sci-e
10
- path: '@grnsft/if-models'
11
- model: SciEModel
12
- graph:
13
- children:
14
- child-0:
15
- pipeline:
16
- - sci-e
17
- children:
18
- child-0-1:
19
- pipeline:
20
- - sci-e
21
- config: null
22
- inputs:
23
- - timestamp: 2023-07-06T00:00
24
- duration: 10
25
- cpu-util: 50
26
- energy-network: 0.000811
27
- outputs:
28
- - timestamp: 2023-07-06T00:00
29
- duration: 10
30
- cpu-util: 50
31
- energy-network: 0.000811
32
- energy: 0.000811
33
- child-0-2:
34
- children:
35
- child-0-2-1:
36
- pipeline:
37
- - sci-e
38
- config: null
39
- inputs:
40
- - timestamp: 2023-07-06T00:00
41
- duration: 10
42
- cpu-util: 50
43
- energy-network: 0.000811
44
- outputs:
45
- - timestamp: 2023-07-06T00:00
46
- duration: 10
47
- cpu-util: 50
48
- energy-network: 0.000811
49
- energy: 0.000811
50
- child-0-2-2:
51
- children:
52
- child-1-2-1:
53
- pipeline:
54
- - sci-e
55
- config: null
56
- inputs:
57
- - timestamp: 2023-07-06T00:00
58
- duration: 10
59
- cpu-util: 50
60
- energy-network: 0.000811
61
- outputs:
62
- - timestamp: 2023-07-06T00:00
63
- duration: 10
64
- cpu-util: 50
65
- energy-network: 0.000811
66
- energy: 0.000811
67
- child-1-2-2:
68
- children:
69
- child-1-2-2-1:
70
- pipeline:
71
- - sci-e
72
- config: null
73
- inputs:
74
- - timestamp: 2023-07-06T00:00
75
- duration: 10
76
- cpu-util: 50
77
- energy-network: 0.000811
78
- outputs:
79
- - timestamp: 2023-07-06T00:00
80
- duration: 10
81
- cpu-util: 50
82
- energy-network: 0.000811
83
- energy: 0.000811
84
- child-1-2-2-2:
85
- pipeline:
86
- - sci-e
87
- config: null
88
- inputs:
89
- - timestamp: 2023-07-06T00:00
90
- duration: 10
91
- cpu-util: 50
92
- energy-network: 0.000811
93
- outputs:
94
- - timestamp: 2023-07-06T00:00
95
- duration: 10
96
- cpu-util: 50
97
- energy-network: 0.000811
98
- energy: 0.000811
99
- child-1-2-2-3:
100
- pipeline:
101
- - sci-e
102
- config: null
103
- inputs:
104
- - timestamp: 2023-07-06T00:00
105
- duration: 10
106
- cpu-util: 50
107
- energy-network: 0.000811
108
- outputs:
109
- - timestamp: 2023-07-06T00:00
110
- duration: 10
111
- cpu-util: 50
112
- energy-network: 0.000811
113
- energy: 0.000811
@@ -1,23 +0,0 @@
1
- name: sci-e-demo
2
- description: null
3
- tags: null
4
- initialize:
5
- models:
6
- - name: sci-e
7
- kind: builtin
8
- graph:
9
- children:
10
- child:
11
- pipeline:
12
- - sci-e
13
- config:
14
- sci-e: null
15
- inputs:
16
- - timestamp: 2023-08-06T00:00
17
- duration: 3600
18
- energy-cpu: 0.001
19
- outputs:
20
- - timestamp: 2023-08-06T00:00
21
- duration: 3600
22
- energy-cpu: 0.001
23
- energy: 0.001