This repo takes needs the following to run and provide us with the energy of the Basic Blocks of the executable:
- The name of the executable
- The dis-assembled code of the executable
- The trace of the executable
- 3 Rapl read files : a) the original from a read before the executable is run b) the rapl reads caused by the pass in the executable c) the last from a read after the executable is run
- 2 rapl reads one before and one after the unpassed executable 6)the opcodes csv with opcode weights from intel manuals
and gives us the following as a result:
- a file with all the basic blocks each with a unique id
- a file with the energy of each basic block with the unique id corresponding to the code from the previous file
to run put the necessary files in the run_folder and give the corresponding name to the run_addresses.sh then run ./total.sh
total.sh -> the full script to run the repo : calls all the other scripts from each individual folder
run_addresses.sh -> gives us the addresses of the rapl read functions (the calls performed)
run_opcode.sh -> from the opcodes.csv it gives the opcodes.txt turning the opcodes in the desired format
run_cost.sh -> gives the cost of each rapl read call
run_remover.sh -> removes the overhead cost of the rapl read calls from the energies
run_cleaner.sh -> get the weight of each command
run_divider.sh -> get the energy of each basic object based on the weights
run_breaker.sh -> split basic objects into basic blocks and correspond them with energy
Note
Azure Importer
is an unofficial, not part of the IF standard library. This means the IF core team are not closely monitoring these models to keep them up to date. You should do your own research before implementing them!
The Azure importer model allows you to provide some basic details about an Azure virtual machine and automatically populate your impl
with usage metrics that can then be passed along a model pipeline to calculate energy and carbon impacts.
You can create one using portal.azure.com. You also need to create a metrics application for that virtual machine and assign the relevant permissions.
The Azure Importer uses AzureDefaultCredentials method which is an abstraction for different scenarios of authentication.
- When hosting the IEF Azure Importer on an Azure service, you can provide a managed identity.
- When running the Azure Importer outside of Azure, e.g. on your local machine, you can use an App registration (an App registration is a representation of a technical service principal account; you can view it as an identity for your App on Azure).
The following steps in this tutorial use a service principal. You can learn more at https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app
On the Azure Portal, search for App registrations, then create a new one with default values.
Then create a credential secret for this App registration, to use it for authentication with the Azure Importer => note that secret
Then, on the Overview Tab, copy/paste the client_id and tenant_id for this App registration
Now we have credentials to authenticate to Azure as the service principal (of this App registration)
Next, we need to provide access rights to this service principal to the test VM (or its resource group).
On the IAM Tab of the Resource Group that contains the VM, add a new Role Assignment
We'll need 2 role Assignments:
- Reader
- Monitor Reader
Then Add the service principal you created as a member for the Role assignment
Repeat for the role Monitor Reader
Create a .env
file in the IF project root directory. This is where you can store your Azure authentication details. Your .env
file should look as follows:
AZURE_TENANT_ID: <your-tenant-id>
AZURE_CLIENT_ID: <your-client-id>
AZURE_CLIENT_SECRET: <your-client-secret>
All that remains is to provide the details about your virtual machine in the inputs
field in your impl
.
These are the required fields:
timestamp
: An ISO8601 timestamp indicating the start time for your observation period. We work out yourtimespan
by addingduration
to this initial start time.duration
: Number of seconds your observation period should last. We add this number of seconds totimestamp
to work out when your observation period should stop.azure-observation-window
: The time interval between measurements (temporal resolution) as a string with a value and a unit, e.g.5 mins
. The value and unit must be space-separated.azure-observation-aggregation
: This indicates how you want metrics to be aggregated between eachinterval
. The recommended default isaverage
.azure-subscription-id
: Your Azure subscription ID, e.g. 9cf5e19b-8b18-4c37-9541-55fc47ad70c3azure-resource-group
: Your Azure resource group nameazure-vm-name
: Your virtual machine name
These are all provided as inputs
. You also need to instantiate an azure-importer
model to handle the Azure-specific input
data. Here's what a complete impl
could look like:
name: azure-demo
description: example impl invoking Azure model
initialize:
models:
- name: azure-importer
model: AzureImporterModel
path: '@grnsft/if-unofficial-models'
graph:
children:
child:
pipeline:
- azure-importer
config:
azure-importer:
inputs:
- timestamp: '2023-11-02T10:35:31.820Z'
duration: 3600
azure-observation-window: 5 min
azure-observation-aggregation: 'average'
azure-subscription-id: 9cf5e19b-8b18-4c37-9541-55fc47ad70c3
azure-resource-group: my_group
azure-vm-name: my_vm
This will grab Azure metrics for my_vm
in my_group
for a one hour period beginning at 10:35 UTC on 2nd November 2023, at 5 minute resolution, aggregating data occurring more frequently than 5 minutes by averaging.
The Azure importer model will enrich your impl
with the following data:
duration
: the per-input duration in seconds, calculated fromazure-observation-window
cpu-util
: percentage CPU utilizationcloud-instance-type
: VM instance namelocation
: VM regionmem-availableGB
: Amount of memory not in use by your application, in GB.mem-usedGB
: Amount of memory being used by your application, in GB. Calculated as the difference betweentotal-memoryGB
andmemory-availableGB
.total-memoryGB
: The total memory allocated to your virtual machine, in GB.mem-util
: memory utilized, expressed as a percentage (memory-usedGB
/total-memoryGB
* 100)
These can be used as inputs in other models in the pipeline. Typically, the instance-type
can be used to obtain tdp
data that can then, along with cpu-util
, feed a model such as teads-curve
.
The outputs look as follows:
name: azure-demo
description: example impl invoking Azure model
initialize:
models:
- name: azure-importer
model: AzureImporterModel
path: '@grnsft/if-unofficial-models'
graph:
children:
child:
pipeline:
- azure-importer
config:
azure-importer:
inputs:
- timestamp: '2023-11-02T10:35:31.820Z'
duration: 3600
azure-observation-window: 5 min
azure-observation-aggregation: 'average'
azure-subscription-id: 9cf5e19b-8b18-4c37-9541-55fc47ad70c3
azure-resource-group: my_group
azure-vm-name: my_vm
...