-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
name: dow-msft | ||
description: "https://github.com/Green-Software-Foundation/sci-guide/blob/dev/use-case-submissions/dow-msft-Graph-DB.md" | ||
tags: | ||
kind: db-api | ||
complexity: simple | ||
category: cloud | ||
initialize: | ||
models: | ||
- name: teads-curve # a model that returns an embodied value given the sci embodied attribution equation. | ||
kind: builtin | ||
verbose: false | ||
path: '' | ||
- name: emem # a model that calculates e for memory utilization (0.38 * mem_util = e_mem in kwH) | ||
kind: builtin | ||
path: '' | ||
- name: sci-e # sums e components (can be e_cpu, e_gpu, e_mem, e_network) - in this case emem and e_cpu from teads | ||
kind: builtin | ||
path: '' | ||
- name: sci-m # a model that calculates m from te, tir, el, rr and rtor | ||
kind: builtin | ||
verbose: false | ||
path: '' | ||
- name: sci-o # takes in total e and outputs operational emissions | ||
kind: builtin | ||
verbose: false | ||
path: '' | ||
- name: sci # a model that sums sci-o + sci-m and applies functional unit | ||
kind: builtin | ||
verbose: false | ||
path: '' | ||
# Single observation | ||
graph: | ||
children: | ||
backend: | ||
pipeline: | ||
- teads-curve # tdp & cpu -> energy | ||
- emem # calculates energy used by memory as component of sci-m | ||
- sci-m # duration & config -> embodied | ||
- sci-e # energy & grid-carbon-intensity & embodied -> carbon | ||
- sci-o # takes in total e and outputs operational emissions | ||
- sci # add cpu and memory components and convert to f.unit | ||
config: | ||
teads-curve: # use tdp to derive e-cpu (kwh) | ||
processor: Intel-xeon-platinum-8380 | ||
tdp: 270 | ||
emem: # mem-util * mem-alloc * mem-energy = emem (kwh) | ||
mem-alloc: 32 # GB | ||
mem-energy: 0.38 # wh/GB | ||
sci-m: | ||
te: 1533.12 # kgCO2eq | ||
tir: 3600 # s per hour | ||
el: 94608000 # 3 years in seconds | ||
rr: 1 | ||
tor: 8 | ||
sci-o: | ||
grid-ci: 554 # gCO2e/kWh | ||
sci: | ||
time: '' # signal to convert /s -> /hr | ||
factor: 32000 # factor to convert per time to per f.unit | ||
children: | ||
tiger-database: | ||
observations: | ||
- timestamp: 2023-07-06T00:00 | ||
duration: 1 | ||
cpu-util: 17.12 | ||
mem-util: 19.375 # % of available | ||
tiger-api: # a leaf component | ||
config: | ||
teads-curve: | ||
processor: Intel-xeon-platinum-8270 | ||
tdp: 205 | ||
emem: | ||
mem_alloc: 1.75 | ||
sci-m: | ||
te: 1216.62 | ||
observations: | ||
- timestamp: 2023-08-06T00:00 | ||
duration: 1 | ||
cpu-util: 25 | ||
mem-util: 70 # % of total | ||
neo4j-database: # a leaf component | ||
config: | ||
sci-m: | ||
te: 1216.62 # kgCO2eq | ||
rr: 2 | ||
tor: 64 | ||
sci-o: | ||
grid-ci: 554 # gCO2e/kWh | ||
observations: | ||
- timestamp: 2023-07-06T00:00 | ||
duration: 1 # this data is using span, but the model expects duration | ||
cpu-util: 28.05 | ||
mem-util: 19.375 | ||
neo4j-api: # a leaf component | ||
config: | ||
teads-curve: | ||
processor: Intel-xeon-platinum-8270 | ||
tdp: 205 | ||
emem: | ||
mem-alloc: 1.75 # GB | ||
sci-m: | ||
te: 1216.62 # kgCO2eq | ||
rr: 2 | ||
tor: 64 | ||
observations: | ||
- timestamp: 2023-08-06T00:00 | ||
duration: 1 | ||
cpu-util: 14 | ||
mem-util: 65 | ||
|