diff --git a/README.md b/README.md index 9f4b9d8f..c3e61b7e 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,23 @@ PowerAPI website use [MKDocs](https://www.mkdocs.org/). You can push your changes on `master` branch to deploy them on the website. + +## Local development + +When redacting changes for this documentation, you may want to visualize the +output the way it will be presented in the final website once compiled. + +One way to do so is to: + +1. Install the necessary packages : mkdocs, mkdocs-material, mkdocs-material-extensions +This can be done with: `pip install mkdocs mkdocs-material mkdocs-material-extensions` + +2. Have a local copy of this repository (taking care of *checkout-ing* the right ref) + +3. From the CLI, have this particular repository as PWD + +4. Use mkdocs in order to serve locally (default on http://localhost:8000) +This can be done with: `mkdocs serve -o` + +5. Check the URL it serves to, targets will be rebuild on modifications in the +current directory or in any nested elements (use -W to add paths to be considered for hot reloading) diff --git a/docs/assets/images/reference/sensors/PowerAPI_HWPCSensorOverview.drawio b/docs/assets/images/reference/sensors/PowerAPI_HWPCSensorOverview.drawio new file mode 100644 index 00000000..94e44a12 --- /dev/null +++ b/docs/assets/images/reference/sensors/PowerAPI_HWPCSensorOverview.drawio @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/assets/images/reference/sensors/PowerAPI_HWPCSensorOverview.drawio.svg b/docs/assets/images/reference/sensors/PowerAPI_HWPCSensorOverview.drawio.svg new file mode 100644 index 00000000..35e27def --- /dev/null +++ b/docs/assets/images/reference/sensors/PowerAPI_HWPCSensorOverview.drawio.svg @@ -0,0 +1,4 @@ + + + +
Local server
Local serv...
Storing sensor's reports
Storing sensor's reports
Scrapping program perfomance metrics
Scrapping program perfomance metrics
(Optionnal)
Remote server
(Optionnal...
PowerAPI Sensor
PowerAPI Sensor
Local Filesystem
Local Filesystem
Local program(s)
monitored
Local program(s...
Remote database
Remote database
Sensor Reports
Sensor Reports
\ No newline at end of file diff --git a/docs/getting_started.md b/docs/getting_started.md index 9fd9adfb..5eb168f8 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -1,57 +1,92 @@ # Getting started -If you want to monitor the energy consumption of your process we have some -ready-to-use tools +In this tutorial, we will guide you through the first steps to get started with PowerAPI. +The objective is to get a quick view of the capabilities of PowerAPI, by monitoring a process and getting a quick glimpse at the energy consumption. +A few things are required before we start: -???+ info "Source and Destination" - In order to use any Formula, you need to run a Source and a Destination. The former is used by a Sensor to store metrics. The later allows the Formula to make available the estimations. For starting, you can use [MongoDB](https://hub.docker.com/_/mongo) as Source and [InfluxDB:2.X](https://hub.docker.com/_/influxdb) as Destination by installing them as Docker containers. - For more details about Sources and Destinations please check this [section](reference/database/sources_destinations.md). +- A compatible processor (you can see the compatible CPU architecture [here](./reference/sensors/hwpc-sensor.md#)), and you can look on the following pages to find your CPU architecture: + * For [Intel Processor](https://en.wikipedia.org/wiki/List_of_Intel_processors) + * For [Intel Xeon Processor](https://en.wikipedia.org/wiki/List_of_Intel_Xeon_processors) + * For [AMD Processor](https://en.wikipedia.org/wiki/Table_of_AMD_processors) +- A python installation ready +- Docker & Docker-Compose ready (refer to [this official documentation](https://docs.docker.com/engine/install/) and the [post-install steps](https://docs.docker.com/engine/install/linux-postinstall/) if needed !) +- Root access +- Optional : [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) to proceed by cloning the repository +## Which components to get a complete stack - +## Preparation -## **SmartWatts Formula** +You can either download the archive by cloning the repository or using wget. -!!! note "" - for monitoring the power consumption of your process +=== "git" + ```sh + git clone https://github.com/powerapi-ng/powerapi-ng.github.io.git + cd powerapi-ng.github.io/docs/script/getting-started + ``` -Smartwatts is made for tracking the power consumption of processes on a -machine. -To install Smartwatts on a baremetal server or a PC run [the following -script](script/smartwatts_install.sh) in a Terminal. Please notice that you will need [pip](https://pip.pypa.io/en/stable/installation/) or [docker](https://docs.docker.com/engine/install/) in order to use the Formula. +=== "wget" + ``` + wget -c https://raw.githubusercontent.com/powerapi-ng/powerapi-ng.github.io/refs/heads/master/docs/script/getting_started.tar.gz -O - | tar -xz + cd getting_started + ``` -The script explains what it will do and then pauses before it does it. +At this stage, you will have all the essential files to begin. Let's go through each element in detail. +### Archive content -Please notice that you need a **Linux distribution** in order to use the HWPC Sensor installed by the script as -well as a **comptible Intel** (Sandy Bridge and newer) or **AMD Processor** (Zen). You also need [docker](https://docs.docker.com/engine/install/). **Power/ARM/RISCV are not supported** architectures. HWPC Sensor will **not work on a Virtual Machine**. However, you can install the Formula by hand in a Virtual Machine if need it. +```sh +getting_started/ + |--csv/ + |--formula/ + |----smartwatts-mongodb-csv.json + |--sensor/ + |----hwpc-mongodb.json + |--start.sh + |--start.py + |--stop.sh + |--pretty_print.py + |--docker-compose.yaml + |--.env +``` +#### HWPC-Sensor and SmartWatts Configuration +As described in the [HWPC-Sensor Documentation](./reference/sensors/hwpc-sensor.md#global-parameters) and in the [SmartWatts Documentation](./reference/formulas/smartwatts.md#global-parameters), +several parameters can be set, both globally and for specific Groups monitored for the sensor or the formula. -#### CGroups -If you need to monitor a process or a group of process via SmartWatts by using HWPC Sensor **version 1.2 or older**, you can follow this [tutorial](reference/cgroup/cgroup.md). Please notice that **cgroup V1** is required **only** for HWPC Sensor **version 1.2 or older**. If you need to enable this `cgroup` version please follow this [tutorial](reference/cgroup/cgroup_v1_activation.md). +The provided docker-compose.yaml file uses configuration files and the **.env** to set those parameters. +You can find examples of both those configuration files in the archive under the **formula** and **sensor** directories. - +Once all set, you shall be able to initiate the stack with: + +```sh +python3 start.py +``` + +After the 2 minutes of monitoring, you will be able to see the result inside the **csv** directory. +If you have trouble understanding the output, you can read the [Power Report documentation](./reference/reports/reports.md#power-reports). + +!!! info "Quick results overview" + Only in the context of this testing archive, after the monitoring, you can use the following command to get a pretty print of the result directly inside the terminal. + + ```sh + python3 pretty_print.py + ``` diff --git a/docs/reference/database/sources_destinations.md b/docs/reference/database/sources_destinations.md index fa35cfab..a8f482a9 100644 --- a/docs/reference/database/sources_destinations.md +++ b/docs/reference/database/sources_destinations.md @@ -1,19 +1,23 @@ -# Sources and Destinations +# Storage Options -A PowerAPI Formula uses Sources and Destinations in order to retrieve metrics and store estimations. +Different storage options are available to serve different purpose both for [Sensors](../overview.md#Sensor) and [Formulas](../overview.md#Formula). -For each Source/Destination the parameters to specify are different. For each one of them, -its parameters are specified in following sections. +Storage is needed to save reports produced by each components. +- Sensors store their usage reports +- Formulas retrieve usage reports and store energy consumption reports +- Visualization tools or individuals need to access reports for analysis ## Summary -| Name | Source | Destination | CLI `input`/`ouput` parameter value | JSON `type` tag parameter value | -| ------------- | ----- | ------------- | ------------- | ------------------------------------ | -| MongoDB | Yes | Yes | mongodb | mongodb | -| InfluxDB2 | No | Yes | influxdb2 | influxdb2 | -| CSV | Yes | Yes | csv | csv | -| Socket | Yes | No | socket | socket | -| File Database | Yes | Yes | filedb | filedb | -| Prometheus | No | Yes | prometheus | prometheus | + +The following table defines the existing storage options for Sensors usage reports : + +| Name | CLI `ouput` parameter value | JSON `type` tag parameter value| +| ------------ | --------------------------------------| -------------------------------------------| +| MongoDB | mongodb | mongodb | +| CSV | csv | csv | +| Socket | socket | socket | +| File Database | filedb | filedb | + ## MongoDB @@ -30,7 +34,7 @@ The list of accepted parameters are: |`db` (`database` for `HWPCSensor`) | string | `d` (`D` for `HWPCSensor`) | N/A | Yes | The name of your database | |`collection` | string | `c` (`C` for `HWPCSensor`) | N/A | Yes | The name of the collection inside `db` | |`name` | string | `n` | `"puller_mongodb"` (Source), `pusher_mongodb` (Destination)| No | The related puller/pusher name. This parameter is not used by `HWPCSensor` | -|`model` | string | `m` | `"HWPCReport"` (Source), `PowerReport` (Destination) | No | The Report type stored by the database | +|`model` | string | `m` | `"HWPC Report"` (Source), `Power Report` (Destination) | No | The Report type stored by the database | ### JSON File Excerpt @@ -64,7 +68,7 @@ The list of accepted parameters are: |`org` | string | `g` | N/A | Yes | The name of the organization associated to the bucket | |`tags` | string | `t` | N/A | No | List of metadata keys of the report separated by `,` that will be kept. `sensor` and `target` are always kept as report metadata | |`name` | string | `n` | `"pusher_influxdb2"` | No | The related pusher name | -|`model` | string | `m` | `"PowerReport"` | No | The Report type stored by the database | +|`model` | string | `m` | `"Power Report"` | No | The Report type stored by the database | InfluxDB2 can only be used as a Destination. @@ -75,7 +79,7 @@ Below you find an example of configuration excerpt for this kind of Destination. ```json { - "model": "PowerReport", + "model": "Power Report", "type": "influxdb2", "uri": "http://127.0.0.1", "port": 8086, @@ -100,7 +104,7 @@ The list of accepted parameters are: |`files`(Source)| string | `f` | Empty list | No | The list of input CSV files with the format file1,file2,file3... | |`directory` (Destination and `HWPCSensor`)| string |`d` (`U` for `HWPCSensor`) | Current directory | No |The directory where output CSV files will be written | |`name` | string | `n` | `"puller_csv"` (Source), `"pusher_csv"` (Destination)| No | The related puller/pusher name. This parameter is not used by `HWPCSensor` | -|`model` | string | `m` | `"HWPCReport"` (Source), `"PowerReport"` (Destination) | No | The Report type stored in CSV files. This parameter is not used by `HWPCSensor` | +|`model` | string | `m` | `"HWPC Report"` (Source), `"Power Report"` (Destination) | No | The Report type stored in CSV files. This parameter is not used by `HWPCSensor` | ### JSON File Excerpt @@ -128,7 +132,7 @@ The list of accepted parameters are: |`port` | int | `P` | N/A | Yes | The port of communication | |`uri`/ `host` | int | `U` | N/A | Yes | The IP address of the machine running the socket | |`name` | string | `n` | `"puller_socket"`| No | The related puller name | -|`model` | string | `m` | `"HWPCReport"` | No | The Report type managed by the socket | +|`model` | string | `m` | `"HWPC Report"` | No | The Report type managed by the socket | ### JSON File Excerpt @@ -158,7 +162,7 @@ The list of accepted parameters are: | ------------- | ----- | ------------- | -------------| ---------- | ------------------------------------ | |`filename` | int | `f` | N/A | Yes | The name of the file | |`name` | string | `n` | `"pusher_filedb"` | No | The related pusher name | -|`model` | string | `m` | `"HWPCReport"` (Source) `"PowerReport"` (Destination)| No | The Report type stored in the file | +|`model` | string | `m` | `"HWPC Report"` (Source) `"Power Report"` (Destination)| No | The Report type stored in the file | ### JSON File Excerpt @@ -188,7 +192,7 @@ The list of accepted parameters are: |`metric-name` | string | `M` | N/A | Yes | The exposed metric name | |`metric-description` | string | `d` | `"energy consumption"` | No | The exposed metric description | |`name` | string | `n` | `"pusher_prom"` | No | The related pusher name | -|`model` | string | `m` | `"PowerReport"` | No | The Report type exposed by Prometheus | +|`model` | string | `m` | `"Power Report"` | No | The Report type exposed by Prometheus | Prometheus can only be used as a Destination that monitors reports but they will be not stored by this service. diff --git a/docs/reference/formulas/configuration_files.md b/docs/reference/formulas/configuration_files.md index 62ca1f22..a80a7584 100644 --- a/docs/reference/formulas/configuration_files.md +++ b/docs/reference/formulas/configuration_files.md @@ -11,14 +11,11 @@ The table below shows basic parameters. | `verbose` | `bool` (flag) | `v` |`NOTSET` | Verbose or quiet mode | | `stream` | `bool` (flag) | `s` |`False` | Real time or post-mortem mode | | `sensor-report-sampling-interval` | `int` | N/A | `1000` | The time in milliseconds between two reports (`stream` = `True`) | -| `input` | `string` (Source) | N/A | N/A | Source used as input. More information about Sources and their related parameters can be found [here](../database/sources_destinations.md)| -| `output` | `string` (Destination)| N/A | N/A | Destination used as output. More information about Destinations and their related parameters can be found [here](../database/sources_destinations.md)| +| `input` | `string` | N/A | N/A | SmartWatts input, shall match an existing Sensor output and contain HPWCReports. See [here](./smartwatts.md#smartwatts-inputs) | +| `output` | `string` | N/A | N/A | SmartWatts output to store Power Report. See [here](./smartwatts.md#smartwatts-outputs) | | `pre-processor` | `string` | N/A | N/A | Pre-Processor to modify reports generated by a sensor. More information about Processors and their related parameters can be found [here](../processors/processors.md) | | `post-processor` | `string` | N/A | N/A | Post-Processor to modify reports generated by a formula. More information about Processors and their related parameters can be found [here](../processors/processors.md) | -???+ tip "Sources and Destinations' values" - - Sources: `mongodb`, `csv`, `socket`, `filedb` - - Destinations: `mongodb`, `influxedb`, `influxedb2`, `csv`, `socket`, `filedb`, `prom` ???+ tip "Processors' values" - Pre-Processors: `k8s`, `libvirt` @@ -52,5 +49,5 @@ PowerAPI Formulas use `json` files. These files follow the next template: $formula_parameters } ``` -???+ info "Sources and Destinations' `json` tags" +???+ info "input and output' `json` tags" More information related to `json` tags for each Source/Destination can be found [here](../database/sources_destinations.md) diff --git a/docs/reference/formulas/rapl.md b/docs/reference/formulas/rapl.md index e9f9fa22..4496c7a3 100644 --- a/docs/reference/formulas/rapl.md +++ b/docs/reference/formulas/rapl.md @@ -7,7 +7,7 @@ The RAPL Formula is designed to mesure power consumption of domains (CPU or RAM) in real time. The RAPL Formula takes HWPC Report with RAPL event for each domains. It then -returns the mesured power in a PowerReport for each domain. +returns the mesured power in a Power Report for each domain. This Formula does not perform any other computation as its goal is only to track global power consumption in a more readable way than raw RAPL. @@ -29,7 +29,7 @@ You can use [the following script](../script/rapl_install.sh) to install RAPL Fo ## Usage -For running the RAPL Formula you need: a Source and a Destination, a Sensor that provides `HWPCReports` and a configuration. +For running the RAPL Formula you need: a Source and a Destination, a Sensor that provides `HWPC Reports` and a configuration. ### Source and Destination @@ -42,7 +42,7 @@ docker run -d --name mongo_source_destination -p 27017:27017 mongo ``` ### Sensor -[HWPC Sensor](../sensors/hwpc-sensor.md) is used in order to get `HWPCReports`. Start by installing the HWPC Sensor (see +[HWPC Sensor](../sensors/hwpc-sensor.md) is used in order to get `HWPC Reports`. Start by installing the HWPC Sensor (see [here](../sensors/hwpc-sensor.md#installation)) and start it (see [here](../sensors/hwpc-sensor.md#usage)). @@ -69,7 +69,7 @@ Below an example is provided by using MongoDB as Source and Destination. "stream": true, "input": { "puller": { - "model": "HWPCReport", + "model": "HWPC Report", "type": "mongodb", "uri": "mongodb://127.0.0.1", "db": "test", @@ -79,7 +79,7 @@ Below an example is provided by using MongoDB as Source and Destination. "output": { "pusher_power": { "type": "mongodb", - "model": "PowerReport", + "model": "Power Report", "type": "mongodb", "uri": "mongodb://127.0.0.1", "db": "test", @@ -124,8 +124,8 @@ the installation you use: docker run -t \ --net=host \ powerapi/powerapi --verbose \ - --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ - --output mongodb --model PowerReport --uri mongodb://127.0.0.1 --db test --collection results \ + --input mongodb --model HWPC Report --uri mongodb://127.0.0.1 --db test --collection prep \ + --output mongodb --model Power Report --uri mongodb://127.0.0.1 --db test --collection results \ --disable-dram-formula \ --sensor-report-sampling-interval 500 ``` @@ -134,14 +134,14 @@ the installation you use: ```sh python -m powerapi --verbose \ - --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ - --output mongodb --model PowerReport --uri mongodb://127.0.0.1 --db test --collection results \ + --input mongodb --model HWPC Report --uri mongodb://127.0.0.1 --db test --collection prep \ + --output mongodb --model Power Report --uri mongodb://127.0.0.1 --db test --collection results \ --disable-dram-formula \ --sensor-report-sampling-interval 500 ``` ???+ info "Estimations' Storage" - Your `PowerReports` will be stored on MongoDB. + Your `Power Reports` will be stored on MongoDB. ???+ tip "Using shortcuts for parameters' names" You use `-` instead of `--`. diff --git a/docs/reference/formulas/smartwatts.md b/docs/reference/formulas/smartwatts.md index f8477f85..17c83045 100644 --- a/docs/reference/formulas/smartwatts.md +++ b/docs/reference/formulas/smartwatts.md @@ -1,17 +1,14 @@ # SmartWatts Formula -SmartWatts is a software-defined power meter based on the PowerAPI toolkit. -SmartWatts is a configurable software that can estimate the power consumption of -software in real-time. -SmartWatts needs to receive several metrics provided by -[HWPC Sensor](../sensors/hwpc-sensor.md#events) : +SmartWatts is a configurable Formula that can estimate the power consumption of software in real-time. +SmartWatts needs to receive several metrics available in Sensor's Reports, [HWPC Reports](../reports/reports.md#HWPC-reports) is a compatible Report type produced by HWPC-Sensor (i.e making the necessary metrics available in HWPC Reports): - The Running Average Power Limit (`RAPL`) - `msr` events (`TSC`, `APERF`, `MPERF`) -- `core` events which depend on the Processor Architucture +- `core` events which depend on the Processor Architecture + +These raw metrics are then used as inputs for a power model that estimates the power consumption of each process. These estimations are recorded in [Power Reports](../reports/reports.md#power-reports) -These metrics are then used as inputs for a power model that estimates the power -consumption of each software. The model is calibrated each time a `cpu-error-threshold` is reached by learning a new power model with previous reports. @@ -20,9 +17,13 @@ Software-Defined Power Meter for Containers](https://hal.inria.fr/hal-02470128) ## Installation -You can use the following command to install SmartWatts: +The default installation is done through a Docker container. +The different images can be found on the [Docker Hub](https://hub.docker.com/r/powerapi/smartwatts-formula/tags). + +Alternatively, this installation can be done thanks to Pypi. === "Docker" + ``` docker pull powerapi/smartwatts-formula ``` @@ -34,90 +35,304 @@ You can use the following command to install SmartWatts: ## Usage -For running the SmartWatts Formula you need: a Source and a Destination, a Sensor that provides `HWPCReports` and a configuration. +???+ info "SmartWatts pre-requisites" + As SmartWatts is a formula, it needs to consume compatible usage Reports from a [Sensor](../sensors/hwpc-sensor.md). Make sure you have Reports made available in a supported storage option. -### Source and Destination -For running SmartWatts we are using MongoDB as Source and InfluxDB 2.X as Destination as dockers containers. +For running the SmartWatts Formula you need: -To start a MongoDB instance via the command line +- a valid configuration +- an input storage containing compatible `HWPC Reports` +- an output storage + +### Parameters -```sh -docker run -d --name mongo_source -p 27017:27017 mongo -``` -And a InfluxDB 2.X instance +???+ warning "Hardware dependent values" + Some parameters values depend on your hardware. In particular, `cpu-base-freq`. You can obtain this value from `CPU MHz` field by using `lscpu` command. + +#### Formula global parameters + +This table resumes the parameters needed for any Formula (and thus, for SmartWatts configuration) : +??? info "Global parameters" + + | Parameter | Type | CLI shortcut | Default Value | Description | + | ------------ | ----- | ------------- | ------------- | ------------------------------------ | + | `verbose` | `bool` | `v` |`NOTSET` | Verbose or quiet mode | + | `stream` | `bool` | `s` |`False` | Real time or post-mortem mode | + | `sensor-report-sampling-interval` | `int` | - | `1000` | The time in milliseconds between two reports (`stream` = `True`) | + | `input` | `string` | - | - | SmartWatts input, shall match an existing Sensor output and contain HPWCReports. See [here](./smartwatts.md#smartwatts-inputs) | + | `output` | `string` | - | - | SmartWatts output to store Power Report. See [here](./smartwatts.md#smartwatts-outputs) | + | `pre-processor` | `string` | - | - | Pre-Processor to modify reports generated by a sensor. More information about Processors and their related parameters can be found [here](../processors/processors.md) | + | `post-processor` | `string` | - | - | Post-Processor to modify reports generated by a formula. More information about Processors and their related parameters can be found [here](../processors/processors.md) | + +#### SmartWatts specific parameters + +This table resumes the parameters specific to SmartWatts configuration : +??? info "SmartWatts specific parameters" + + | Parameter | Type | CLI shortcut | Default Value | Description | + | ------------- | ----- | ------------- | ------------- | ------------------------------------ | + |`disable-cpu-formula` | `bool` | - | `false` | Disable CPU Formula | + |`disable-dram-formula` | `bool` | - | `false` | Disable RAM Formula | + |`cpu-rapl-ref-event` | `string` | - | `"RAPL_ENERGY_PKG"` | RAPL event used as reference for the CPU power models | + |`dram-rapl-ref-event` | `string` | - | `"RAPL_ENERGY_DRAM"` | RAPL event used as reference for the DRAM power models | + |`cpu-tdp` | `int` | - | `125` | CPU TDP (in Watt)| + |`cpu-base-clock` | `int` | - | `100` | CPU base clock (in MHz) | + |`cpu-base-freq` | `int` | - | `2100` | CPU base frequency (in MHz), depend of your hardware. You can obtain this value from `CPU MHz` field by using `lscpu` command. | + |`cpu-error-threshold` | `float` | - | `2.0` | Error threshold for the CPU power models (in Watts) | + |`dram-error-threshold` | `float` | - | `2.0` | Error threshold for the DRAM power models (in Watts) | + |`learn-min-samples-required` | `int` | - | `10` | Minimum amount of samples required before trying to learn a power model | + |`learn-history-window-size` | `int` | - | `60` | Size of the history window used to keep samples to learn from | + |`sensor-reports-frequency` | `int` | - | `1000` | The frequency with which measurements are made (in milliseconds) | + +#### SmartWatts Inputs + +As any Formula, SmartWatts needs inputs. +We can choose those among the following list, depending on where your Sensor outputs its Power Reports: + +- [MongoDB](./smartwatts.md#mongodb-input) +- [CSV](./smartwatts.md#csv-input) +- [Socket](./smartwatts.md#socket-input) +- [FileDB](./smartwatts.md#filedb-input) + +##### MongoDB Input + +Table below depicts the different parameters for MongoDB type input: +??? info "MongoDB Input parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ---------- | ------------------------------------ | + | `uri` | string | `u` | - | Yes | The IP address of your MongoDB instance | + | `database` | string | `d` | - | Yes | The name of your database | + | `collection` | string | `c` | - | Yes | The name of the collection inside `db` | + | `name` | string | `n` | puller_mongodb | No | The related puller name | + | `model` | string | `m` | HWPC Report | No | The Report type stored by the database | + +##### CSV Input + +Table below depicts the different parameters for CSV type input: +??? info "CSV Input parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ----------| ------------------------------------ | + | `files` | string | `f` | "" | No | The list of input CSV files with the format "file1,file2,file3..." | | `directory` | string | `d` | "." (Current directory) | No |The directory where output CSV files will be written | + | `name` | string | `n` | puller_csv | No | The related puller name | + | `model` | string | `m` | HWPC Report | No | The Report type stored by the database | + +##### Socket input + +Table below depicts the different parameters for CSV type input: +??? info "Socket input parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ----------| ------------------------------------ | + | `port` | int | `P` | - | Yes | The port of communication | + | `uri` | string | `U` | - | Yes | The IP address of the machine running the socket | + | `name` | string | `n` | puller_socket | No | The related puller name | + | `model` | string | `m` | HWPC Report | No | The Report type stored by the database | + +##### FileDB input + +Table below depicts the different parameters for CSV type input: +??? info "FileDB input parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ----------| ------------------------------------ | + | `filename` | string | `f` | - | yes | Path to the file | + | `name` | string | `n` | puller_filedb| No | The related puller name | + | `model` | string | `m` | HWPC Report | No | The Report type stored by the database | + +#### SmartWatts Outputs + +On the same principle, SmartWatts needs to output its Power Report. +We can choose it among the following list, depending on where your Sensor outputs its Power Reports: + +- [MongoDB](./smartwatts.md#mongodb-output) +- [CSV](./smartwatts.md#csv-output) +- [InfluxDB](./smartwatts.md#influxdb-output) +- [Prometheus](./smartwatts.md#prometheus-output) +- [FileDB](./smartwatts.md#filedb-output) + +##### MongoDB output + +Table below depicts the different parameters for MongoDB type output: +??? info "MongoDB output parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ---------- | ------------------------------------ | + | `uri` | string | `u` | - | Yes | The IP address of your MongoDB instance | + | `database` | string | `d` | - | Yes | The name of your database | + | `collection` | string | `c` | - | Yes | The name of the collection inside `db` | + | `name` | string | `n` | pusher_mongodb | No | The related pusher name | + | `model` | string | `m` | Power Report | No | The Report type stored by the database | + +##### CSV output + +Table below depicts the different parameters for CSV type output: +??? info "CSV output parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ----------| ------------------------------------ | + | `files` | string | `f` | "" | No | The list of input CSV files with the format "file1,file2,file3..." | + | `directory` | string | `d` | "." (Current directory) | No |The directory where output CSV files will be written | + | `name` | string | `n` | pusher_csv | No | The related pusher name | + | `model` | string | `m` | Power Report | No | The Report type stored by the database | + + + +##### InfluxDB output -```sh -docker run -p 8086:8086 -v "/tmp/powerapi-influx/data:/var/lib/influxdb2" -v "/tmp/powerapi-influx/config:/etc/influxdb2" influxdb:2 -``` ???+ tip "Set up influxdb 2.X for the first time" If it is the first time that you are using `influxdb 2.X`, there are several methods (UI, CLI, API) to make a set up. Please check [here](https://docs.influxdata.com/influxdb/v2/get-started/setup/) for more information. - -### Sensor -[HWPC Sensor](../sensors/hwpc-sensor.md) is used in order to get `HWPCReports`. Start by installing the HWPC Sensor (see -[here](../sensors/hwpc-sensor.md#installation)) and start it (see -[here](../sensors/hwpc-sensor.md#usage)). - - -### Parameters - -Besides the [basic parameters](../formulas/configuration_files.md), the following ones are specific to SmartWatts: - -| Parameter | Type | CLI shortcut | Default Value | Description | -| ------------- | ----- | ------------- | ------------- | ------------------------------------ | -|`disable-cpu-formula` | `bool` (flag) | - | `false` | Disable CPU Formula | -|`disable-dram-formula` | `bool` (flag) | - | `false` | Disable RAM Formula | -|`cpu-rapl-ref-event` | `string` | - | `"RAPL_ENERGY_PKG"` | RAPL event used as reference for the CPU power models | -|`dram-rapl-ref-event` | `string` | - | `"RAPL_ENERGY_DRAM"` | RAPL event used as reference for the DRAM power models | -|`cpu-tdp` | `int` | - | `125` | CPU TDP (in Watt)| -|`cpu-base-clock` | `int` | - | `100` | CPU base clock (in MHz) | -|`cpu-base-freq` | `int` | - | `2100` | CPU base frequency (in MHz) | -|`cpu-error-threshold` | `float` | - | `2.0` | Error threshold for the CPU power models (in Watts) | -|`dram-error-threshold` | `float` | - | `2.0` | Error threshold for the DRAM power models (in Watts) | -|`learn-min-samples-required` | `int` | - | `10` | Minimum amount of samples required before trying to learn a power model | -|`learn-history-window-size` | `int` | - | `60` | Size of the history window used to keep samples to learn from | -|`sensor-reports-frequency` | `int` | - | `1000` | The frequency with which measurements are made (in milliseconds) | - -### Running the Formula via CLI parameters +Table below depicts the different parameters for InfluxDB2 type output: +??? info "InfluxDB output parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ---------- | ------------------------------------ | + |`uri` | string | `u` | - | Yes | The IP address of your Influxdb instance. It can contain the port number| + |`db` | string | `d` | - | Yes | The name of your bucket (database) | + |`port` | int | `p` | - | Yes | The port of communication. It is not mandatory if it is indicated in the `uri` | + |`token` | string | `k` | - | Yes | The token for accessing the database. The token owner must have write/read permissions on the bucket | + |`org` | string | `g` | - | Yes | The name of the organization associated to the bucket | + |`tags` | string | `t` | - | No | List of metadata keys of the report separated by `,` that will be kept. `sensor` and `target` are always kept as report metadata | + |`name` | string | `n` | `"pusher_influxdb2"` | No | The related pusher name | + |`model` | string | `m` | `"Power Report"` | No | The Report type stored by the database | + +##### Prometheus output + +Table below depicts the different parameters for Prometheus type output: +??? info "Prometheus output parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ---------- | ------------------------------------ | + |`uri` | string | `u` | `127.0.0.1` | No | The IP address of your Prometheus instance | + |`port` | int | `p` | - | Yes | The port of communication | + |`tags` | string | `t` | - | No | List of metadata keys of the report separated by `,` that will be kept. `sensor` and `target` are always kept as report metadata | + |`metric-name` | string | `M` | - | Yes | The exposed metric name | + |`metric-description` | string | `d` | `"energy consumption"` | No | The exposed metric description | + |`name` | string | `n` | `"pusher_prom"` | No | The related pusher name | + |`model` | string | `m` | `"Power Report"` | No | The Report type exposed by Prometheus | + + +##### FileDB output + +Table below depicts the different parameters for FileDB type output: +??? info "FileDB output parameters" + + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | ------------- | ------------- | ----------| ------------------------------------ | + | `filename` | string | `f` | - | Yes | Path to the file | + | `name` | string | `n` | pusher_filedb | No | The related pusher name | + | `model` | string | `m` | Power Report | No | The Report type stored by the database | + +#### Running the Formula + +You will find below different examples in order to run a Formula, depending on your use case: + +- [Command-Line Interface](#running-the-formula-via-cli-parameters) +- [Environment variables](#running-the-formula-via-environment-variables) +- [Configuration File](#running-the-formula-via-configuration-file) + +!!! tip "Getting Started" + You can also find a complete stack deployment example in the [Getting Started Section](../../getting_started.md) ! + +#### Running the Formula via CLI parameters In order to run the Formula, you can execute one of the following command lines, depending on the installation you use: -=== "Docker" - - ```sh - docker run -t \ - --net=host \ - powerapi/smartwatts-formula --verbose \ - --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ - --output influxdb2 --model PowerReport --uri 127.0.0.1 --port 8086 --db power_consumption --org org_test --token mytoken \ - --cpu-base-freq 1900 \ - --cpu-error-threshold 2.0 \ - --disable-dram-formula \ - --sensor-reports-frequency 1000 - ``` - -=== "Pip" - - ```sh - python -m smartwatts \ - --verbose \ - --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ - --output influxdb2 --model PowerReport --uri 127.0.0.1 --port 8086 --db power_consumption --org org_test --token mytoken\ - --cpu-base-freq 1900 \ - --cpu-error-threshold 2.0 \ - --disable-dram-formula \ - --sensor-reports-frequency 1000 - ``` - -In this configuration we are using MongoDB as source and InfluxDB 2.X as Destination. Some parameters values depend of your hardware. In particular, `cpu-base-freq`. You can obtain this value from `CPU MHz` field by using `lscpu` command. +??? example "Examples using docker" + + === "Docker with MongoDB/InfluxDB2" + + ```sh hl_lines="4 5" + docker run -t \ + --net=host \ + powerapi/smartwatts-formula --verbose \ + --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ + --output influxdb2 --model PowerReport --uri 127.0.0.1 --port 8086 --db power_consumption --org org_test --token mytoken \ + --cpu-base-freq 1900 \ + --cpu-error-threshold 2.0 \ + --disable-dram-formula \ + --sensor-reports-frequency 1000 + ``` + + === "Docker with CSV/InfluxDB2" + + ```sh hl_lines="4 5" + docker run -t \ + --net=host \ + --volume /tmp/powerapi-sensor-reporting:/data \ + powerapi/smartwatts-formula --verbose \ + --input csv --model HWPCReport --files "/data/rapl.csv,/data/msr.csv,/data/core.csv" \ + --output influxdb2 --model PowerReport --uri 127.0.0.1 --port 8086 --db power_consumption --org org_test --token mytoken \ + --cpu-base-freq 1900 \ + --cpu-error-threshold 2.0 \ + --disable-dram-formula \ + --sensor-reports-frequency 1000 + ``` + + === "Docker with CSV/CSV" + + ```sh hl_lines="4 5" + docker run -t \ + --volume /tmp/powerapi-sensor-reporting:/data \ + --volume $(pwd)/power_reports.d:/home/powerapi/power_reports.d + powerapi/smartwatts-formula --verbose \ + --input csv --model HWPCReport --files "/data/rapl.csv,/data/msr.csv,/data/core.csv" \ + --output csv --directory power_reports.d \ + --cpu-base-freq 1900 \ + --cpu-error-threshold 2.0 \ + --disable-dram-formula \ + --sensor-reports-frequency 1000 + ``` + +??? example "Examples using Pip" + + === "Pip with MongoDB/InfluxDB2" + + ```sh hl_lines="3 4" + python -m smartwatts \ + --verbose \ + --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ + --output influxdb2 --model PowerReport --uri 127.0.0.1 --port 8086 --db power_consumption --org org_test --token mytoken \ + --cpu-base-freq 1900 \ + --cpu-error-threshold 2.0 \ + --disable-dram-formula \ + --sensor-reports-frequency 1000 + ``` + + === "Pip with CSV/InfluxDB2" + + ```sh hl_lines="3 4" + python -m smartwatts \ + --verbose \ + --input csv --model HWPCReport --name puller_csv --files "rapl.csv,msr.csv,core.csv" \ + --output influxdb2 --model PowerReport --uri 127.0.0.1 --port 8086 --db power_consumption --org org_test --token mytoken \ + --cpu-base-freq 1900 \ + --cpu-error-threshold 2.0 \ + --disable-dram-formula \ + --sensor-reports-frequency 1000 + ``` + + === "Pip with CSV/CSV" + === `power_reports.d` should be accessible by the user defined in the dockerfile + === You can change permissions with `chmod` + ```sh hl_lines="3 4" + python -m smartwatts \ + --verbose \ + --input csv --model HWPCReport --name puller_csv --files "rapl.csv,msr.csv,core.csv" \ + --output csv --directory power_reports.d \ + --cpu-base-freq 1900 \ + --cpu-error-threshold 2.0 \ + --disable-dram-formula \ + --sensor-reports-frequency 1000 + ``` ???+ info "Estimations' Storage" - Your `PowerReports` will be stored on InfluxDB2. You can watch them in a grafana by using the [following tutorial](../grafana/grafana.md). + Your `Power Reports` will be stored on InfluxDB2. You can watch them in a grafana by using the [following tutorial](../grafana/grafana.md). -???+ tip "Using shortcuts for parameters' names" - You use `-` instead of `--`. -### Running the Formula with Environment Variables +#### Running the Formula via Environment Variables Parameters are defined by using the prefixes `POWERAPI_`, `POWERAPI_INPUT_` and `POWERAPI_OUTPUT_` in the names of Environment Variables. The following conventions are used: @@ -125,103 +340,283 @@ Parameters are defined by using the prefixes `POWERAPI_`, `POWERAPI_INPUT_` and - `POWERAPI_INPUT__` - `POWERAPI_OUTPUT__` -where `PARAMETER_NAME` refers to names of parameters in upper case (e.g., `VERBOSE`, `CPU_BASE_FREQ`, `COLLECTION`) and `COMPONENT_NAME` to the name given to the different Sources and Destinations in upper case (e.g., `PULLER` and `PUSHER_POWER`). +where `PARAMETER_NAME` refers to names of parameters in upper case (e.g., `VERBOSE`, `CPU_BASE_FREQ`, `COLLECTION`) and `COMPONENT_NAME` to the name given to the different input and output in upper case (e.g., `PULLER` and `PUSHER_POWER`). Below you find an example for running the Formula with Docker and Pip: -=== "Docker" - - ```sh - docker run -t \ - --net=host \ - -e POWERAPI_VERBOSE=true \ - -e POWERAPI_STREAM=true \ - -e POWERAPI_CPU_BASE_FREQ=1900 \ - -e POWERAPI_CPU_ERROR_THRESHOLD=2.0 \ - -e POWERAPI_DISABLE_DRAM_FORMULA=true \ - -e POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 \ - -e POWERAPI_INPUT_PULLER_MODEL=HWPCReport \ - -e POWERAPI_INPUT_PULLER_TYPE=mongodb \ - -e POWERAPI_INPUT_PULLER_URI=mongodb://127.0.0.1 \ - -e POWERAPI_INPUT_PULLER_DB=test \ - -e POWERAPI_INPUT_PULLER_COLLECTION=prep \ - -e POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport \ - -e POWERAPI_OUTPUT_PUSHER_POWER_TYPE=influxdb2 \ - -e POWERAPI_OUTPUT_PUSHER_POWER_URI=127.0.0.1 \ - -e POWERAPI_OUTPUT_PUSHER_POWER_PORT=8086 \ - -e POWERAPI_OUTPUT_PUSHER_POWER_DB=power_consumption \ - -e POWERAPI_OUTPUT_PUSHER_POWER_ORG=org_test \ - -e POWERAPI_OUTPUT_PUSHER_POWER_TOKEN=mytoken \ - powerapi/smartwatts-formula - ``` - -=== "Pip" - ```sh - export POWERAPI_VERBOSE=true - export POWERAPI_STREAM=false - export POWERAPI_CPU_BASE_FREQ=1900 - export POWERAPI_CPU_ERROR_THRESHOLD=2.0 - export POWERAPI_DISABLE_DRAM_FORMULA=true - export POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 - export POWERAPI_INPUT_PULLER_MODEL=HWPCReport - export POWERAPI_INPUT_PULLER_TYPE=mongodb - export POWERAPI_INPUT_PULLER_URI=mongodb://127.0.0.1 - export POWERAPI_INPUT_PULLER_DB=test - export POWERAPI_INPUT_PULLER_COLLECTION=prep - export POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport - export POWERAPI_OUTPUT_PUSHER_POWER_TYPE=influxdb2 - export POWERAPI_OUTPUT_PUSHER_POWER_URI=127.0.0.1 - export POWERAPI_OUTPUT_PUSHER_POWER_PORT=8086 - export POWERAPI_OUTPUT_PUSHER_POWER_DB=power_consumption - export POWERAPI_OUTPUT_PUSHER_POWER_ORG=org_test - export POWERAPI_OUTPUT_PUSHER_POWER_TOKEN=mytoken - python -m smartwatts - ``` - -### Running the Formula with a Configuration File - -Below an example is provided by using MongoDB as Source and InfluxDB as Destination. - -```json -{ - "verbose": true, - "stream": true, - "input": { - "puller": { - "model": "HWPCReport", - "type": "mongodb", - "uri": "mongodb://127.0.0.1", - "db": "test", - "collection": "prep" - } - }, - "output": { - "pusher_power": { - "type": "influxdb2", - "uri": "127.0.0.1", - "port": 8086, - "db": "power_consumption", - "org": "org_test", - "token": "mytoken" - } - }, - "cpu-base-freq": 1900, - "cpu-error-threshold": 2.0, - "disable-dram-formula": true, - "sensor-reports-frequency": 1000 -} -``` - -???+ info "Alternative Source or Destination" - If you want to use another Source or Destination, please check the documentation [here](../database/sources_destinations.md) and modify your configuration according to the Source or Destination that you want to use. +??? example "Examples using docker" + + === "Docker with MongoDB/InfluxDB2" + + ```sh hl_lines="9-20" + docker run -t \ + --net=host \ + -e POWERAPI_VERBOSE=true \ + -e POWERAPI_STREAM=true \ + -e POWERAPI_CPU_BASE_FREQ=1900 \ + -e POWERAPI_CPU_ERROR_THRESHOLD=2.0 \ + -e POWERAPI_DISABLE_DRAM_FORMULA=true \ + -e POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 \ + -e POWERAPI_INPUT_PULLER_MODEL=HWPCReport \ + -e POWERAPI_INPUT_PULLER_TYPE=mongodb \ + -e POWERAPI_INPUT_PULLER_URI=mongodb://127.0.0.1 \ + -e POWERAPI_INPUT_PULLER_DB=test \ + -e POWERAPI_INPUT_PULLER_COLLECTION=prep \ + -e POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport \ + -e POWERAPI_OUTPUT_PUSHER_POWER_TYPE=influxdb2 \ + -e POWERAPI_OUTPUT_PUSHER_POWER_URI=127.0.0.1 \ + -e POWERAPI_OUTPUT_PUSHER_POWER_PORT=8086 \ + -e POWERAPI_OUTPUT_PUSHER_POWER_DB=power_consumption \ + -e POWERAPI_OUTPUT_PUSHER_POWER_ORG=org_test \ + -e POWERAPI_OUTPUT_PUSHER_POWER_TOKEN=mytoken \ + powerapi/smartwatts-formula + ``` + + === "Docker with CSV/InfluxDB2" + + ```sh hl_lines="9-19" + docker run -t \ + --net=host \ + -e POWERAPI_VERBOSE=true \ + -e POWERAPI_STREAM=true \ + -e POWERAPI_CPU_BASE_FREQ=1900 \ + -e POWERAPI_CPU_ERROR_THRESHOLD=2.0 \ + -e POWERAPI_DISABLE_DRAM_FORMULA=true \ + -e POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 \ + -e POWERAPI_INPUT_PULLER_MODEL=HWPCReport \ + -e POWERAPI_INPUT_PULLER_TYPE=csv \ + -e POWERAPI_INPUT_PULLER_DIRECTORY=hwpc_reports.d \ + -e POWERAPI_INPUT_PULLER_files="hwpc_report_1.json, hwpc_report_2.json" \ + -e POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport \ + -e POWERAPI_OUTPUT_PUSHER_POWER_TYPE=influxdb2 \ + -e POWERAPI_OUTPUT_PUSHER_POWER_URI=127.0.0.1 \ + -e POWERAPI_OUTPUT_PUSHER_POWER_PORT=8086 \ + -e POWERAPI_OUTPUT_PUSHER_POWER_DB=power_consumption \ + -e POWERAPI_OUTPUT_PUSHER_POWER_ORG=org_test \ + -e POWERAPI_OUTPUT_PUSHER_POWER_TOKEN=mytoken \ + powerapi/smartwatts-formula + ``` + + === "Docker with CSV/CSV" + + ```sh hl_lines="9-15" + docker run -t \ + --net=host \ + -e POWERAPI_VERBOSE=true \ + -e POWERAPI_STREAM=true \ + -e POWERAPI_CPU_BASE_FREQ=1900 \ + -e POWERAPI_CPU_ERROR_THRESHOLD=2.0 \ + -e POWERAPI_DISABLE_DRAM_FORMULA=true \ + -e POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 \ + -e POWERAPI_INPUT_PULLER_MODEL=HWPCReport \ + -e POWERAPI_INPUT_PULLER_TYPE=csv \ + -e POWERAPI_INPUT_PULLER_DIRECTORY=hwpc_reports.d \ + -e POWERAPI_INPUT_PULLER_files="hwpc_report_1.json, hwpc_report_2.json" \ + -e POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport \ + -e POWERAPI_OUTPUT_PUSHER_POWER_TYPE=csv \ + -e POWERAPI_OUTPUT_PUSHER_POWER_DIRECTORY=power_reports.d \ + powerapi/smartwatts-formula + ``` + + +??? example "Examples using pip" + + === "Pip with MongoDB/InfluxDB2" + + ```sh hl_lines="7-18" + export POWERAPI_VERBOSE=true + export POWERAPI_STREAM=false + export POWERAPI_CPU_BASE_FREQ=1900 + export POWERAPI_CPU_ERROR_THRESHOLD=2.0 + export POWERAPI_DISABLE_DRAM_FORMULA=true + export POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 + export POWERAPI_INPUT_PULLER_MODEL=HWPCReport + export POWERAPI_INPUT_PULLER_TYPE=mongodb + export POWERAPI_INPUT_PULLER_URI=mongodb://127.0.0.1 + export POWERAPI_INPUT_PULLER_DB=test + export POWERAPI_INPUT_PULLER_COLLECTION=prep + export POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport + export POWERAPI_OUTPUT_PUSHER_POWER_TYPE=influxdb2 + export POWERAPI_OUTPUT_PUSHER_POWER_URI=127.0.0.1 + export POWERAPI_OUTPUT_PUSHER_POWER_PORT=8086 + export POWERAPI_OUTPUT_PUSHER_POWER_DB=power_consumption + export POWERAPI_OUTPUT_PUSHER_POWER_ORG=org_test + export POWERAPI_OUTPUT_PUSHER_POWER_TOKEN=mytoken + python -m smartwatts + ``` + + === "Pip with CSV/InfluxDB2" + + ```sh hl_lines="7-17" + export POWERAPI_VERBOSE=true + export POWERAPI_STREAM=false + export POWERAPI_CPU_BASE_FREQ=1900 + export POWERAPI_CPU_ERROR_THRESHOLD=2.0 + export POWERAPI_DISABLE_DRAM_FORMULA=true + export POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 + export POWERAPI_INPUT_PULLER_MODEL=HWPCReport \ + export POWERAPI_INPUT_PULLER_TYPE=csv \ + export POWERAPI_INPUT_PULLER_DIRECTORY=hwpc_reports.d \ + export POWERAPI_INPUT_PULLER_files="hwpc_report_1.json, hwpc_report_2.json" \ + export POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport + export POWERAPI_OUTPUT_PUSHER_POWER_TYPE=influxdb2 + export POWERAPI_OUTPUT_PUSHER_POWER_URI=127.0.0.1 + export POWERAPI_OUTPUT_PUSHER_POWER_PORT=8086 + export POWERAPI_OUTPUT_PUSHER_POWER_DB=power_consumption + export POWERAPI_OUTPUT_PUSHER_POWER_ORG=org_test + export POWERAPI_OUTPUT_PUSHER_POWER_TOKEN=mytoken + python -m smartwatts + ``` + + === "Pip with CSV/CSV" + + ```sh hl_lines="7-13" + export POWERAPI_VERBOSE=true + export POWERAPI_STREAM=false + export POWERAPI_CPU_BASE_FREQ=1900 + export POWERAPI_CPU_ERROR_THRESHOLD=2.0 + export POWERAPI_DISABLE_DRAM_FORMULA=true + export POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 + export POWERAPI_INPUT_PULLER_MODEL=HWPCReport \ + export POWERAPI_INPUT_PULLER_TYPE=csv \ + export POWERAPI_INPUT_PULLER_DIRECTORY=hwpc_reports.d \ + export POWERAPI_INPUT_PULLER_files="hwpc_report_1.json, hwpc_report_2.json" \ + export POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport + export POWERAPI_OUTPUT_PUSHER_POWER_TYPE=csv + export POWERAPI_OUTPUT_PUSHER_POWER_DIRECTORY=power_reports.d + python -m smartwatts + ``` + +#### Running the Formula via Configuration File + +Below you find example Configuration Files to use different input/output and how to use it with Docker or Pip: + +??? example "Examples configurations files" + + === "Configuration file using MongoDB/InfluxDB2" + ```json hl_lines="5-21" title="config_file.json" + { + "verbose": true, + "stream": true, + "input": { + "puller": { + "model": "HWPCReport", + "type": "mongodb", + "uri": "mongodb://127.0.0.1", + "db": "test", + "collection": "prep" + } + }, + "output": { + "pusher_power": { + "type": "influxdb2", + "uri": "127.0.0.1", + "port": 8086, + "db": "power_consumption", + "org": "org_test", + "token": "mytoken" + } + }, + "cpu-base-freq": 1900, + "cpu-error-threshold": 2.0, + "disable-dram-formula": true, + "sensor-reports-frequency": 1000 + } + ``` + + === "Configuration file using CSV/InfluxDB2" + ```json hl_lines="5-20" title="config_file.json" + { + "verbose": true, + "stream": true, + "input": { + "puller": { + "model": "HWPCReport", + "type": "csv", + "directory": "hwpc_reports.d", + "files": "hwpc_report_1.json, hwpc_report_2.json", + } + }, + "output": { + "pusher_power": { + "type": "influxdb2", + "uri": "127.0.0.1", + "port": 8086, + "db": "power_consumption", + "org": "org_test", + "token": "mytoken" + } + }, + "cpu-base-freq": 1900, + "cpu-error-threshold": 2.0, + "disable-dram-formula": true, + "sensor-reports-frequency": 1000 + } + ``` + + === "Configuration file using CSV/InfluxDB2" + ```json hl_lines="5-20" title="config_file.json" + { + "verbose": true, + "stream": true, + "input": { + "puller": { + "model": "HWPCReport", + "type": "csv", + "directory": "hwpc_reports.d", + "files": "hwpc_report_1.json, hwpc_report_2.json", + } + }, + "output": { + "pusher_power": { + "type": "influxdb2", + "uri": "127.0.0.1", + "port": 8086, + "db": "power_consumption", + "org": "org_test", + "token": "mytoken" + } + }, + "cpu-base-freq": 1900, + "cpu-error-threshold": 2.0, + "disable-dram-formula": true, + "sensor-reports-frequency": 1000 + } + ``` + + === "Configuration file using CSV/CSV" + ```json hl_lines="5-16" title="config_file.json" + { + "verbose": true, + "stream": true, + "input": { + "puller": { + "model": "HWPCReport", + "type": "csv", + "directory": "hwpc_reports.d", + "files": "hwpc_report_1.json, hwpc_report_2.json", + } + }, + "output": { + "pusher_power": { + "type": "csv", + "directory": "power_reports.d", + } + }, + "cpu-base-freq": 1900, + "cpu-error-threshold": 2.0, + "disable-dram-formula": true, + "sensor-reports-frequency": 1000 + } + ``` Once you have your configuration file, run SmartWatts using one of the following command lines, depending on the installation you use: === "Docker" - ```sh + ```sh hl_lines="4" docker run -t \ --net=host \ -v $(pwd)/config_file.json:/config_file.json \ diff --git a/docs/reference/formulas/smartwatts.md.save b/docs/reference/formulas/smartwatts.md.save index 0b0c79d0..9969a987 100644 --- a/docs/reference/formulas/smartwatts.md.save +++ b/docs/reference/formulas/smartwatts.md.save @@ -39,7 +39,7 @@ You can use [the following script](../script/smartwatts_install.sh) to install S ## Usage -For running the SmartWatts Formula you need: a Source and a Destination, a Sensor that provides `HWPCReports` and a configuration. +For running the SmartWatts Formula you need: a Source and a Destination, a Sensor that provides `HWPC Reports` and a configuration. ### Source and Destination For running SmartWatts we are using MongoDB as Source and InfluxDB as Destination as dockers containers. @@ -57,7 +57,7 @@ docker run -d --name influx_dest -p 8086:8086 influxdb:1.8 ### Sensor -[HWPC Sensor](../sensors/hwpc-sensor.md) is used in order to get `HWPCReports`. Start by installing the HWPC Sensor (see +[HWPC Sensor](../sensors/hwpc-sensor.md) is used in order to get `HWPC Reports`. Start by installing the HWPC Sensor (see [here](../sensors/hwpc-sensor.md#installation)) and start it (see [here](../sensors/hwpc-sensor.md#usage)). @@ -91,7 +91,7 @@ Below an example is provided by using MongoDB as Source and InfluxDB as Destinat "stream": true, "input": { "puller": { - "model": "HWPCReport", + "model": "HWPC Report", "type": "mongodb", "uri": "mongodb://127.0.0.1", "db": "test", @@ -148,8 +148,8 @@ the installation you used: docker run -t \ --net=host \ powerapi/smartwatts-formula --verbose \ - --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ - --output influxdb --model PowerReport --uri 127.0.0.1 --port 8086 --db test_result \ + --input mongodb --model HWPC Report --uri mongodb://127.0.0.1 --db test --collection prep \ + --output influxdb --model Power Report --uri 127.0.0.1 --port 8086 --db test_result \ --cpu-base-freq 1900 \ --cpu-error-threshold 2.0 \ --disable-dram-formula \ @@ -161,8 +161,8 @@ the installation you used: ```sh python -m smartwatts \ --verbose \ - --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ - --output influxdb --model PowerReport --uri 127.0.0.1 --port 8086 --db test_result \ + --input mongodb --model HWPC Report --uri mongodb://127.0.0.1 --db test --collection prep \ + --output influxdb --model Power Report --uri 127.0.0.1 --port 8086 --db test_result \ --cpu-base-freq 1900 \ --cpu-error-threshold 2.0 \ --disable-dram-formula \ @@ -172,7 +172,7 @@ the installation you used: ???+ info "Estimations' Storage" - Your `PowerReports` will be stored on InfluxDB. You can watch them in a grafana by using the [following tutorial](../grafana/grafana.md). + Your `Power Reports` will be stored on InfluxDB. You can watch them in a grafana by using the [following tutorial](../grafana/grafana.md). ???+ tip "Using shortcuts for parameters' names" You use `-` instead of `--`. diff --git a/docs/reference/grafana/grafana.md b/docs/reference/grafana/grafana.md index a25fb024..685e70c7 100644 --- a/docs/reference/grafana/grafana.md +++ b/docs/reference/grafana/grafana.md @@ -2,20 +2,27 @@ Here it is explained how to visualize the power estimation computed by a Formula on a Grafana dashboard to obtain this kind of visualisation: - +alt="viz_by_process" width="1000px"--> + +This screenshot shows the visualisation of power consumption of a `Firefox` web browser and tools used for monitoring (MongoDB, InfluxDB, Sensor, Formula) -This screenshot shows the visualisation of power consumption of a Web browser and tools used for monitoring (Source, Destination, Sensor, Formula) +In this tutorial, we describe how to connect a Formula to a Grafana instance by using InfluxDB 2.X as output for Power Report. +Then, we will see how to configure Grafana to visualize the power estimation computed by the Formula. -In this tutorial, we describe how to connect a Formula to a Grafana instance by using InfluxDB 2.X as Destination. -Then, we will see how to configure Grafana to visualize the power estimation computed by the Formula. +This tutorial assumes that you know how launch a Formula and a Sensor to compute power estimation and that you have an InfluxDB 2.X running on your local machine. -This tutorial assumes that you know how launch a Formula and a Sensor to compute power estimation and that you have an InfluxDB 2.X and a Grafana instances running on your local machine. -The InfluxDB 2.X instance listen on port `8086`. +The InfluxDB 2.X instances listen on port `8086` by default. ## Setup Grafana +The default installation is done through Docker container. +The different images can be found on the [Docker Hub](https://hub.docker.com/r/grafana/grafana) + +Here is an example to deploy the latest image version available. ```sh docker run -d -p 3000:3000 grafana/grafana ``` @@ -24,36 +31,23 @@ After the launch, Grafana will be available at http://localhost:3000. On the sig ## Connect Grafana to the InfluxDB 2.X instance -Connect to your Grafana instance and go to the `"Data sources"`` section (in the configuration part of the side bar). - - - -Click on the `"Add new data source"` button and select `"InfluxDB"`. Enter: - -1. A data source *Name* (here we choose "InfluxDB-2"), -2. A *Query Language*, i.e., `InfluxQL` -3. An instance *URL* (`http://localhost:8086`) -4. A *Custom HTTP Header* called `Authorization` with Value `Token `, where `` is the token provided by InfluxDB 2.X for your organization. -5. A *Database* name, (here we choose `power_consumption`) that is the `db` value of your destination defined in your formula configuration. +Follow [this documentation](https://grafana.com/docs/grafana/latest/datasources/influxdb/#configure-the-data-source) in order to add InfluxDB as a DataSource. +Be carefull to use the documentation matching your Grafana version. -Then click on the `"Save & test"` button. *User* and *Password* are not required as we use a token for authentification. - - - ## Visualize the power consumption on a dashboard in real-time -Go to the `"Dashboard"` section on the side bar and select on `New > New dashboard`. Then click on `+ Add visualisation` Then select `influxdb-2` as data source. +1. Go to the `"Dashboard"` section on the side bar and select on `New > New dashboard` +2. Then click on `+ Add visualisation` +3. Then select the previously added datasource as data source + +![Add Dashboard](../../assets/images/reference/grafana/add_dashboard.png){ width="1000px"} - +alt="add_dashboard" width="1000px"--> -Click on the query edition button (the one with a pencil on it) and write the following query on the `Query` field to request the power estimations from the InfluxDB 2.X measurement: +4. Click on the query edition button (the one with a pencil on it) and write the following query on the `Query` field to request the power estimations from the InfluxDB 2.X measurement: ```sql SELECT power FROM "power_consumption" GROUP BY target @@ -61,12 +55,16 @@ SELECT power FROM "power_consumption" GROUP BY target Then write `$tag_target` on the `ALIAS BY` field to label each graph with the target name - +alt="add_query_by_process" width="600px"--> To display the power consumption in real time, you can update the range of the visualisation to `last 5 minutes` and the `refresh dashboard` parameter to `5s`. This parameter are on the top-right corner of the UI. - +alt="refresh" width="600px"--> diff --git a/docs/reference/overview.md b/docs/reference/overview.md index ffaa567f..db23f6ca 100644 --- a/docs/reference/overview.md +++ b/docs/reference/overview.md @@ -1,63 +1,71 @@ # PowerAPI Overview -The goal of this project is to provide a set of tools to go forward a greener -computing. -The idea is to provide software-defined PowerMeters to mesure the power -consumption of programs. -The core of this project is the [PowerAPI](https://github.com/powerapi-ng/powerapi) toolkit for building -such PowerMeters. - - +This project aims to offer a range of tools to promote greener computing. The focus is on creating software-defined PowerMeters to measure the power consumption of various programs. +At the heart of this initiative is the [PowerAPI](https://github.com/powerapi-ng/powerapi) toolkit, which facilitates the development of these PowerMeters. ## Software PowerMeters -A software PowerMeter is an application built with the PowerAPI components that can -measure the power consumption of software running on a single machine or on a -cluster of machine. +A software PowerMeter is an application built using PowerAPI components, designed to measure the power consumption of software running on a single machine or across a cluster of machines. -The Figure below depicts the global architecture of a software PowerMeter in PowerAPI. +The diagram below illustrates the overall architecture of a PowerMeter within the PowerAPI framework. ![PowerAPI Architecture Overview](../assets/images/reference/overview/global-architecture.jpg){ width="1000px"} +A PowerMeter consists of two essential components: - +- a [Sensor](#Sensor), which collects system usage metrics and generates usage reports. +- a [Formula](#Formula), which applies a computational model to the usage reports, producing power consumption data (in watts). -A PowerMeter has two components, a Sensor and a Formula, used to -produce an estimation of the power consumption of a monitored software. +Additionally, [Preprocessors](./overview.md#Preprocessors) can be utilized to modify usage reports before they are processed by the Formula. ## Sensor -The Sensor is an independent software that collects raw data (metrics) correlated with the power consumption of the -monitored software. +The Sensor is a standalone software tool that gathers basic data related to the power usage of the software it monitors. + +It collects this data by querying the hardware on the same machine where the monitored software runs. The Sensor needs to operate in parallel to the monitored software for the entire duration of its execution. -Data are collected by querying the hardware’s machine that hosts the monitored -software. The sensor must be executed on the same machine as the monitored -software. The data are collected throughout the duration of the software. For -this reason, the sensor must operate in parallel. +The raw data collected is then stored as usage Reports in various formats, either locally or remotely. These formats include CSV, MongoDB, FileDB, and UNIX sockets, among others. -Collected raw data are stored in an external Source to make the data available to -the Formula. This Source may be hosted on an other machine. +### Existing Sensors -### Usage +| Sensor | Documentation | Repository | Description | Supported | +| :---------------: |----------------------|--------------------------|----------------|---------------| +| HWPC | [HWPC Documentation](./sensors/hwpc-sensor.md) | [Github](https://github.com/powerapi-ng/hwpc-sensor) | Hardware Performance Counters monitoring agent for containers | :material-check: Supported | -Currently, PowerAPI proposes one Sensor: [HWPC](sensors/hwpc-sensor.md). -Refer to the Sensor documentation to know how to use it. ## Formula -A Formula is a computational module that computes an estimation of the power -consumption of monitored software from the data collected by the sensor. +A Formula is a computational module that estimates the power consumption of the monitored software using the data collected by the Sensor. + +There are two modes in which a Formula can operate: + +- **Stream mode**: In this mode, the Formula processes data from the Sensor as it is generated, providing real-time insights + +- **Post-mortem mode**: In this mode, the Formula analyzes data that has already been collected by the Sensor during a previous monitoring phase + +### Existing Formulas + +| Formula | Documentation | Repository | Description | Supported | +| :---------------: |----------------------|--------------------------|----------------|---------------| +| SmartWatts | [SmartWatts Documentation](./formulas/smatwatts.md) | [Github](https://github.com/powerapi-ng/smartwatts-formula) | HSmartWatts is a formula for a self-adaptive software-defined power meter based on the PowerAPI framework. | :material-check: Supported | + +## Processors + +Processors allow for the customized filtering and modification of Reports. While optional, they offer additional flexibility, but Software PowerMeters can still function without them. + +The diagram below shows where Processors are integrated into the architecture of a Software PowerMeter. + +![Processor integration in the processing pipeline](../assets/images/reference/processors/processors.jpg) -A Formula has two working modes: +### Preprocessors -- `stream` mode where the Formula read the data from the Sensor as they are - produced (in realtime). +Preprocessors are positioned between the [Sensor](./overview.md#Sensor) and the [Formula](./overview.md#Formula). +Their role is to pre-process usage reports before the power consumption estimations are computed. -- `post-mortem` mode where the Formula analyses the data already collected by the Sensor in a past monitoring phase. +#### Existing Preprocessors -### Usage +| Preprocessor | Documentation | Repository | Description | Supported | +| :---------------: |----------------------|--------------------------|----------------|---------------| +| k8sPreprocessor | [k8sPreprocessor Documentation](./processors/processors.md#k8spreprocessor) | [Github](https://github.com/powerapi-ng/powerapi/tree/master/src/powerapi/processor/pre/k8s) | Add K8S Specific metadata to corresponding Reports | :material-check: Supported | +| libvirt | [libvirtPreprocessor Documentation](.processors/processors.md#libvirt) | [Github](https://github.com/powerapi-ng/powerapi/tree/master/src/powerapi/processor/pre/libvirt) | Replace `libvirt ID` in Reports with `Open Stack UUID` | :material-check: Supported | -Currently, there is one Formula: [SmartWatts](formulas/smartwatts.md). -Refer to the Formula documentation to know how to use it. diff --git a/docs/reference/processors/processors.md b/docs/reference/processors/processors.md index 46c5a715..3e351187 100644 --- a/docs/reference/processors/processors.md +++ b/docs/reference/processors/processors.md @@ -3,8 +3,8 @@ Processors enable customized filtering and/or modifications of `Reports`. There are two kinds of processors: -- `PreProcessors`: They are located between the `Puller` and the `Dispatcher`. They are supposed to pre-process the `HWPCReports` before computing estimations. -- `PostProcessors`: They are located between, the `Formula` and the `Pusher`. They process `PowerReports` before storing them on the `Destination`. +- `PreProcessors`: They are located between the `Puller` and the `Dispatcher`. They are supposed to pre-process the `HWPC Reports` before computing estimations. +- `PostProcessors`: They are located between, the `Formula` and the `Pusher`. They process `Power Reports` before storing them on the output storage option. Figure below depicts where are they introduced in the architecture of a Software `PowerMeters`. @@ -60,8 +60,8 @@ As notice, a `PreProcessor` is defined inside the `pre-processor` group. In this docker run -t \ --net=host \ powerapi/smartwatts-formula --verbose \ - --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ - --output influxdb --model PowerReport --uri 127.0.0.1 --port 8086 --db test_result \ + --input mongodb --model HWPC Report --uri mongodb://127.0.0.1 --db test --collection prep \ + --output influxdb --model Power Report --uri 127.0.0.1 --port 8086 --db test_result \ {==--pre-processor k8s --name p1 --api-mode local --puller puller==} \ --cpu-base-freq 1900 \ --cpu-error-threshold 2.0 \ @@ -74,8 +74,8 @@ As notice, a `PreProcessor` is defined inside the `pre-processor` group. In this ```sh python -m smartwatts \ --verbose \ - --input mongodb --model HWPCReport --uri mongodb://127.0.0.1 --db test --collection prep \ - --output influxdb --model PowerReport --uri 127.0.0.1 --port 8086 --db test_result \ + --input mongodb --model HWPC Report --uri mongodb://127.0.0.1 --db test --collection prep \ + --output influxdb --model Power Report --uri 127.0.0.1 --port 8086 --db test_result \ {==--pre-processor k8s --name p1 --api-mode local --puller puller==} \ --cpu-base-freq 1900 \ --cpu-error-threshold 2.0 \ @@ -96,12 +96,12 @@ As notice, a `PreProcessor` is defined inside the `pre-processor` group. In this -e POWERAPI_CPU_ERROR_THRESHOLD=2.0 \ -e POWERAPI_DISABLE_DRAM_FORMULA=true \ -e POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 \ - -e POWERAPI_INPUT_PULLER_MODEL=HWPCReport \ + -e POWERAPI_INPUT_PULLER_MODEL=HWPC Report \ -e POWERAPI_INPUT_PULLER_TYPE=mongodb \ -e POWERAPI_INPUT_PULLER_URI=mongodb://127.0.0.1 \ -e POWERAPI_INPUT_PULLER_DB=test \ -e POWERAPI_INPUT_PULLER_COLLECTION=prep \ - -e POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport \ + -e POWERAPI_OUTPUT_PUSHER_POWER_MODEL=Power Report \ -e POWERAPI_OUTPUT_PUSHER_POWER_TYPE=influxdb \ -e POWERAPI_OUTPUT_PUSHER_POWER_URI=127.0.0.1 \ -e POWERAPI_OUTPUT_PUSHER_POWER_PORT=8086 \ @@ -121,12 +121,12 @@ As notice, a `PreProcessor` is defined inside the `pre-processor` group. In this export POWERAPI_CPU_ERROR_THRESHOLD=2.0 export POWERAPI_DISABLE_DRAM_FORMULA=true export POWERAPI_SENSOR_REPORTS_FREQUENCY=1000 - export POWERAPI_INPUT_PULLER_MODEL=HWPCReport + export POWERAPI_INPUT_PULLER_MODEL=HWPC Report export POWERAPI_INPUT_PULLER_TYPE=mongodb export POWERAPI_INPUT_PULLER_URI=mongodb://127.0.0.1 export POWERAPI_INPUT_PULLER_DB=test export POWERAPI_INPUT_PULLER_COLLECTION=prep - export POWERAPI_OUTPUT_PUSHER_POWER_MODEL=PowerReport + export POWERAPI_OUTPUT_PUSHER_POWER_MODEL=Power Report export POWERAPI_OUTPUT_PUSHER_POWER_TYPE=influxdb export POWERAPI_OUTPUT_PUSHER_POWER_URI=127.0.0.1 export POWERAPI_OUTPUT_PUSHER_POWER_PORT=8086 @@ -140,7 +140,7 @@ As notice, a `PreProcessor` is defined inside the `pre-processor` group. In this ### Example of Usage with SmartWatts Formula via a Configuration File -Below an example is provided by using MongoDB as Source and InfluxDB as Destination. +Below an example is provided by using MongoDB as input and InfluxDB as output. ```json { @@ -148,7 +148,7 @@ Below an example is provided by using MongoDB as Source and InfluxDB as Destinat "stream": true, "input": { "puller": { - "model": "HWPCReport", + "model": "HWPC Report", "type": "mongodb", "uri": "mongodb://127.0.0.1", "db": "test", diff --git a/docs/reference/reports/basis-reports.schema.json b/docs/reference/reports/basis-reports.schema.json new file mode 100644 index 00000000..ecc20d00 --- /dev/null +++ b/docs/reference/reports/basis-reports.schema.json @@ -0,0 +1,32 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://raw.githubusercontent.com/powerapi-ng/powerapi-ng.github.io/refs/heads/master/docs/reference/reports/basis-reports.schema.json", + "title": "Report Basis", + "description": "A common basis for PowerAPI Reports", + "type": "object", + "properties": { + "timestamp": { + "type": "string", + "minLength": 1 + }, + "sensor": { + "type": "string", + "minLength": 1 + }, + "target": { + "type": "string", + "minLength": 1 + }, + "report_specific_fields": { + "type": "object", + "properties": {}, + "required": [] + } + }, + "required": [ + "timestamp", + "sensor", + "target", + "report_specific_fields" + ] +} diff --git a/docs/reference/reports/reports.md b/docs/reference/reports/reports.md index 2a4470bb..682226ca 100644 --- a/docs/reference/reports/reports.md +++ b/docs/reference/reports/reports.md @@ -2,39 +2,36 @@ PowerAPI toolkit is modular, which means any sensor can be plugged to any monitoring tool as long as the needed information is provided. -We fixed the way of encoding the information. Those encoding are called reports. +We fixed the way of encoding the information. Those encoding are called `Reports`. A report type specify the `json` fields that has to be provided to pass information of a certain kind. All reports types have a common basis: -- `timestamp`: at the format "year-month-dayThour:minutes:seconds". The - timestamp reflects the time at which the information correspond, not the - time the information was computed. - For example if a power consumption of a CPU is measured at time `t` and used to - determine the power consumption of a `cgroup` in a `PowerReport`, this report - has timestamp `t`. +- `timestamp`: at the [format](https://en.wikipedia.org/wiki/ISO_8601) "YYYY-MM-DDThh\:mm\:ss\.sss". The timestamp indicates when the data was collected, not when it was processed. -- `target`: the target is the subject of the measure. For example if - you produce a report that contain information relative to a program, domain, - etc., the target refers to it. It corresponds to the `cgroup` name. +- `target`: The target refers to the entity being measured. For example, if a report contains data related to a specific program, domain, or other entity, the target identifies that subject. In this context, it corresponds to the cgroup name. - `sensor`: it's a name field that is used to identify the reports produced by or computed thanks to a sensor. - Therefore, a report have the following format: +Therefore, a report shall match the following description: - ```json +```json +{ "timestamp":$timestamp, "target":$target, "sensor":$sensor, $report_specific_fields +} +``` + +A valid JSON-Schema to can be found [here](https://raw.githubusercontent.com/powerapi-ng/powerapi-ng.github.io/refs/heads/master/docs/reference/reports/basis-reports.schema.json). - ``` In the following sections we specify the `$report_specific_fields` for each type of report. ## HWPC Reports -A `HWPCReport` is used to report performance counters and RAPL. +A `HWPC Report` is used to report performance counters and RAPL. Its specific fields are the following: - `groups`: a list of subreport that can be of three kind, `rapl`, `core` and @@ -42,19 +39,19 @@ Its specific fields are the following: Each group is represented in the same way: - ```json +```json { $type: { $core_number : { $socket_number : { - List of counter and their value + Each counter name and their measured value for the type/core_number/socket_number considered triplet } } } } - ``` +``` -Below you can find an example of `HWPCReport`: +Below you can find an example of `HWPC Report`: ```json { @@ -123,12 +120,12 @@ Below you can find an example of `HWPCReport`: ## Power Reports -A `PowerReport` is used to transfer information about power consumption estimations. +A `Power Report` is used to transfer information about power consumption estimations. Its specific fields are the following: - `power`: a power value in Watts. -Below you find an exemple of `PowerReport`: +Below you find an exemple of `Power Report`: ```json { diff --git a/docs/reference/sensors/hwpc-sensor.md b/docs/reference/sensors/hwpc-sensor.md index 7dc0bc75..2e26d033 100644 --- a/docs/reference/sensors/hwpc-sensor.md +++ b/docs/reference/sensors/hwpc-sensor.md @@ -3,156 +3,291 @@ HardWare Performance Counter (HWPC) Sensor is a tool that monitors the Intel CPU performance counter and the power consumption of CPU. +The figure below depicts how Sensor works in general : + + +![HWPC Sensor Overview](../../assets/images/reference/sensors/PowerAPI_HWPCSensorOverview.drawio.svg){ width="1000px"} + HWPC Sensor uses the RAPL (Running Average Power Limit) technology to monitor CPU -power consumption. This technology is only available on **Intel Sandy Bridge** -architecture or **newer**. However, Intel Core **Tiger Lake**, **Alder Lake** and **Raptor Lake** families for **desktop** and **mobile** **are not supported**. The sensor is also available on **AMD Zen (1,2,34)**. **Power/ARM/RISCV are not supported** architectures. +power consumption. Keep in mind that this sensor is mainly developed for "server" architectures. +The following table gives a glimpse of RAPL support regarding +most common architectures: + +!!! tip "CPU architecture" + `lscpu` will give you the necessary information about your CPU Architecture + +| Architecture | RAPL Supported | +|--------------|----------------| +| AMD Zen (1, 2, 3, 4) | :material-check: Supported | +| Intel Sandy Bridge and [newer](https://en.wikipedia.org/wiki/List_of_Intel_Core_processors#Core_i_(2nd_gen)) (except for below mentions) | :material-check: Supported | +| Intel Tiger Lake (11th Gen) | :material-close: Not Supported | +| Intel Alder Lake (12th Gen) | :material-close: Not Supported | +| Intel Raptor Lake (13th & 14th Gen) | :material-close: Not Supported | +| Power / ARM / RISCV | :material-close: Not Supported | + +!!! note "HWPC Sensor pre-requisites" + In addition of a supported architecture, there is some pre-requisites: -In particular, it exploits the `perf` API of the **Linux kernel**. It is only available on Linux -and need to have **root access** to be used. If you are using version **1.2 or older**, the sensor requires **cgroup V1**. + - Using a Linux distribution exposing the [perf](https://perf.wiki.kernel.org/index.php/Main_Page) api + - Using Cgroup version 1 when using version 1.2 or older. See [this section](../cgroup/cgroup_v1_activation.md) about its configuration + - Deploying on a physical device as the HWPC Sensor must have access to the real CPU register -**The sensor can not be used in a virtual machine**, it must have access (via Linux -kernel API) to the real CPU register to read performance counter values. + +## Sensor outputs The sensor provides raw values of performance counters as well as `RAPL` raw values in microjoules. ## Installation +The default installation is done through a Docker container. +The different images can be found on the [Docker Hub](https://hub.docker.com/r/powerapi/hwpc-sensor/tags) + +Here is a sample to deploy the latest image version available. === "Docker" - ```bash - docker pull powerapi/hwpc-sensor + ```sh + docker pull powerapi/hwpc-sensor:latest ``` ## Usage -For running the sensor, a Source and a configuration defined via a file or CLI parameters are required. +The following tabs gives a complete overview of available parameters, along with their default values and description. -### Source +??? info "Global Parameters" -For running HWPC Sensor we are using MongoDB as Source as a docker container. + The table below shows the different parameters related to the Sensor global configuration, nested objects (system, container, output) are described in dedicated sections below: -To start a MongoDB instance via the command line + | Parameter | Type | CLI shortcut | Default Value | Description | + | ------------- | ----- | :-------------: | :-------------: | ------------------------------------ | + |`verbose` | `bool` (flag) | `v` | `false` | Verbose or quiet mode | + |`frequency` | `int` | `f` | `1000` | The time in milliseconds between two reports | + |`name` | `string` | `n` | - | Name of the sensor | + |`cgroup_basepath` | `string` | `p` | `/sys/fs/cgroup` (`cgroup` V2) | The base path for `cgroups`. To use `cgroup` V1 `/sys/fs/cgroup/perf_event` needs to be used as value | + |`system` | `dict` | `s` | - | A system group with a monitoring type and a list of system events (cf. [`system` Group Parameters](hwpc-sensor.md#system-and-container-groups-parameters)) | + |`container` | `dict` | `c` | - | A group with a monitoring type and a list of events (cf. [`system` Group Parameters](hwpc-sensor.md#system-and-container-groups-parameters)) | + |`output` | `dict`| `r` | { "type": "csv", "directory": "." } | The [output information](hwpc-sensor.md#output), the Sensor only supports [MongoDB](./hwpc-sensor.md#mongodb-output) (`mongodb`), [CSV](./hwpc-sensor.md#csv-output) (`csv`) and [socket](./hwpc-sensor.md#socket-output) as output. | -``` -docker run -d --name mongo_destination -p 27017:27017 mongo -``` +??? info "Group Parameters (`system` and `container`)" -### Root Parameters + The table below shows the different parameters related to the Sensor `system` and `container` configuration fields: -The table below shows the different parameters related to the Sensor Configuration: + | Parameter | Type | CLI shortcut | Default Value | Description | + | ------------- | ----- | :-------------: | :-------------: | ------------------------------------ | + |`events` | `string` | `e` | - | List of events to be monitored. As CLI parameter, each event is indicated with `e`. The structure of events is given [below](hwpc-sensor.md#events) | + |`monitoring_type` | `string` ( **one of** `MONITOR_ONE_CPU_PER_SOCKET` **or** `MONITOR_ALL_CPU_PER_SOCKET` ) | `o` (flag) | `MONITOR_ALL_CPU_PER_SOCKET` | The monitoring type. If `o` is specified as CLI parameter, `MONITOR_ONE_CPU_PER_SOCKET` is used as type | -| Parameter | Type | CLI shortcut | Default Value | Description | -| ------------- | ----- | ------------- | ------------- | ------------------------------------ | -|`verbose` | `bool` (flag) | `v` | `false` | Verbose or quiet mode | -|`frequency` | `int` | `f` | `1000` | The time in milliseconds between two reports | -|`name` | `string` | `n` | - | Name of the sensor | -|`cgroup_basepath` | `string` | `p` | `/sys/fs/cgroup` (`cgroup` V2) | The base path for `cgroups`. To use `cgroup` V1 `/sys/fs/cgroup/perf_event` needs to be used as value | -|`system` | `dict` | `s` | - | A system group with a monitoring type and a list of system events (cf. [`system` Group Parameters](hwpc-sensor.md#system-and-container-groups-parameters)) | -|`container` | `dict` | `c` | - | A group with a monitoring type and a list of events (cf. [`system` Group Parameters](hwpc-sensor.md#system-and-container-groups-parameters)) | -|`output` | Destination | `r` | ` csv` | The Destination used as output. The Sensor only supports [MongoDB](../database/sources_destinations.md#mongodb) (`mongodb`) and [CSV](../database/sources_destinations.md#csv) (`csv`) as Destination. | +??? info "Group Events" + Table below depicts the different group events for compatible Intel and AMD architectures. + | Architectures | Group | Events | + | ------------- | ----- | ------------- | + |Intel Sandy Bridge and newer, AMD Zen 2 | `rapl` | `RAPL_ENERGY_PKG`, `RAPL_ENERGY_DRAM`| + |Intel Sandy Bridge and newer, AMD Zen 2 | `msr` | `TSC`, `APERF`, `MPERF`| + |Intel Skylake, Whiskey Lake, Coffee Lake| `core` | `CPU_CLK_THREAD_UNHALTED:REF_P`, `CPU_CLK_THREAD_UNHALTED:THREAD_P`, `LLC_MISSES`,`INSTRUCTIONS_RETIRED`| + |Intel Sandy Bridge, Comet Lake | `core` | `CPU_CLK_UNHALTED:REF_P`, `CPU_CLK_UNHALTED:THREAD_P`, `LLC_MISSES`,`INSTRUCTIONS_RETIRED`| + |AMD Zen 2 | `core`| `CYCLES_NOT_IN_HALT`, `RETIRED_INSTRUCTIONS` , `RETIRED_UOPS`| + |AMD Zen 3 | `core`| `CYCLES_NOT_IN_HALT`, `RETIRED_INSTRUCTIONS` , `RETIRED_OPS`| -### `system` and `container` Groups Parameters +### Output -| Parameter | Type | CLI shortcut | Default Value | Description | -| ------------- | ----- | ------------- | ------------- | ------------------------------------ | -|`events` | `string` | `e` | - | List of events to be monitored. As CLI parameter, each event is indicated with `e` | -|`monitoring_type` | `string` (`MONITOR_ONE_CPU_PER_SOCKET`, `MONITOR_ALL_CPU_PER_SOCKET` ) | `o` (flag) | `MONITOR_ALL_CPU_PER_SOCKET` | The monitoring type. If `o` is specified as CLI parameter, `MONITOR_ONE_CPU_PER_SOCKET` is used as type +As precised, three kinds of outputs are supported: Socket, MongoDB and CSV files. -### Events +??? info "MongoDB Output" -Table below depicts the different group events for compatible Intel and AMD architectures. + Table below depicts the different parameters for MongoDB type output with HWPC Sensor: -| Architectures | Group | Events | -| ------------- | ----- | ------------- | -|Intel Sandy Bridge and newer, AMD Zen 2 | `rapl` | `RAPL_ENERGY_PKG`, `RAPL_ENERGY_DRAM`| -|Intel Sandy Bridge and newer, AMD Zen 2 | `msr` | `TSC`, `APERF`, `MPERF`| -|Intel Skylake, Whiskey Lake, Coffe Lake| `core` | `CPU_CLK_THREAD_UNHALTED:REF_P`, `CPU_CLK_THREAD_UNHALTED:THREAD_P`, `LLC_MISSES`,`INSTRUCTIONS_RETIRED`| -|Intel Sandy Bridge, Comet Lake | `core` | `CPU_CLK_UNHALTED:REF_P`, `CPU_CLK_UNHALTED:THREAD_P`, `LLC_MISSES`,`INSTRUCTIONS_RETIRED`| -|AMD Zen 2 | `core`| `CYCLES_NOT_IN_HALT`, `RETIRED_INSTRUCTIONS` , `RETIRED_UOPS`| -|AMD Zen 3 | `core`| `CYCLES_NOT_IN_HALT`, `RETIRED_INSTRUCTIONS` , `RETIRED_OPS`| + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | :-------------: | :-------------: | :----------: | ------------------------------------ | + | `uri` | string | `U` | - | Yes | The IP address of your MongoDB instance | + | `database` | string | `D` | - | Yes | The name of your database | + | `collection` | string | `C` | - | Yes | The name of the collection inside `db` | +??? info "CSV Output" -### Running the Sensor with a Configuration File + Table below depicts the different parameters for CSV type output: -```json -{ - "name": "sensor", - "verbose": true, - "frequency": 500, - "output": { - "type": "mongodb", - "uri": "mongodb://127.0.0.1", - "database": "db_sensor", - "collection": "report_0" - }, - "system": { - "rapl": { - "events": ["RAPL_ENERGY_PKG"], - "monitoring_type": "MONITOR_ONE_CPU_PER_SOCKET" - }, - "msr": { - "events": ["TSC", "APERF", "MPERF"] - } - }, - "container": { - "core": { - "events": [ - "CPU_CLK_THREAD_UNHALTED:REF_P", - "CPU_CLK_THREAD_UNHALTED:THREAD_P", - "LLC_MISSES", - "INSTRUCTIONS_RETIRED" - ] - } - } -} -``` - -Once you have your configuration file, run HWPC Sensor using one of the following command lines, depending on the installation you use: + | Parameter | Type | CLI shortcut | Default Value | Mandatory | Description | + | ------------- | ----- | :-------------: | :-------------: | :----------:| ------------------------------------ | + | `directory` | string | `U` | "." (Current directory) | No |The directory where output CSV files will be written | -=== "Docker" +??? info "Socket Output" - ```sh - docker run --rm \ - --net=host \ - --privileged \ - --pid=host \ - -v /sys:/sys \ - -v /var/lib/docker/containers:/var/lib/docker/containers:ro \ - -v /tmp/powerapi-sensor-reporting:/reporting \ - -v $(pwd):/srv \ - -v $(pwd)/config_file.json:/config_file.json \ - powerapi/hwpc-sensor --config-file /config_file.json - ``` + Table below depicts the different parameters for Socket type output: -### Running the Sensor via CLI parameters + | Parameter | Type | CLI shortcut | Default Value | Mandatory | DQuoteescription | + | ------------- | ----- | :-------------: | :-------------: | :----------:| ------------------------------------ | + | `uri` | string | `U` | - | Yes | The IP address of the machine running the socket | + | `port` | int | `P` | - | Yes | The port of communication | + +### Running the Sensor with a Configuration File -In order to run the Sensor without a configuration file, run HWPC Sensor using one of the following command lines, depending on the installation you use: +The following snippets describe the configuration file of an HWPC Sensor instance, two examples are provided for possible outputs: + +!!! example "Examples for an Intel Processor, using a Configuration File" + + === "MongoDB Output" + + ```json hl_lines="5-10" title="config_file.json" + { + "name": "sensor", + "verbose": true, + "frequency": 500, + "output": { + "type": "mongodb", + "uri": "mongodb://127.0.0.1", + "database": "db_sensor", + "collection": "report_0" + }, + "system": { + "rapl": { + "events": ["RAPL_ENERGY_PKG"], + "monitoring_type": "MONITOR_ONE_CPU_PER_SOCKET" + }, + "msr": { + "events": ["TSC", "APERF", "MPERF"] + } + }, + "container": { + "core": { + "events": [ + "CPU_CLK_THREAD_UNHALTED:REF_P", + "CPU_CLK_THREAD_UNHALTED:THREAD_P", + "LLC_MISSES", + "INSTRUCTIONS_RETIRED" + ] + } + } + } + ``` + + === "CSV Output" + + ```json hl_lines="5-8" title="config_file.json" + { + "name": "sensor", + "verbose": true, + "frequency": 500, + "output": { + "type": "csv", + "directory": "hwpc_reports" + }, + "system": { + "rapl": { + "events": ["RAPL_ENERGY_PKG"], + "monitoring_type": "MONITOR_ONE_CPU_PER_SOCKET" + }, + "msr": { + "events": ["TSC", "APERF", "MPERF"] + } + }, + "container": { + "core": { + "events": [ + "CPU_CLK_THREAD_UNHALTED:REF_P", + "CPU_CLK_THREAD_UNHALTED:THREAD_P", + "LLC_MISSES", + "INSTRUCTIONS_RETIRED" + ] + } + } + } + ``` + + === "Socket Output" + + ```json hl_lines="5-9" title="config_file.json" + { + "name": "sensor", + "verbose": true, + "frequency": 500, + "output": { + "type": "socket", + "uri": "http://127.0.0.1", + "port": "9876" + }, + "system": { + "rapl": { + "events": ["RAPL_ENERGY_PKG"], + "monitoring_type": "MONITOR_ONE_CPU_PER_SOCKET" + }, + "msr": { + "events": ["TSC", "APERF", "MPERF"] + } + }, + "container": { + "core": { + "events": [ + "CPU_CLK_THREAD_UNHALTED:REF_P", + "CPU_CLK_THREAD_UNHALTED:THREAD_P", + "LLC_MISSES", + "INSTRUCTIONS_RETIRED" + ] + } + } + } + ``` + +The following CLI command shows how to use this configuration file in the deployment of an HWPC Sensor instance as a Docker container : === "Docker" - ```sh - docker run --rm \ - --net=host \ - --privileged \ - --pid=host \ - -v /sys:/sys \ - -v /var/lib/docker/containers:/var/lib/docker/containers:ro \ - -v /tmp/powerapi-sensor-reporting:/reporting \ - -v $(pwd):/srv \ - powerapi/hwpc-sensor \ - -n "$(hostname -f)" \ - -r "mongodb" -U "mongodb://127.0.0.1" -D "db_sensor" -C "report_0" \ - -s "rapl" -o -e "RAPL_ENERGY_PKG" \ - -s "msr" -e "TSC" -e "APERF" -e "MPERF" \ - -c "core" -e "CPU_CLK_THREAD_UNHALTED:REF_P" -e "CPU_CLK_THREAD_UNHALTED:THREAD_P" -e "LLC_MISSES" -e "INSTRUCTIONS_RETIRED" + ```sh + docker run --rm \ + --net=host \ + --privileged \ + --pid=host \ + -v /sys:/sys \ + -v /var/lib/docker/containers:/var/lib/docker/containers:ro \ + -v /tmp/powerapi-sensor-reporting:/reporting \ + -v $(pwd):/srv \ + -v $(pwd)/config_file.json:/config_file.json \ + powerapi/hwpc-sensor --config-file /config_file.json ``` +### Running the Sensor via CLI parameters - -???+ info "Reports' Storage" - Your [`HWPCReports`](../reports/reports.md#hwpc-reports) will be stored on MongoDB. - -???+ tip "CLI parameters' names" +The following CLI command shows how to launch an instance of HWPC Sensor with the same configuration as [above](hwpc-sensor.md#running-the-sensor-with-a-configuration-file), again two example are provided for both possible output: + +!!! example "Examples using a CLI Parameters" + + === "CLI with MongoDB Output" + + ```sh + docker run --rm \ + --net=host \ + --privileged \ + --pid=host \ + -v /sys:/sys \ + -v /var/lib/docker/containers:/var/lib/docker/containers:ro \ + -v /tmp/powerapi-sensor-reporting:/reporting \ + -v $(pwd):/srv \ + powerapi/hwpc-sensor \ + -n "$(hostname -f)" \ + -r "mongodb" -U "mongodb://127.0.0.1" -D "db_sensor" -C "report_0" \ + -s "rapl" -o -e "RAPL_ENERGY_PKG" \ + -s "msr" -e "TSC" -e "APERF" -e "MPERF" \ + -c "core" -e "CPU_CLK_THREAD_UNHALTED:REF_P" -e "CPU_CLK_THREAD_UNHALTED:THREAD_P" -e "LLC_MISSES" -e "INSTRUCTIONS_RETIRED" + ``` + + === "Docker with CSV output" + + ```sh + docker run --rm \ + --net=host \ + --privileged \ + --pid=host \ + -v /sys:/sys \ + -v /var/lib/docker/containers:/var/lib/docker/containers:ro \ + -v /tmp/powerapi-sensor-reporting:/reporting \ + -v $(pwd):/srv \ + powerapi/hwpc-sensor \ + -n "$(hostname -f)" \ + -r "csv" -U "hwpc_reports" \ + -s "rapl" -o -e "RAPL_ENERGY_PKG" \ + -s "msr" -e "TSC" -e "APERF" -e "MPERF" \ + -c "core" -e "CPU_CLK_THREAD_UNHALTED:REF_P" -e "CPU_CLK_THREAD_UNHALTED:THREAD_P" -e "LLC_MISSES" -e "INSTRUCTIONS_RETIRED" + ``` + +!!! tip "CLI parameters' names" You can only use shortcuts. diff --git a/docs/script/getting_started.tar.gz b/docs/script/getting_started.tar.gz new file mode 100644 index 00000000..dbcad45e Binary files /dev/null and b/docs/script/getting_started.tar.gz differ diff --git a/docs/script/getting_started/.env b/docs/script/getting_started/.env new file mode 100644 index 00000000..e69de29b diff --git a/docs/script/getting_started/cpu.csv b/docs/script/getting_started/cpu.csv new file mode 100644 index 00000000..69a5281c --- /dev/null +++ b/docs/script/getting_started/cpu.csv @@ -0,0 +1,1857 @@ +Manufacturer,Family,Name,Base frequency,TDP +Intel,Sandy bridge,Intel(R) Core(TM) i7-2720QM Processor,2.20 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2540M Processor,2.60 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2300 Processor,2.80 ,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2400 Processor,3.10,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2400S Processor,2.50 ,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2500 Processor,3.30 ,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2500K Processor,3.30 ,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2500S Processor,2.70 ,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2500T Processor,2.30 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2600 Processor,3.40 ,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2600K Processor,3.40 ,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2600S Processor,2.80 ,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2630QM Processor,2.00 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2310M Processor,2.10,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2410M Processor,2.30 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2820QM Processor,2.30 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2520M Processor,2.50 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2620M Processor,2.70 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2920XM Processor Extreme Edition,2.50 ,55 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1220,3.10,80 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1225,3.10,95 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1230,3.20 ,80 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1235,3.20 ,95 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1240,3.30 ,80 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1245,3.30 ,95 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1260L,2.40 ,45 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1270,3.40 ,80 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1275,3.40 ,95 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1280,3.50 ,95 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1220L,2.20 ,20 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G530,2.40 ,65 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G530T,2.00 ,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G540,2.50 ,65 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G540T,2.10,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G550,2.60 ,65 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G550T,2.20 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2100 Processor,3.10,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2100T Processor,2.50 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2102 Processor,3.10,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2120 Processor,3.30 ,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2120T Processor,2.60 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2130 Processor,3.40 ,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2312M Processor,2.10,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2330E Processor,2.20 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2330M Processor,2.20 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2350M Processor,2.30 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2370M Processor,2.40 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2310 Processor,2.90 ,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2320 Processor,3.00 ,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2390T Processor,2.70 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2430M Processor,2.40 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2450M Processor,2.50 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2510E Processor,2.50 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2635QM Processor,2.00 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2640M Processor,2.80 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2670QM Processor,2.20 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2675QM Processor,2.20 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2710QE Processor,2.10,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2760QM Processor,2.40 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2860QM Processor,2.50 ,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2960XM Processor Extreme Edition,2.70 ,55 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G620,2.60 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G620T,2.20 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G622,2.60 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G630,2.70 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G630T,2.30 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G632,2.70 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G640,2.80 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G640T,2.40 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G840,2.80 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G850,2.90 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G860,3.00 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G870,3.10,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2629M Processor,2.10,25 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2649M Processor,2.30 ,25 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2657M Processor,1.60 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2617M Processor,1.50 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2677M Processor,1.80 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2637M Processor,1.70 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2537M Processor,1.40 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2557M Processor,1.70 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2357M Processor,1.30 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2655LE Processor,2.20 ,25 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2310E Processor,2.10,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2715QE Processor,2.10,45 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2610UE Processor,1.50 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2340UE Processor,1.30 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2515E Processor,2.50 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2377M Processor,1.50 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2405S Processor,2.50 ,65 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2105 Processor,3.10,65 W +Intel,Sandy bridge,Intel(R) Xeon(R) Processor E3-1290,3.60 ,95 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor B940,2.00 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor B950,2.10,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor 957,1.20 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B810,1.60 ,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B810E,1.60 ,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 847E,1.10,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 827E,1.40 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2467M Processor,1.60 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G440,1.60 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2125 Processor,3.30 ,65 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B710,1.60 ,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B800,1.50 ,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 787,1.30 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 857,1.20 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2367M Processor,1.40 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B840,1.90 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor 967,1.30 ,17 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor B960,2.20 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2435M Processor,2.40 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i7-2700K Processor,3.50 ,95 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 807UE,1.00 ,10 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G460,1.80 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor B970,2.30 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor 977,1.40 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 797,1.40 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 867,1.30 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B815,1.60 ,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B720,1.70 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2450P Processor,3.20 ,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2380P Processor,3.10,95 W +Intel,Sandy bridge,Intel(R) Core(TM) i5-2550K Processor,3.40 ,95 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G860T,2.60 ,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 877,1.40 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B820,1.70 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor 987,1.50 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 807,1.50 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G555,2.70 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G645,2.90 ,65 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor 997,1.60 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor 887,1.50 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G465,1.90 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor G645T,2.50 ,35 W +Intel,Sandy bridge,Intel(R) Pentium(R) Processor B980,2.40 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2365M Processor,1.40 ,17 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2328M Processor,2.20 ,35 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor B830,1.80 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2375M Processor,1.50 ,17 W +Intel,Sandy bridge,Intel(R) Celeron(R) Processor G470,2.00 ,35 W +Intel,Sandy bridge,Intel(R) Core(TM) i3-2348M Processor,2.30 ,35 W +Intel,Kaby Lake R,Intel(R) Core(TM) i7-8550U Processor,1.80 ,15 W +Intel,Kaby Lake R,Intel(R) Core(TM) i5-8250U Processor,1.60 ,15 W +Intel,Kaby Lake R,Intel(R) Core(TM) i7-8650U Processor,1.90 ,15 W +Intel,Kaby Lake R,Intel(R) Core(TM) i5-8350U Processor,1.70 ,15 W +Intel,Kaby Lake R,Intel(R) Core(TM) i3-8130U Processor,2.20 ,15 W +Intel,Kaby Lake R,Intel(R) Pentium(R) Gold Processor 4417U,2.30 ,15 W +Intel,Kaby Lake R,Intel(R) Celeron(R) Processor 3867U,1.80 ,15 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3920XM Processor Extreme Edition,2.90 ,55 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3820QM Processor,2.70 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3720QM Processor,2.60 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3520M Processor,2.90 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3360M Processor,2.80 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3320M Processor,2.60 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3667U Processor,2.00 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3610QM Processor,2.30 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3615QM Processor,2.30 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3612QM Processor,2.10,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3427U Processor,1.80 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3330 Processor,3.00 ,77 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3330S Processor,2.70 ,65 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3450 Processor,3.10,77 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3450S Processor,2.80 ,65 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3475S Processor,2.90 ,65 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3550 Processor,3.30 ,77 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3550S Processor,3.00 ,65 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3570K Processor,3.40 ,77 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3570T Processor,2.30 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3770K Processor,3.50 ,77 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3770S Processor,3.10,65 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3770T Processor,2.50 ,45 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2120,3.10,55 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3240 Processor,3.40 ,55 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3225 Processor,3.30 ,55 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3220 Processor,3.30 ,55 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3220T Processor,2.80 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3217UE Processor,1.60 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3217U Processor,1.80 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3120ME Processor,2.40 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3110M Processor,2.40 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3570S Processor,3.10,65 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3570 Processor,3.40 ,77 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3470T Processor,2.90 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3610ME Processor,2.70 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3317U Processor,1.70 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3210M Processor,2.50 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3615QE Processor,2.30 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3612QE Processor,2.10,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3610QE Processor,2.30 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3555LE Processor,2.50 ,25 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3517UE Processor,1.70 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3517U Processor,1.90 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3770 Processor,3.40 ,77 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1290 v2,3.70 ,87 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1280 v2,3.60 ,69 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1275 v2,3.50 ,77 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1270 v2,3.50 ,69 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1265L v2,2.50 ,45 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1245 v2,3.40 ,77 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1240 v2,3.40 ,69 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1230 v2,3.30 ,69 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1225 v2,3.20 ,77 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1220 v2,3.10,69 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E3-1220L v2,2.30 ,17 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2100T,2.60 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3240T Processor,2.90 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3470S Processor,2.90 ,65 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3470 Processor,3.20 ,77 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3350P Processor,3.10,69 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3840QM Processor,2.80 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3740QM Processor,2.70 ,45 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2130,3.20 ,55 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3210 Processor,3.20 ,55 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2020T,2.50 ,35 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2020,2.90 ,55 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2010,2.80 ,55 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor G1610,2.60 ,55 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor G1620,2.70 ,55 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor G1610T,2.30 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3940XM Processor Extreme Edition,3.00 ,55 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2120T,2.70 ,35 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor 2020M,2.40 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3540M Processor,3.00 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3380M Processor,2.90 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3340M Processor,2.70 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3687U Processor,2.10,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3437U Processor,1.90 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3632QM Processor,2.20 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3630QM Processor,2.40 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3635QM Processor,2.40 ,45 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3120M Processor,2.50 ,35 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor 2117U,1.80 ,17 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1020M,2.10,35 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1037U,1.80 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3229Y Processor,1.40 ,13 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3339Y Processor,1.50 ,13 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3439Y Processor,1.50 ,13 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3689Y Processor,1.50 ,13 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor 2129Y,1.10,10 W +Intel,Ivy bridge,Intel(R) Core(TM) i7-3537U Processor,2.00 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3337U Processor,1.80 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3230M Processor,2.60 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3227U Processor,1.90 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3130M Processor,2.60 ,35 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor 2030M,2.50 ,35 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1000M,1.80 ,35 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1007U,1.50 ,17 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1020E,2.20 ,35 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1047UE,1.40 ,17 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 927UE,1.50 ,17 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3250 Processor,3.50 ,55 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3250T Processor,3.00 ,35 W +Intel,Ivy bridge,Intel(R) Core(TM) i3-3245 Processor,3.40 ,55 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2140,3.30 ,55 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2030T,2.60 ,35 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor G2030,3.00 ,55 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1019Y,1.00 ,10 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor 2127U,1.90 ,17 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1017U,1.60 ,17 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor 1005M,1.90 ,35 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-2850 v2,2.30 ,105 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-2870 v2,2.30 ,130 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-2880 v2,2.50 ,130 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-2890 v2,2.80 ,155 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-4809 v2,1.90 ,105 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-4820 v2,2.00 ,105 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-4830 v2,2.20 ,105 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-4850 v2,2.30 ,105 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-4860 v2,2.60 ,130 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-4870 v2,2.30 ,130 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-4890 v2,2.80 ,155 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-8850 v2,2.30 ,105 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-8857 v2,3.00 ,130 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-8870 v2,2.30 ,130 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-8880L v2,2.20 ,105 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-8880 v2,2.50 ,130 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-8890 v2,2.80 ,155 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-8891 v2,3.20 ,155 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-8893 v2,3.40 ,155 W +Intel,Ivy bridge,Intel(R) Xeon(R) Processor E7-4880 v2,2.50 ,130 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3340 Processor,3.10,77 W +Intel,Ivy bridge,Intel(R) Core(TM) i5-3340S Processor,2.80 ,65 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor G1630,2.80 ,55 W +Intel,Ivy bridge,Intel(R) Celeron(R) Processor G1620T,2.40 ,35 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor 1405 v2,1.40 ,40 W +Intel,Ivy bridge,Intel(R) Pentium(R) Processor A1018,2.10,35 W +Intel,Haswell,Intel(R) Core(TM) i5-4430 Processor,3.00 ,84 W +Intel,Haswell,Intel(R) Core(TM) i5-4430S Processor,2.70 ,65 W +Intel,Haswell,Intel(R) Core(TM) i5-4440 Processor,3.10,84 W +Intel,Haswell,Intel(R) Core(TM) i5-4440S Processor,2.80 ,65 W +Intel,Haswell,Intel(R) Core(TM) i5-4570 Processor,3.20 ,84 W +Intel,Haswell,Intel(R) Core(TM) i5-4570S Processor,2.90 ,65 W +Intel,Haswell,Intel(R) Core(TM) i5-4570T Processor,2.90 ,35 W +Intel,Haswell,Intel(R) Core(TM) i5-4670 Processor,3.40 ,84 W +Intel,Haswell,Intel(R) Core(TM) i5-4670K Processor,3.40 ,84 W +Intel,Haswell,Intel(R) Core(TM) i5-4670S Processor,3.10,65 W +Intel,Haswell,Intel(R) Core(TM) i5-4670T Processor,2.30 ,45 W +Intel,Haswell,Intel(R) Core(TM) i7-4765T Processor,2.00 ,35 W +Intel,Haswell,Intel(R) Core(TM) i7-4770 Processor,3.40 ,84 W +Intel,Haswell,Intel(R) Core(TM) i7-4770K Processor,3.50 ,84 W +Intel,Haswell,Intel(R) Core(TM) i7-4770S Processor,3.10,65 W +Intel,Haswell,Intel(R) Core(TM) i7-4770T Processor,2.50 ,45 W +Intel,Haswell,Intel(R) Core(TM) i3-4130 Processor,3.40 ,54 W +Intel,Haswell,Intel(R) Core(TM) i3-4130T Processor,2.90 ,35 W +Intel,Haswell,Intel(R) Core(TM) i3-4150 Processor,3.50 ,54 W +Intel,Haswell,Intel(R) Core(TM) i3-4150T Processor,3.00 ,35 W +Intel,Haswell,Intel(R) Core(TM) i3-4160 Processor,3.60 ,54 W +Intel,Haswell,Intel(R) Core(TM) i3-4160T Processor,3.10,35 W +Intel,Haswell,Intel(R) Core(TM) i3-4170 Processor,3.70 ,54 W +Intel,Haswell,Intel(R) Core(TM) i3-4350 Processor,3.60 ,54 W +Intel,Haswell,Intel(R) Core(TM) i3-4350T Processor,3.10,35 W +Intel,Haswell,Intel(R) Core(TM) i3-4360 Processor,3.70 ,54 W +Intel,Haswell,Intel(R) Core(TM) i3-4360T Processor,3.20 ,35 W +Intel,Haswell,Intel(R) Core(TM) i3-4370 Processor,3.80 ,54 W +Intel,Haswell,Intel(R) Core(TM) i7-4771 Processor,3.50 ,84 W +Intel,Haswell,Intel(R) Core(TM) i3-4330 Processor,3.50 ,54 W +Intel,Haswell,Intel(R) Core(TM) i3-4330T Processor,3.00 ,35 W +Intel,Haswell,Intel(R) Core(TM) i3-4340 Processor,3.60 ,54 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3220,3.00 ,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3220T,2.60 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3420,3.20 ,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3420T,2.70 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3430,3.30 ,53 W +Intel,Haswell,Intel(R) Core(TM) i5-4460T Processor,1.90 ,35 W +Intel,Haswell,Intel(R) Core(TM) i5-4590T Processor,2.00 ,35 W +Intel,Haswell,Intel(R) Celeron(R) Processor G1830,2.80 ,53 W +Intel,Haswell,Intel(R) Celeron(R) Processor G1820,2.70 ,53 W +Intel,Haswell,Intel(R) Celeron(R) Processor G1820T,2.40 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3450,3.40 ,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3450T,2.90 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3440,3.30 ,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3440T,2.80 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3240,3.10,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3240T,2.70 ,35 W +Intel,Haswell,Intel(R) Celeron(R) Processor G1850,2.90 ,53 W +Intel,Haswell,Intel(R) Celeron(R) Processor G1840,2.80 ,53 W +Intel,Haswell,Intel(R) Celeron(R) Processor G1840T,2.50 ,35 W +Intel,Haswell,Intel(R) Core(TM) i7-4790 Processor,3.60 ,84 W +Intel,Haswell,Intel(R) Core(TM) i7-4790S Processor,3.20 ,65 W +Intel,Haswell,Intel(R) Core(TM) i7-4790T Processor,2.70 ,45 W +Intel,Haswell,Intel(R) Core(TM) i5-4690 Processor,3.50 ,84 W +Intel,Haswell,Intel(R) Core(TM) i5-4690S Processor,3.20 ,65 W +Intel,Haswell,Intel(R) Core(TM) i5-4690T Processor,2.50 ,45 W +Intel,Haswell,Intel(R) Core(TM) i7-4785T Processor,2.20 ,35 W +Intel,Haswell,Intel(R) Core(TM) i5-4590 Processor,3.30 ,84 W +Intel,Haswell,Intel(R) Core(TM) i5-4590S Processor,3.00 ,65 W +Intel,Haswell,Intel(R) Core(TM) i5-4460 Processor,3.20 ,84 W +Intel,Haswell,Intel(R) Core(TM) i5-4460S Processor,2.90 ,65 W +Intel,Haswell,Intel(R) Core(TM) i3-4370T Processor,3.30 ,35 W +Intel,Haswell,Intel(R) Core(TM) i3-4170T Processor,3.20 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3258,3.20 ,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3460,3.50 ,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3460T,3.00 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3250,3.20 ,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3250T,2.80 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3260,3.30 ,53 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3260T,2.90 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3470,3.60 ,53 W +Intel,Haswell,Intel(R) Core(TM) i3-4010U Processor,1.70 ,15 W +Intel,Haswell,Intel(R) Core(TM) i7-4650U Processor,1.70 ,15 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1225 v3,3.20 ,84 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1275 v3,3.50 ,84 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1268L v3,2.30 ,45 W +Intel,Haswell,Intel(R) Core(TM) i5-4570TE Processor,2.70 ,35 W +Intel,Haswell,Intel(R) Core(TM) i7-4700EQ Processor,2.40 ,47 W +Intel,Haswell,Intel(R) Core(TM) i5-4402EC Processor,2.50 ,27 W +Intel,Haswell,Intel(R) Core(TM) i7-4700EC Processor,2.70 ,43 W +Intel,Haswell,Intel(R) Core(TM) i7-4702EC Processor,2.00 ,27 W +Intel,Haswell,Intel(R) Core(TM) i7-4770TE Processor,2.30 ,45 W +Intel,Haswell,Intel(R) Core(TM) i5-4400E Processor,2.70 ,37 W +Intel,Haswell,Intel(R) Core(TM) i3-4100E Processor,2.40 ,37 W +Intel,Haswell,Intel(R) Core(TM) i3-4102E Processor,1.60 ,25 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2000E,2.20 ,37 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2002E,1.50 ,25 W +Intel,Haswell,Intel(R) Core(TM) i5-4402E Processor,1.60 ,25 W +Intel,Haswell,Intel(R) Core(TM) i5-4300U Processor,1.90 ,15 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2980U,1.60 ,15 W +Intel,Haswell,Intel(R) Core(TM) i3-4330TE Processor,2.40 ,35 W +Intel,Haswell,Intel(R) Pentium(R) Processor G3320TE,2.30 ,35 W +Intel,Haswell,Intel(R) Celeron(R) Processor G1820TE,2.20 ,35 W +Intel,Haswell,Intel(R) Core(TM) i3-4110E Processor,2.60 ,37 W +Intel,Haswell,Intel(R) Core(TM) i3-4112E Processor,1.80 ,25 W +Intel,Haswell,Intel(R) Core(TM) i5-4410E Processor,2.90 ,37 W +Intel,Haswell,Intel(R) Core(TM) i5-4422E Processor,1.80 ,25 W +Intel,Haswell,Intel(R) Core(TM) i3-4340TE Processor,2.60 ,35 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2628L v3,2.00 ,75 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2609 v3,1.90 ,85 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2648L v3,1.80 ,75 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2658 v3,2.20 ,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2680 v3,2.50 ,120 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2608L v3,2.00 ,52 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2618L v3,2.30 ,75 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2620 v3,2.40 ,85 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2640 v3,2.60 ,90 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-1428L v3,2.00 ,65 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2408L v3,1.80 ,45 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2418L v3,2.00 ,50 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2428L v3,1.80 ,55 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2438L v3,1.80 ,70 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4648 v3,1.70 ,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2658A v3,2.20 ,105 W +Intel,Haswell,Intel(R) Core(TM) i5-4200H Processor,2.80 ,47 W +Intel,Haswell,Intel(R) Core(TM) i5-4250U Processor,1.30 ,15 W +Intel,Haswell,Intel(R) Core(TM) i5-4260U Processor,1.40 ,15 W +Intel,Haswell,Intel(R) Core(TM) i5-4350U Processor,1.40 ,15 W +Intel,Haswell,Intel(R) Core(TM) i5-4360U Processor,1.50 ,15 W +Intel,Haswell,Intel(R) Core(TM) i3-4000M Processor,2.40 ,37 W +Intel,Haswell,Intel(R) Core(TM) i3-4005U Processor,1.70 ,15 W +Intel,Haswell,Intel(R) Core(TM) i3-4100U Processor,1.80 ,15 W +Intel,Haswell,Intel(R) Core(TM) i7-4550U Processor,1.50 ,15 W +Intel,Haswell,Intel(R) Core(TM) i7-4700HQ Processor,2.40 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4700MQ Processor,2.40 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4702HQ Processor,2.20 ,37 W +Intel,Haswell,Intel(R) Core(TM) i7-4702MQ Processor,2.20 ,37 W +Intel,Haswell,Intel(R) Core(TM) i7-4800MQ Processor,2.70 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4900MQ Processor,2.80 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4930MX Processor Extreme Edition,3.00 ,57 W +Intel,Haswell,Intel(R) Core(TM) i5-4200U Processor,1.60 ,15 W +Intel,Haswell,Intel(R) Core(TM) i7-4500U Processor,1.80 ,15 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2955U,1.40 ,15 W +Intel,Haswell,Intel(R) Core(TM) i5-4200Y Processor,1.40 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i3-4010Y Processor,1.30 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i3-4158U Processor,2.00 ,28 W +Intel,Haswell,Intel(R) Core(TM) i5-4258U Processor,2.40 ,28 W +Intel,Haswell,Intel(R) Core(TM) i5-4288U Processor,2.60 ,28 W +Intel,Haswell,Intel(R) Core(TM) i7-4558U Processor,2.80 ,28 W +Intel,Haswell,Intel(R) Core(TM) i3-4100M Processor,2.50 ,37 W +Intel,Haswell,Intel(R) Core(TM) i5-4300M Processor,2.60 ,37 W +Intel,Haswell,Intel(R) Core(TM) i5-4200M Processor,2.50 ,37 W +Intel,Haswell,Intel(R) Core(TM) i7-4600M Processor,2.90 ,37 W +Intel,Haswell,Intel(R) Core(TM) i3-4012Y Processor,1.50 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i3-4020Y Processor,1.50 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i5-4202Y Processor,1.60 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i5-4210Y Processor,1.50 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i5-4300Y Processor,1.60 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i5-4302Y Processor,1.60 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i7-4600U Processor,2.10,15 W +Intel,Haswell,Intel(R) Core(TM) i7-4610Y Processor,1.70 ,11.5 W +Intel,Haswell,Intel(R) Pentium(R) Processor 3556U,1.70 ,15 W +Intel,Haswell,Intel(R) Pentium(R) Processor 3560Y,1.20 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i5-4330M Processor,2.80 ,37 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2950M,2.00 ,37 W +Intel,Haswell,Intel(R) Pentium(R) Processor 3550M,2.30 ,37 W +Intel,Haswell,Intel(R) Core(TM) i3-4110M Processor,2.60 ,37 W +Intel,Haswell,Intel(R) Core(TM) i5-4210H Processor,2.90 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4710HQ Processor,2.50 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4710MQ Processor,2.50 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4712HQ Processor,2.30 ,37 W +Intel,Haswell,Intel(R) Core(TM) i7-4712MQ Processor,2.30 ,37 W +Intel,Haswell,Intel(R) Core(TM) i7-4720HQ Processor,2.60 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4722HQ Processor,2.40 ,37 W +Intel,Haswell,Intel(R) Core(TM) i7-4810MQ Processor,2.80 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4910MQ Processor,2.90 ,47 W +Intel,Haswell,Intel(R) Core(TM) i7-4940MX Processor Extreme Edition,3.10,57 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2957U,1.40 ,15 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2961Y,1.10,11.5 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2981U,1.60 ,15 W +Intel,Haswell,Intel(R) Pentium(R) Processor 3558U,1.70 ,15 W +Intel,Haswell,Intel(R) Pentium(R) Processor 3561Y,1.20 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i5-4310U Processor,2.00 ,15 W +Intel,Haswell,Intel(R) Core(TM) i5-4340M Processor,2.90 ,37 W +Intel,Haswell,Intel(R) Core(TM) i7-4610M Processor,3.00 ,37 W +Intel,Haswell,Intel(R) Core(TM) i5-4310M Processor,2.70 ,37 W +Intel,Haswell,Intel(R) Core(TM) i5-4210M Processor,2.60 ,37 W +Intel,Haswell,Intel(R) Pentium(R) Processor 3560M,2.40 ,37 W +Intel,Haswell,Intel(R) Celeron(R) Processor 2970M,2.20 ,37 W +Intel,Haswell,Intel(R) Core(TM) i7-4510U Processor,2.00 ,15 W +Intel,Haswell,Intel(R) Core(TM) i5-4210U Processor,1.70 ,15 W +Intel,Haswell,Intel(R) Core(TM) i3-4120U Processor,2.00 ,15 W +Intel,Haswell,Intel(R) Core(TM) i3-4030U Processor,1.90 ,15 W +Intel,Haswell,Intel(R) Core(TM) i3-4025U Processor,1.90 ,15 W +Intel,Haswell,Intel(R) Core(TM) i5-4220Y Processor,1.60 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i3-4030Y Processor,1.60 ,11.5 W +Intel,Haswell,Intel(R) Core(TM) i7-4578U Processor,3.00 ,28 W +Intel,Haswell,Intel(R) Core(TM) i5-4308U Processor,2.80 ,28 W +Intel,Haswell,Intel(R) Core(TM) i5-4278U Processor,2.60 ,28 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1220 v3,3.10,80 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1230 v3,3.30 ,80 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1240 v3,3.40 ,80 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1270 v3,3.50 ,80 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1245 v3,3.40 ,84 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1271 v3,3.60 ,80 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1241 v3,3.50 ,80 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1231 v3,3.40 ,80 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1276 v3,3.60 ,84 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1246 v3,3.50 ,84 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1226 v3,3.30 ,84 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2695 v3,2.30 ,120 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2697 v3,2.60 ,145 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2650 v3,2.30 ,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2660 v3,2.60 ,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2670 v3,2.30 ,120 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2690 v3,2.60 ,135 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2687W v3,3.10,160 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-1620 v3,3.50 ,140 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-1650 v3,3.50 ,140 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-1660 v3,3.00 ,140 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2603 v3,1.60 ,85 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2630 v3,2.40 ,85 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1220L v3,1.10,13 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1230L v3,1.80 ,25 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1280 v3,3.60 ,82 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1265L v3,2.50 ,45 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1285 v3,3.60 ,84 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1285L v3,3.10,65 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1275L v3,2.70 ,45 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1281 v3,3.70 ,82 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1240L v3,2.00 ,25 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1286 v3,3.70 ,84 W +Intel,Haswell,Intel(R) Xeon(R) Processor E3-1286L v3,3.20 ,65 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2683 v3,2.00 ,120 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2698 v3,2.30 ,135 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2699 v3,2.30 ,145 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2643 v3,3.40 ,135 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2650L v3,1.80 ,65 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-1630 v3,3.70 ,140 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-1680 v3,3.20 ,140 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2623 v3,3.00 ,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2630L v3,1.80 ,55 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2637 v3,3.50 ,135 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-2667 v3,3.20 ,135 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-4809 v3,2.00 ,115 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-4820 v3,1.90 ,115 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-4830 v3,2.10,115 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-4850 v3,2.20 ,115 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-8860 v3,2.20 ,140 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-8867 v3,2.50 ,165 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-8870 v3,2.10,140 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-8880 v3,2.30 ,150 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-8880L v3,2.00 ,115 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-8890 v3,2.50 ,165 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-8891 v3,2.80 ,165 W +Intel,Haswell,Intel(R) Xeon(R) Processor E7-8893 v3,3.20 ,140 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4610 v3,1.70 ,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4620 v3,2.00 ,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4627 v3,2.60 ,135 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4640 v3,1.90 ,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4650 v3,2.10,105 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4655 v3,2.90 ,135 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4660 v3,2.10,120 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4667 v3,2.00 ,135 W +Intel,Haswell,Intel(R) Xeon(R) Processor E5-4669 v3,2.10,135 W +Intel,Skylake,Intel(R) Core(TM) i7-7800X X-series Processor,3.50 ,140 W +Intel,Skylake,Intel(R) Core(TM) i9-7900X X-series Processor,3.30 ,140 W +Intel,Skylake,Intel(R) Core(TM) i7-7820X X-series Processor,3.60 ,140 W +Intel,Skylake,Intel(R) Core(TM) i9-7920X X-series Processor,2.90 ,140 W +Intel,Skylake,Intel(R) Core(TM) i9-7940X X-series Processor,3.10,165 W +Intel,Skylake,Intel(R) Core(TM) i9-7960X X-series Processor,2.80 ,165 W +Intel,Skylake,Intel(R) Core(TM) i9-7980XE Extreme Edition Processor,2.60 ,165 W +Intel,Skylake,Intel(R) Core(TM) i9-9820X X-series Processor,3.30 ,165 W +Intel,Skylake,Intel(R) Core(TM) i7-9800X X-series Processor,3.80 ,165 W +Intel,Skylake,Intel(R) Core(TM) i9-9960X X-series Processor,3.10,165 W +Intel,Skylake,Intel(R) Core(TM) i9-9900X X-series Processor,3.50 ,165 W +Intel,Skylake,Intel(R) Core(TM) i9-9940X X-series Processor,3.30 ,165 W +Intel,Skylake,Intel(R) Core(TM) i9-9980XE Extreme Edition Processor,3.00 ,165 W +Intel,Skylake,Intel(R) Core(TM) i9-9920X X-series Processor,3.50 ,165 W +Intel,Skylake,Intel(R) Xeon(R) W-3175X Processor,3.10,255 W +Intel,Skylake,Intel(R) Pentium(R) Processor G4400,3.30 ,54 W +Intel,Skylake,Intel(R) Core(TM) i5-6500T Processor,2.50 ,35 W +Intel,Skylake,Intel(R) Core(TM) i5-6500 Processor,3.20 ,65 W +Intel,Skylake,Intel(R) Core(TM) i5-6400 Processor,2.70 ,65 W +Intel,Skylake,Intel(R) Core(TM) i5-6400T Processor,2.20 ,35 W +Intel,Skylake,Intel(R) Core(TM) i5-6600 Processor,3.30 ,65 W +Intel,Skylake,Intel(R) Core(TM) i5-6600T Processor,2.70 ,35 W +Intel,Skylake,Intel(R) Core(TM) i5-6600K Processor,3.50 ,91 W +Intel,Skylake,Intel(R) Core(TM) i7-6700K Processor,4.00 ,91 W +Intel,Skylake,Intel(R) Core(TM) i7-6700 Processor,3.40 ,65 W +Intel,Skylake,Intel(R) Core(TM) i7-6700T Processor,2.80 ,35 W +Intel,Skylake,Intel(R) Q170 Chipset,, +Intel,Skylake,Intel(R) Q150 Chipset,, +Intel,Skylake,Intel(R) H110 Chipset,, +Intel,Skylake,Intel(R) Z170 Chipset,, +Intel,Skylake,Intel(R) B150 Chipset,, +Intel,Skylake,Intel(R) H170 Chipset,, +Intel,Skylake,Intel(R) Pentium(R) Processor G4400T,2.90 ,35 W +Intel,Skylake,Intel(R) Pentium(R) Processor G4500T,3.00 ,35 W +Intel,Skylake,Intel(R) Core(TM) i3-6300T Processor,3.30 ,35 W +Intel,Skylake,Intel(R) Core(TM) i3-6100 Processor,3.70 ,51 W +Intel,Skylake,Intel(R) Pentium(R) Processor G4500,3.50 ,51 W +Intel,Skylake,Intel(R) Core(TM) i3-6300 Processor,3.80 ,51 W +Intel,Skylake,Intel(R) Pentium(R) Processor G4520,3.60 ,51 W +Intel,Skylake,Intel(R) Core(TM) i3-6320 Processor,3.90 ,51 W +Intel,Skylake,Intel(R) Core(TM) i3-6100T Processor,3.20 ,35 W +Intel,Skylake,Intel(R) Celeron(R) Processor G3920,2.90 ,51 W +Intel,Skylake,Intel(R) Celeron(R) Processor G3900T,2.60 ,35 W +Intel,Skylake,Intel(R) Celeron(R) Processor G3900,2.80 ,51 W +Intel,Skylake,Intel(R) Core(TM) i5-6402P Processor,2.80 ,65 W +Intel,Skylake,Intel(R) Core(TM) i5-6585R Processor,2.80 ,65 W +Intel,Skylake,Intel(R) Core(TM) i5-6685R Processor,3.20 ,65 W +Intel,Skylake,Intel(R) Core(TM) i7-6785R Processor,3.30 ,65 W +Intel,Skylake,Intel(R) Core(TM) i3-6098P Processor,3.60 ,54 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5118 Processor,2.3,105 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6138 Processor,2.00 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5120T Processor,2.20 ,105 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4116 Processor,2.10,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6126 Processor,2.60 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6130 Processor,2.10,125 W +Intel,Skylake,Intel(R) Xeon(R) Bronze 3106 Processor,1.70 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6138T Processor,2.00 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8160T Processor,2.10,150 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6130T Processor,2.10,125 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4110 Processor,2.10,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6126T Processor,2.60 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4109T Processor,2.00 ,70 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4114T Processor,2.20 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5119T Processor,1.90 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4116T Processor,2.10,85 W +Intel,Skylake,Intel(R) Xeon(R) D-2123IT Processor,2.20 ,60 W +Intel,Skylake,Intel(R) Xeon(R) D-2143IT Processor,2.20 ,65 W +Intel,Skylake,Intel(R) Xeon(R) D-2142IT Processor,1.90 ,65 W +Intel,Skylake,Intel(R) Xeon(R) D-2145NT Processor,1.90 ,65 W +Intel,Skylake,Intel(R) Xeon(R) D-2146NT Processor,2.30 ,80 W +Intel,Skylake,Intel(R) Xeon(R) D-2177NT Processor,1.90 ,105 W +Intel,Skylake,Intel(R) Xeon(R) D-2163IT Processor,2.10,75 W +Intel,Skylake,Intel(R) Xeon(R) D-2173IT Processor,1.70 ,70 W +Intel,Skylake,Intel(R) Xeon(R) D-2166NT Processor,2.00 ,85 W +Intel,Skylake,Intel(R) Xeon(R) D-2187NT Processor,2.00 ,110 W +Intel,Skylake,Intel(R) Xeon(R) D-2183IT Processor,2.20 ,100 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1225 v5,3.30 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1275 v5,3.60 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1268L v5,2.40 ,35 W +Intel,Skylake,Intel(R) Core(TM) i3-6100U Processor,2.30 ,15 W +Intel,Skylake,Intel(R) Core(TM) i3-6100TE Processor,2.70 ,35 W +Intel,Skylake,Intel(R) Core(TM) i5-6500TE Processor,2.30 ,35 W +Intel,Skylake,Intel(R) Core(TM) i5-6300U Processor,2.40 ,15 W +Intel,Skylake,Intel(R) Core(TM) i7-6600U Processor,2.60 ,15 W +Intel,Skylake,Intel(R) Core(TM) i7-6700TE Processor,2.40 ,35 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1505M v5,2.80 ,45 W +Intel,Skylake,Intel(R) Core(TM) i5-6440EQ Processor,2.70 ,45 W +Intel,Skylake,Intel(R) Core(TM) i7-6820EQ Processor,2.80 ,45 W +Intel,Skylake,Mobile Intel(R) QM170 Chipset,, +Intel,Skylake,Mobile Intel(R) HM170 Chipset,, +Intel,Skylake,Mobile Intel(R) CM236 Chipset,, +Intel,Skylake,Intel(R) C236 Chipset,, +Intel,Skylake,Intel(R) Pentium(R) Processor G4400TE,2.40 ,35 W +Intel,Skylake,Intel(R) Core(TM) i3-6100E Processor,2.70 ,35 W +Intel,Skylake,Intel(R) Core(TM) i3-6102E Processor,1.90 ,25 W +Intel,Skylake,Intel(R) Core(TM) i7-6822EQ Processor,2.00 ,25 W +Intel,Skylake,Intel(R) Core(TM) i5-6442EQ Processor,1.90 ,25 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1505L v5,2.00 ,25 W +Intel,Skylake,Intel(R) Celeron(R) Processor G3902E,1.60 ,25 W +Intel,Skylake,Intel(R) Celeron(R) Processor G3900TE,2.30 ,35 W +Intel,Skylake,Intel(R) Celeron(R) Processor G3900E,2.40 ,35 W +Intel,Skylake,Intel(R) Celeron(R) Processor 3955U,2.00 ,15 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1515M v5,2.80 ,45 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1558L v5,1.90 ,45 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1578L v5,2.00 ,45 W +Intel,Skylake,Mobile Intel(R) QM175 Chipset,, +Intel,Skylake,Mobile Intel(R) HM175 Chipset,, +Intel,Skylake,Mobile Intel(R) CM238 Chipset,, +Intel,Skylake,Intel(R) Core(TM) i5-6200U Processor,2.30 ,15 W +Intel,Skylake,Intel(R) Core(TM) i7-6500U Processor,2.50 ,15 W +Intel,Skylake,Intel(R) Core(TM) m5-6Y57 Processor,1.10,4.5 W +Intel,Skylake,Intel(R) Core(TM) m3-6Y30 Processor,0.9,4.5 W +Intel,Skylake,Intel(R) Core(TM) m7-6Y75 Processor,1.20 ,4.5 W +Intel,Skylake,Intel(R) Core(TM) m5-6Y54 Processor,1.10,4.5 W +Intel,Skylake,Intel(R) Core(TM) i5-6300HQ Processor,2.30 ,45 W +Intel,Skylake,Intel(R) Core(TM) i5-6440HQ Processor,2.60 ,45 W +Intel,Skylake,Intel(R) Core(TM) i7-6700HQ Processor,2.60 ,45 W +Intel,Skylake,Intel(R) Core(TM) i7-6820HK Processor,2.70 ,45 W +Intel,Skylake,Intel(R) Core(TM) i7-6820HQ Processor,2.70 ,45 W +Intel,Skylake,Intel(R) Core(TM) i7-6920HQ Processor,2.90 ,45 W +Intel,Skylake,Intel(R) Core(TM) i3-6100H Processor,2.70 ,35 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1535M v5,2.90 ,45 W +Intel,Skylake,Intel(R) Pentium(R) Processor 4405U,2.10,15 W +Intel,Skylake,Intel(R) Pentium(R) Processor 4405Y,1.50 ,6 W +Intel,Skylake,Intel(R) Core(TM) i3-6167U Processor,2.70 ,28 W +Intel,Skylake,Intel(R) Core(TM) i5-6360U Processor,2.00 ,15 W +Intel,Skylake,Intel(R) Core(TM) i3-6006U Processor,2.00 ,15 W +Intel,Skylake,Intel(R) Core(TM) i5-6260U Processor,1.80 ,15 W +Intel,Skylake,Intel(R) Core(TM) i7-6560U Processor,2.20 ,15 W +Intel,Skylake,Intel(R) Core(TM) i5-6287U Processor,3.10,28 W +Intel,Skylake,Intel(R) Core(TM) i5-6267U Processor,2.90 ,28 W +Intel,Skylake,Intel(R) Core(TM) i7-6567U Processor,3.30 ,28 W +Intel,Skylake,Intel(R) Core(TM) i7-6660U Processor,2.40 ,15 W +Intel,Skylake,Intel(R) Core(TM) i7-6650U Processor,2.20 ,15 W +Intel,Skylake,Intel(R) Celeron(R) Processor 3855U,1.60 ,15 W +Intel,Skylake,Intel(R) Core(TM) i5-6350HQ Processor,2.30 ,45 W +Intel,Skylake,Intel(R) Core(TM) i7-6970HQ Processor,2.80 ,45 W +Intel,Skylake,Intel(R) Core(TM) i7-6870HQ Processor,2.70 ,45 W +Intel,Skylake,Intel(R) Core(TM) i7-6770HQ Processor,2.60 ,45 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1575M v5,3.00 ,45 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1545M v5,2.90 ,45 W +Intel,Skylake,Intel(R) Core(TM) i3-6157U Processor,2.40 ,28 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5118 Processor,2.3,105 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5120 Processor,2.20 ,105 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5122 Processor,3.60 ,105 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6138 Processor,2.00 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5120T Processor,2.20 ,105 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6136 Processor,3.00 ,150 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4116 Processor,2.10,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6128 Processor,3.40 ,115 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6126 Processor,2.60 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5115 Processor,2.40 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6140 Processor,2.30 ,140 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6142 Processor,2.60 ,150 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6148 Processor,2.40 ,150 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6150 Processor,2.70 ,165 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6152 Processor,2.10,140 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6130 Processor,2.10,125 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6134 Processor,3.20 ,130 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6154 Processor,3.00 ,200 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8180 Processor,2.50 ,205 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8153 Processor,2.00 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8156 Processor,3.60 ,105 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8158 Processor,3.00 ,150 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8160 Processor,2.10,150 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8164 Processor,2.00 ,150 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8168 Processor,2.70 ,205 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8170 Processor,2.10,165 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8176 Processor,2.10,165 W +Intel,Skylake,Intel(R) Xeon(R) Bronze 3106 Processor,1.70 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6132 Processor,2.60 ,140 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6138T Processor,2.00 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8160T Processor,2.10,150 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4108 Processor,1.80 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6130T Processor,2.10,125 W +Intel,Skylake,Intel(R) Xeon(R) Bronze 3104 Processor,1.70 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4110 Processor,2.10,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6126T Processor,2.60 ,125 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4109T Processor,2.00 ,70 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4114 Processor,2.20 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4112 Processor,2.60 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6142F Processor,2.60 ,160 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6138F Processor,2.00 ,135 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8160F Processor,2.10,160 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6130F Processor,2.10,135 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6126F Processor,2.60 ,135 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6148F Processor,2.40 ,160 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6146 Processor,3.20 ,165 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6144 Processor,3.50 ,150 W +Intel,Skylake,Intel(R) Xeon(R) W-2123 Processor,3.60 ,120 W +Intel,Skylake,Intel(R) Xeon(R) W-2133 Processor,3.60 ,140 W +Intel,Skylake,Intel(R) Xeon(R) W-2155 Processor,3.30 ,140 W +Intel,Skylake,Intel(R) Xeon(R) Platinum 8176F Processor,2.10,173 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4114T Processor,2.20 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Gold 5119T Processor,1.90 ,85 W +Intel,Skylake,Intel(R) Xeon(R) Silver 4116T Processor,2.10,85 W +Intel,Skylake,Intel(R) Xeon(R) W-2145 Processor,3.70 ,140 W +Intel,Skylake,Intel(R) Xeon(R) W-2125 Processor,4.00 ,120 W +Intel,Skylake,Intel(R) Xeon(R) W-2135 Processor,3.70 ,140 W +Intel,Skylake,Intel(R) Xeon(R) W-2195 Processor,2.30 ,140 W +Intel,Skylake,Intel(R) Xeon(R) W-2175 Processor,2.50 ,140 W +Intel,Skylake,Intel(R) Xeon(R) D-2123IT Processor,2.20 ,60 W +Intel,Skylake,Intel(R) Xeon(R) D-2141I Processor,2.20 ,65 W +Intel,Skylake,Intel(R) Xeon(R) D-2143IT Processor,2.20 ,65 W +Intel,Skylake,Intel(R) Xeon(R) D-2142IT Processor,1.90 ,65 W +Intel,Skylake,Intel(R) Xeon(R) D-2145NT Processor,1.90 ,65 W +Intel,Skylake,Intel(R) Xeon(R) D-2146NT Processor,2.30 ,80 W +Intel,Skylake,Intel(R) Xeon(R) D-2161I Processor,2.20 ,90 W +Intel,Skylake,Intel(R) Xeon(R) D-2177NT Processor,1.90 ,105 W +Intel,Skylake,Intel(R) Xeon(R) D-2163IT Processor,2.10,75 W +Intel,Skylake,Intel(R) Xeon(R) D-2173IT Processor,1.70 ,70 W +Intel,Skylake,Intel(R) Xeon(R) D-2166NT Processor,2.00 ,85 W +Intel,Skylake,Intel(R) Xeon(R) D-2187NT Processor,2.00 ,110 W +Intel,Skylake,Intel(R) Xeon(R) D-2183IT Processor,2.20 ,100 W +Intel,Skylake,Intel(R) Xeon(R) Gold 6138P Processor,2.00 ,195 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1225 v5,3.30 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1240L v5,2.10,25 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1235L v5,2.00 ,25 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1280 v5,3.70 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1220 v5,3.00 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1245 v5,3.50 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1270 v5,3.60 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1260L v5,2.90 ,45 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1240 v5,3.50 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1275 v5,3.60 ,80 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1230 v5,3.40 ,80 W +Intel,Skylake,Intel(R) C232 Chipset,, +Intel,Skylake,Intel(R) C236 Chipset,, +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1565L v5,2.50 ,35 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1585L v5,3.00 ,45 W +Intel,Skylake,Intel(R) Xeon(R) Processor E3-1585 v5,3.50 ,65 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7740X X-series Processor,4.30 ,112 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7640X X-series Processor,4.00 ,112 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7020U Processor,2.30 ,15 W +Intel,Kaby Lake,Intel(R) Pentium(R) Gold Processor 4415Y,1.60 ,6 W +Intel,Kaby Lake,Intel(R) Celeron(R) Processor 3965Y,1.50 ,6 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1501M v6,2.90 ,45 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1501L v6,2.10,25 W +Intel,Kaby Lake,Intel(R) Celeron(R) Processor G3930E,2.90 ,54 W +Intel,Kaby Lake,Intel(R) Celeron(R) Processor G3930TE,2.70 ,35 W +Intel,Kaby Lake,Intel(R) X299 Chipset,, +Intel,Kaby Lake,Intel(R) Core(TM) i3-7130U Processor,2.70 ,15 W +Intel,Kaby Lake,Intel(R) C422 Chipset,, +Intel,Kaby Lake,Intel(R) Core(TM) i7-7Y75 Processor,1.30 ,4.5 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7100U Processor,2.40 ,15 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7200U Processor,2.50 ,15 W +Intel,Kaby Lake,Intel(R) Core(TM) m3-7Y30 Processor,1.00 ,4.5 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7500U Processor,2.70 ,15 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7Y54 Processor,1.20 ,4.5 W +Intel,Kaby Lake,Intel(R) Celeron(R) Processor 3965U,2.20 ,15 W +Intel,Kaby Lake,Intel(R) Celeron(R) Processor 3865U,1.80 ,15 W +Intel,Kaby Lake,Intel(R) Pentium(R) Gold Processor 4415U,2.30 ,15 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7500T Processor,2.70 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7700T Processor,2.90 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7500 Processor,3.40 ,65 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7102E Processor,2.10,25 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7101TE Processor,3.40 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7100H Processor,3.00 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7820EQ Processor,3.00 ,45 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7700 Processor,3.60 ,65 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7700K Processor,4.20 ,91 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7101E Processor,3.90 ,54 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7100E Processor,2.90 ,35 W +Intel,Kaby Lake,Intel(R) Pentium(R) Gold Processor 4410Y,1.50 ,6 W +Intel,Kaby Lake,Intel(R) Pentium(R) Processor G4560,3.50 ,54 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7600K Processor,3.80 ,91 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7400 Processor,3.00 ,65 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7600 Processor,3.50 ,65 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7600T Processor,2.80 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7400T Processor,2.40 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7700HQ Processor,2.80 ,45 W +Intel,Kaby Lake,Intel(R) Celeron(R) Processor G3950,3.00 ,51 W +Intel,Kaby Lake,Intel(R) Celeron(R) Processor G3930,2.90 ,51 W +Intel,Kaby Lake,Intel(R) Pentium(R) Processor G4600,3.60 ,51 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7100 Processor,3.90 ,51 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7300HQ Processor,2.50 ,45 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7300T Processor,3.50 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7300 Processor,4.00 ,51 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7440HQ Processor,2.80 ,45 W +Intel,Kaby Lake,Intel(R) Pentium(R) Processor G4620,3.70 ,51 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7Y57 Processor,1.20 ,4.5 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7920HQ Processor,3.10,45 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1505M v6,3.00 ,45 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7820HK Processor,2.90 ,45 W +Intel,Kaby Lake,Intel(R) Pentium(R) Processor G4560T,2.90 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7600U Processor,2.80 ,15 W +Intel,Kaby Lake,Intel(R) Celeron(R) Processor G3930T,2.70 ,35 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1535M v6,3.10,45 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1240 v6,3.70 ,72 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1220 v6,3.00 ,72 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7300U Processor,2.60 ,15 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1245 v6,3.70 ,73 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1230 v6,3.50 ,72 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1280 v6,3.90 ,72 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1225 v6,3.30 ,73 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1275 v6,3.80 ,73 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1270 v6,3.80 ,72 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7320 Processor,4.10,51 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7100T Processor,3.40 ,35 W +Intel,Kaby Lake,Intel(R) Pentium(R) Processor G4600T,3.00 ,35 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7820HQ Processor,2.90 ,45 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7440EQ Processor,2.90 ,45 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7350K Processor,4.20 ,60 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7267U Processor,3.10,28 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7287U Processor,3.30 ,28 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7442EQ Processor,2.10,25 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7360U Processor,2.30 ,15 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7660U Processor,2.50 ,15 W +Intel,Kaby Lake,Intel(R) Core(TM) m3-7Y32 Processor,1.10,4.5 W +Intel,Kaby Lake,Intel(R) Core(TM) i5-7260U Processor,2.20 ,15 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7560U Processor,2.40 ,15 W +Intel,Kaby Lake,Intel(R) Core(TM) i7-7567U Processor,3.50 ,28 W +Intel,Kaby Lake,Intel(R) Core(TM) i3-7167U Processor,2.80 ,28 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1505L v6,2.20 ,25 W +Intel,Kaby Lake,Intel(R) Xeon(R) Processor E3-1285 v6,4.10,79 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8700K Processor,3.70 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8600K Processor,3.60 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8700 Processor,3.20 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8400 Processor,2.80 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8100 Processor,3.60 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8350K Processor,4.00 ,91 W +Intel,Coffee Lake,Intel(R) Celeron(R) G4900 Processor,3.10,54 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8600 Processor,3.10,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8600T Processor,2.30 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8500 Processor,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8400T Processor,1.70 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8500T Processor,2.10,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8300 Processor,3.70 ,62 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8300T Processor,3.20 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8100T Processor,3.10,35 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5600 Processor,3.90 ,54 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5500 Processor,3.80 ,54 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5500T Processor,3.20 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8700T Processor,2.40 ,35 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5400T Processor,3.10,35 W +Intel,Coffee Lake,Intel(R) Celeron(R) G4920 Processor,3.20 ,54 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5400 Processor,3.70 ,58 W +Intel,Coffee Lake,Intel(R) Celeron(R) G4900T Processor,2.90 ,35 W +Intel,Coffee Lake,Intel(R) Celeron(R) Processor G4930T,3.00 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9100 Processor,3.60 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9100T Processor,3.10,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9300T Processor,3.20 ,35 W +Intel,Coffee Lake,Intel(R) Celeron(R) Processor G4930,3.20 ,54 W +Intel,Coffee Lake,Intel(R) Celeron(R) Processor G4950,3.30 ,54 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9300 Processor,3.70 ,62 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9400T Processor,1.80 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9500 Processor,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9600K Processor,3.70 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9400 Processor,2.90 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9600 Processor,3.10,65 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5600T Processor,3.30 ,35 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5420T Processor,3.20 ,35 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5420 Processor,3.80 ,54 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5620 Processor,4.00 ,54 W +Intel,Coffee Lake,Intel(R) Core(TM) i7+8700 Processor,3.20 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5+8500 Processor ,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5+8400 Processor ,2.80 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8086K Processor,4.00 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9700K Processor,3.60 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i9-9900K Processor,3.60 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9350K Processor,4.00 ,91 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9400F Processor,2.90 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9600KF Processor,3.70 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9700KF Processor,3.60 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9100F Processor,3.60 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i9-9900KF Processor,3.60 ,95 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9500F Processor,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i9-9900T Processor,2.10,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9700T Processor,2.00 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9600T Processor,2.30 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9500T Processor,2.20 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9350KF Processor,4.00 ,91 W +Intel,Coffee Lake,Intel(R) Core(TM) i9-9900 Processor,3.10,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9700 Processor,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9320 Processor,3.70 ,62 W +Intel,Coffee Lake,Intel(R) Core(TM) i9-9900KS Processor,4.00 ,127 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9700F Processor,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8700 Processor,3.20 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8100 Processor,3.60 ,65 W +Intel,Coffee Lake,Intel(R) Celeron(R) G4900 Processor,3.10,54 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8500 Processor,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8500T Processor,2.10,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8100T Processor,3.10,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8700T Processor,2.40 ,35 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5400T Processor,3.10,35 W +Intel,Coffee Lake,Intel(R) Pentium(R) Gold G5400 Processor,3.70 ,58 W +Intel,Coffee Lake,Intel(R) Celeron(R) G4900T Processor,2.90 ,35 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2124G Processor,3.40 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2176G Processor,3.70 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2176M Processor,2.70 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8400H Processor,2.50 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8850H Processor,2.60 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8100H Processor,3.00 ,45 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2254ME Processor,2.60 ,45 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2276ME Processor,2.80 ,45 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2254ML Processor,1.70 ,25 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2276ML Processor,2.00 ,25 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9100E Processor,3.10,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9100HL Processor,1.60 ,25 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-9100TE Processor,2.20 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9700E Processor,2.60 ,65 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2278GEL Processor,2.00 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9500E Processor,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2226GE Processor,3.40 ,80 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9500TE Processor,2.20 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9850HE Processor,2.70 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9700TE Processor,1.80 ,35 W +Intel,Coffee Lake,Intel(R) Celeron(R) Processor G4932E,1.90 ,25 W +Intel,Coffee Lake,Intel(R) Celeron(R) Processor G4930E,2.40 ,35 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9850HL Processor,1.90 ,25 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2278GE Processor,3.30 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2186M Processor,2.90 ,45 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2176M Processor,2.70 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8300H Processor,2.30 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8400H Processor,2.50 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8400B Processor,2.80 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8500B Processor,3.00 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8850H Processor,2.60 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i9-8950HK Processor,2.90 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8700B Processor,3.20 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8750H Processor,2.20 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8259U Processor,2.30 ,28 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8109U Processor,3.00 ,28 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8559U Processor,2.70 ,28 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8269U Processor,2.60 ,28 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8100H Processor,3.00 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8100B Processor,3.60 ,65 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9750H Processor,2.60 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9750HF Processor,2.60 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-9850H Processor,2.60 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8569U Processor,2.80 ,28 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8257U Processor,1.40 ,15 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8279U Processor,2.40 ,28 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9300H Processor,2.40 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9400H Processor,2.50 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-9300HF Processor,2.40 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i9-9880H Processor,2.30 ,45 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2276M Processor,2.80 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i9-9980HK Processor,2.40 ,45 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2286M Processor,2.40 ,45 W +Intel,Coffee Lake,Intel(R) Core(TM) i7-8557U Processor,1.70 ,15 W +Intel,Coffee Lake,Intel(R) Core(TM) i5-8260U Processor,1.60 ,15 W +Intel,Coffee Lake,Intel(R) Core(TM) i3-8140U Processor,2.10,15 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2124G Processor,3.40 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2186G Processor,3.80 ,95 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2124 Processor,3.30 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2136 Processor,3.30 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2134 Processor,3.50 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2176G Processor,3.70 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2144G Processor,3.60 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2126G Processor,3.30 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2174G Processor,3.80 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2146G Processor,3.50 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2286G Processor,4.00 ,95 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2276G Processor,3.80 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2224 Processor,3.40 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2224G Processor,3.50 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2226G Processor,3.40 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2234 Processor,3.60 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2236 Processor,3.40 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2244G Processor,3.80 ,71 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2274G Processor,4.00 ,83 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2246G Processor,3.60 ,80 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2288G Processor,3.70 ,95 W +Intel,Coffee Lake,Intel(R) Xeon(R) E-2278G Processor,3.40 ,80 W +Intel,Whiskey lake,Intel(R) Core(TM) i5-8265U Processor,1.60 ,15 W +Intel,Whiskey lake,Intel(R) Core(TM) i3-8145U Processor,2.10,15 W +Intel,Whiskey lake,Intel(R) Core(TM) i7-8565U Processor,1.80 ,15 W +Intel,Whiskey lake,Intel(R) Celeron(R) Processor 4205U,1.80 ,15 W +Intel,Whiskey lake,Intel(R) Pentium(R) Gold 5405U Processor,2.30 ,15 W +Intel,Whiskey lake,Intel(R) Core(TM) i7-8665UE Processor,1.70 ,15 W +Intel,Whiskey lake,Intel(R) Core(TM) i5-8365U Processor,1.60 ,15 W +Intel,Whiskey lake,Intel(R) Core(TM) i5-8365UE Processor,1.60 ,15 W +Intel,Whiskey lake,Intel(R) Core(TM) i3-8145UE Processor,2.20 ,15 W +Intel,Whiskey lake,Intel(R) Celeron(R) Processor 4305U,2.20 ,15 W +Intel,Whiskey lake,Intel(R) Core(TM) i7-8665U Processor,1.90 ,15 W +Intel,Whiskey lake,Intel(R) Celeron(R) Processor 4305UE,2.00 ,15 W +Intel,Amber Lake,Intel(R) Core(TM) i5-8200Y Processor,1.30 ,5 W +Intel,Amber Lake,Intel(R) Core(TM) i7-8500Y Processor,1.50 ,5 W +Intel,Amber Lake,Intel(R) Core(TM) m3-8100Y Processor,1.10,5 W +Intel,Amber Lake,Intel(R) Core(TM) i5-8210Y Processor,1.60 ,7 W +Intel,Amber Lake,Intel(R) Core(TM) i5-8310Y Processor,1.60 ,7 W +Intel,Amber Lake,Intel(R) Core(TM) i7-10510Y Processor,1.20 ,7 W +Intel,Amber Lake,Intel(R) Core(TM) i5-10310Y Processor,1.10,7 W +Intel,Amber Lake,Intel(R) Core(TM) i5-10210Y Processor,1.00 ,7 W +Intel,Amber Lake,Intel(R) Core(TM) i3-10110Y Processor,1.00 ,7 W +Intel,Amber Lake,Intel(R) Core(TM) i3-10100Y Processor,1.30 ,5 W +Intel,Amber Lake,Intel(R) Pentium(R) Gold 6500Y Processor,1.10,5 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6230 Processor,2.10,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6238T Processor,1.90 ,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6242 Processor,2.80 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6244 Processor,3.60 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6240 Processor,2.60 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5218 Processor,2.30 ,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5222 Processor,3.80 ,105 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6248 Processor,2.50 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6252 Processor,2.10,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6240Y Processor,2.60 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6230N Processor,2.30 ,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6254 Processor,3.10,200 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6210U Processor,2.50 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6212U Processor,2.40 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8253 Processor,2.20 ,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8256 Processor,3.80 ,105 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8276 Processor,2.20 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8280L Processor,2.70 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8260 Processor,2.40 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8276L Processor,2.20 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8260L Processor,2.40 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8280 Processor,2.70 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8260Y Processor,2.40 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8268 Processor,2.90 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 8270 Processor,2.70 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Bronze 3204 Processor,1.90 ,85 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4209T Processor,2.20 ,70 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4210 Processor,2.20 ,85 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4214 Processor,2.20 ,85 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5220 Processor,2.20 ,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4215 Processor,2.50 ,85 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4208 Processor,2.10,85 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5215 Processor,2.50 ,85 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5215L Processor,2.50 ,85 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4216 Processor,2.10,100 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5217 Processor,3.00 ,115 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5218N Processor,2.30 ,110 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4214Y Processor,2.20 ,85 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5218B Processor,2.30 ,125 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3223 Processor,3.50 ,160 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3265 Processor,2.70 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3225 Processor,3.70 ,160 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3235 Processor,3.30 ,180 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3265M Processor,2.70 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3245M Processor,3.20 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3275 Processor,2.50 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3245 Processor,3.20 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) W-3275M Processor,2.50 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6238 Processor,2.10,140 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5220S Processor,2.70 ,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6252N Processor,2.30 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6230T Processor,2.10,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5218T Processor,2.10,105 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6234 Processor,3.30 ,130 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6226 Processor,2.70 ,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6238L Processor,2.10,140 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6240L Processor,2.60 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6222V Processor,1.80 ,115 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6246 Processor,3.30 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5220T Processor,1.90 ,105 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6209U Processor,2.10,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6262V Processor,1.90 ,135 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 9242 Processor,2.30 ,350 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 9282 Processor,2.60 ,400 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 9221 Processor,2.30 ,250 W +Intel,Cascade lake,Intel(R) Xeon(R) Platinum 9222 Processor,2.30 ,250 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4210R Processor,2.40 ,100 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4214R Processor,2.40 ,100 W +Intel,Cascade lake,Intel(R) Xeon(R) Bronze 3206R Processor,1.90 ,85 W +Intel,Cascade lake,Intel(R) Xeon(R) W-2275 Processor,3.30 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) W-2295 Processor,3.00 ,165 W +Intel,Cascade lake,Intel(R) Core(TM) i9-10920X X-series Processor,3.50 ,165 W +Intel,Cascade lake,Intel(R) Core(TM) i9-10940X X-series Processor,3.30 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) W-2265 Processor,3.50 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) W-2255 Processor,3.70 ,165 W +Intel,Cascade lake,Intel(R) Core(TM) i9-10980XE Extreme Edition Processor,3.00 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) W-2223 Processor,3.60 ,120 W +Intel,Cascade lake,Intel(R) Core(TM) i9-10900X X-series Processor,3.70 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) W-2235 Processor,3.80 ,130 W +Intel,Cascade lake,Intel(R) Xeon(R) W-2245 Processor,3.90 ,155 W +Intel,Cascade lake,Intel(R) Xeon(R) W-2225 Processor,4.10,105 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6250 Processor,3.90 ,185 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6256 Processor,3.60 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5218R Processor,2.10,125 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6240R Processor,2.40 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4210T Processor,2.30 ,95 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6238R Processor,2.20 ,165 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6230R Processor,2.10,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6226R Processor,2.90 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6208U Processor,2.90 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Silver 4215R Processor,3.20 ,130 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6258R Processor,2.70 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6248R Processor,3.00 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6242R Processor,3.10,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6246R Processor,3.40 ,205 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 5220R Processor,2.20 ,150 W +Intel,Cascade lake,Intel(R) Xeon(R) Gold 6250L Processor,3.90 ,185 W +Intel,Comet lake,Intel(R) Core(TM) i5-10210U Processor,1.60 ,15 W +Intel,Comet lake,Intel(R) Core(TM) i7-10710U Processor,1.10,15 W +Intel,Comet lake,Intel(R) Core(TM) i7-10510U Processor,1.80 ,15 W +Intel,Comet lake,Intel(R) Core(TM) i3-10110U Processor,2.10,15 W +Intel,Comet lake,Intel(R) Pentium(R) Gold 6405U Processor,2.40 ,15 W +Intel,Comet lake,Intel(R) Celeron(R) Processor 5305U,2.30 ,15 W +Intel,Comet lake,Intel(R) Celeron(R) Processor 5205U,1.90 ,15 W +Intel,Comet lake,Intel(R) Celeron(R) Processor G5900,3.40 ,58 W +Intel,Comet lake,Intel(R) Celeron(R) Processor G5900T,3.20 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i5-10400 Processor,2.90 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i5-10600 Processor,3.30 ,65 W +Intel,Comet lake,Intel(R) Xeon(R) W-1250 Processor,3.30 ,80 W +Intel,Comet lake,Intel(R) Core(TM) i5-10500T Processor,2.30 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i5-10400T Processor,2.00 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i5-10500 Processor,3.10,65 W +Intel,Comet lake,Intel(R) Core(TM) i5-10400F Processor,2.90 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i5-10600T Processor,2.40 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i3-10320 Processor,3.80 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i3-10300 Processor,3.70 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i3-10300T Processor,3.00 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i3-10100 Processor,3.60 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i3-10100T Processor,3.00 ,35 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6600 Processor,4.20 ,58 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6500T Processor,3.50 ,35 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6500 Processor,4.10,58 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6400 Processor,4.00 ,58 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6400T Processor,3.40 ,35 W +Intel,Comet lake,Intel(R) Celeron(R) Processor G5920,3.50 ,58 W +Intel,Comet lake,Intel(R) Core(TM) i5-10600K Processor,4.10,125 W +Intel,Comet lake,Intel(R) Core(TM) i7-10700T Processor,2.00 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i5-10600KF Processor,4.10,125 W +Intel,Comet lake,Intel(R) Core(TM) i7-10700 Processor,2.90 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i7-10700F Processor,2.90 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i9-10900T Processor,1.90 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i7-10700KF Processor,3.80 ,125 W +Intel,Comet lake,Intel(R) Core(TM) i9-10900 Processor,2.80 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i9-10900F Processor,2.80 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i9-10900KF Processor,3.70 ,125 W +Intel,Comet lake,Intel(R) Core(TM) i9-10900K Processor,3.70 ,125 W +Intel,Comet lake,Intel(R) Core(TM) i7-10700K Processor,3.80 ,125 W +Intel,Comet lake,Intel(R) Xeon(R) W-1290P Processor,3.70 ,125 W +Intel,Comet lake,Intel(R) Xeon(R) W-1290 Processor,3.20 ,80 W +Intel,Comet lake,Intel(R) Xeon(R) W-1270P Processor,3.80 ,125 W +Intel,Comet lake,Intel(R) Xeon(R) W-1270 Processor,3.40 ,80 W +Intel,Comet lake,Intel(R) Xeon(R) W-1250P Processor,4.10,125 W +Intel,Comet lake,Intel(R) Xeon(R) W-1290T Processor,1.90 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i7-10750H Processor,2.60 ,45 W +Intel,Comet lake,Intel(R) Core(TM) i9-10980HK Processor,2.40 ,45 W +Intel,Comet lake,Intel(R) Core(TM) i5-10300H Processor,2.50 ,45 W +Intel,Comet lake,Intel(R) Celeron(R) Processor G5905T,3.30 ,35 W +Intel,Comet lake,Intel(R) Celeron(R) Processor G5925,3.60 ,58 W +Intel,Comet lake,Intel(R) Core(TM) i7-10810U Processor,1.10,15 W +Intel,Comet lake,Intel(R) Core(TM) i3-10325 Processor,3.90 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i3-10105T Processor,3.00 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i5-10505 Processor,3.20 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i5-10310U Processor,1.70 ,15 W +Intel,Comet lake,Intel(R) Core(TM) i3-10305 Processor,3.80 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i3-10105 Processor,3.70 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i5-10400H Processor,2.60 ,45 W +Intel,Comet lake,Intel(R) Core(TM) i7-10610U Processor,1.80 ,15 W +Intel,Comet lake,Intel(R) Core(TM) i7-10850H Processor,2.70 ,45 W +Intel,Comet lake,Intel(R) Core(TM) i3-10305T Processor,3.00 ,35 W +Intel,Comet lake,Intel(R) Celeron(R) Processor G5905,3.50 ,58 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6405T Processor,3.50 ,35 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6405 Processor,4.10,58 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6505 Processor,4.20 ,58 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6505T Processor,3.60 ,35 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6605 Processor,4.30 ,58 W +Intel,Comet lake,Intel(R) Core(TM) i5-10500H Processor,2.50 ,45 W +Intel,Comet lake,Intel(R) Xeon(R) W-10855M Processor,2.80 ,45 W +Intel,Comet lake,Intel(R) Xeon(R) W-10885M Processor,2.40 ,45 W +Intel,Comet lake,Intel(R) Core(TM) i7-10875H Processor,2.30 ,45 W +Intel,Comet lake,Intel(R) Core(TM) i3-10100F Processor,3.60 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i3-10105F Processor,3.70 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i9-10885H Processor,2.40 ,45 W +Intel,Comet lake,Intel(R) Celeron(R) Processor G5900TE,3.00 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i5-10500TE Processor,2.30 ,35 W +Intel,Comet lake,Intel(R) Xeon(R) W-1250E Processor,3.50 ,80 W +Intel,Comet lake,Intel(R) Core(TM) i5-10500E Processor,3.10,65 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6400TE Processor,3.20 ,35 W +Intel,Comet lake,Intel(R) Xeon(R) W-1250TE Processor,2.40 ,35 W +Intel,Comet lake,Intel(R) Pentium(R) Gold G6400E Processor,3.80 ,58 W +Intel,Comet lake,Intel(R) Celeron(R) Processor G5900E,3.20 ,58 W +Intel,Comet lake,Intel(R) Core(TM) i3-10100E Processor,3.20 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i3-10100TE Processor,2.30 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i9-10900TE Processor,1.80 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i9-10900E Processor,2.80 ,65 W +Intel,Comet lake,Intel(R) Xeon(R) W-1290E Processor,3.50 ,95 W +Intel,Comet lake,Intel(R) Xeon(R) W-1270E Processor,3.40 ,80 W +Intel,Comet lake,Intel(R) Xeon(R) W-1270TE Processor,2.00 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i7-10700TE Processor,2.00 ,35 W +Intel,Comet lake,Intel(R) Xeon(R) W-1290TE Processor,1.80 ,35 W +Intel,Comet lake,Intel(R) Core(TM) i7-10700E Processor,2.90 ,65 W +Intel,Comet lake,Intel(R) Core(TM) i9-10850K Processor,3.60 ,125 W +Intel,Comet lake,Intel(R) Core(TM) i5-10200H Processor,2.40 ,45 W +Intel,Comet lake,Intel(R) Core(TM) i7-10870H Processor,2.20 ,45 W +Intel,Rocket lake,Intel(R) Core(TM) i7-11700K Processor,3.60 ,125 W +Intel,Rocket lake,Intel(R) Core(TM) i7-11700KF Processor,3.60 ,125 W +Intel,Rocket lake,Intel(R) Core(TM) i7-11700T Processor,1.40 ,35 W +Intel,Rocket lake,Intel(R) Core(TM) i9-11900 Processor,2.50 ,65 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2336 Processor,2.90 ,65 W +Intel,Rocket lake,Intel(R) Core(TM) i9-11900F Processor,2.50 ,65 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2324G Processor,3.10,65 W +Intel,Rocket lake,Intel(R) Core(TM) i9-11900T Processor,1.50 ,35 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2356G Processor,3.20 ,80 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2334 Processor,3.40 ,65 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2314 Processor,2.80 ,65 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2374G Processor,3.70 ,80 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2378 Processor,2.60 ,65 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2378G Processor,2.80 ,80 W +Intel,Rocket lake,Intel(R) Xeon(R) W-1350 Processor,3.30 ,80 W +Intel,Rocket lake,Intel(R) Xeon(R) W-1350P Processor,4.00 ,125 W +Intel,Rocket lake,Intel(R) Xeon(R) W-1370 Processor,2.90 ,80 W +Intel,Rocket lake,Intel(R) Xeon(R) W-1370P Processor,3.60 ,125 W +Intel,Rocket lake,Intel(R) Xeon(R) W-1390 Processor,2.80 ,80 W +Intel,Rocket lake,Intel(R) Xeon(R) W-1390P Processor,3.50 ,125 W +Intel,Rocket lake,Intel(R) Xeon(R) W-1390T Processor,1.50 ,35 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11400 Processor,2.60 ,65 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11400F Processor,2.60 ,65 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11500T Processor,1.50 ,35 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11400T Processor,1.30 ,35 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11600 Processor,2.80 ,65 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11600K Processor,3.90 ,125 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11600KF Processor,3.90 ,125 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11500 Processor,2.70 ,65 W +Intel,Rocket lake,Intel(R) Core(TM) i5-11600T Processor,1.70 ,35 W +Intel,Rocket lake,Intel(R) Core(TM) i7-11700 Processor,2.50 ,65 W +Intel,Rocket lake,Intel(R) Core(TM) i7-11700F Processor,2.50 ,65 W +Intel,Rocket lake,Intel(R) Core(TM) i9-11900KF Processor,3.50 ,125 W +Intel,Rocket lake,Intel(R) Core(TM) i9-11900K Processor,3.50 ,125 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2388G Processor,3.20 ,95 W +Intel,Rocket lake,Intel(R) Xeon(R) E-2386G Processor,3.50 ,95 W +AMD,Zen 5,AMD Ryzen(TM) AI 9 HX PRO 375,2,28W +AMD,Zen 5,AMD Ryzen(TM) AI 9 HX PRO 370,2,28W +AMD,Zen 4,AMD Ryzen(TM) AI 7 PRO 360,2,28W +AMD,Zen 5,AMD Ryzen(TM) AI 9 HX 375,,28W +AMD,Zen 5,AMD Ryzen(TM) AI 9 HX 370,,28W +AMD,Zen 5,AMD Ryzen(TM) AI 9 365,2,28W +AMD,Zen 5,AMD Ryzen(TM) 9 9950X,4.3,170W +AMD,Zen 5,AMD Ryzen(TM) 9 9900X,4.4,120W +AMD,Zen 5,AMD Ryzen(TM) 7 9700X,3.8,65W +AMD,Zen 5,AMD Ryzen(TM) 5 9600X,3.9,65W +AMD,Zen 4,AMD Ryzen(TM) 9 PRO 8945HS,4,45W +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 8840U,3.3,28W +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 8845HS,3.8,45W +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 8840HS,3.3,28W +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 8700GE,3.6,35W +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 8700G,4.2,65W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 8640U,3.5,28W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 8645HS,4.3,45W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 8640HS,3.5,28W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 8600GE,3.9,35W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 8600G,4.3,65W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 8540U,3.2,28W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 8500GE,3.4,35W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 8500G,3.5,65W +AMD,Zen 4,AMD Ryzen(TM) 9 8945HS,4,45W +AMD,Zen 4,AMD Ryzen(TM) 3 PRO 8300GE,3.5,35W +AMD,Zen 4,AMD Ryzen(TM) 3 PRO 8300G,3.4,65W +AMD,Zen 4,AMD Ryzen(TM) 7 8845HS,3.8,45W +AMD,Zen 4,AMD Ryzen(TM) 7 8840U,3.3,28W +AMD,Zen 4,AMD Ryzen(TM) 7 8840HS,3.3,28W +AMD,Zen 4,AMD Ryzen(TM) 7 8700G,4.2,65W +AMD,Zen 4,AMD Ryzen(TM) 7 8700F,4.1,65W +AMD,Zen 4,AMD Ryzen(TM) 5 8645HS,4.3,45W +AMD,Zen 4,AMD Ryzen(TM) 5 8640U,3.5,28W +AMD,Zen 4,AMD Ryzen(TM) 5 8640HS,3.5,28W +AMD,Zen 4,AMD Ryzen(TM) 5 8600G,4.3,65W +AMD,Zen 4,AMD Ryzen(TM) 5 8540U,3.2,28W +AMD,Zen 4,AMD Ryzen(TM) 5 8500GE,3.4,35W +AMD,Zen 4,AMD Ryzen(TM) 5 8500G,3.5,65W +AMD,Zen 4,AMD Ryzen(TM) 3 8440U,3,28W +AMD,Zen 4,AMD Ryzen(TM) 3 8300GE,3.5,35W +AMD,Zen 4,AMD Ryzen(TM) 5 8400F,4.2,65W +AMD,Zen 4,AMD Ryzen(TM) 3 8300G,3.4,65W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) PRO 7995WX,2.5,350W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) PRO 7985WX,3.2,350W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) PRO 7975WX,4,350W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) PRO 7965WX,4.2,350W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) PRO 7955WX,4.5,350W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) PRO 7945WX,4.7,350W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) 7980X,3.2,350W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) 7970X,4,350W +AMD,Zen 4,AMD Ryzen(TM) Threadripper(TM) 7960X,4.2,350W +AMD,Zen 4,AMD Ryzen(TM) 9 PRO 7945,3.7,65W +AMD,Zen 4,AMD Ryzen(TM) 9 PRO 7940HS,4, +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 7840U,3.3, +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 7840HS,3.8, +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 7745,3.8,65W +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 7735U,2.7, +AMD,Zen 4,AMD Ryzen(TM) 7 PRO 7730U,2,15W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 7645,3.8,65W +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 7640U,3.5, +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 7640HS,4.3, +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 7545U,3.2, +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 7540U,3.2, +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 7535U,2.9, +AMD,Zen 4,AMD Ryzen(TM) 5 PRO 7530U,2,15W +AMD,Zen 4,AMD Ryzen(TM) 3 PRO 7335U,3, +AMD,Zen 4,AMD Ryzen(TM) 3 PRO 7330U,2.3,15W +AMD,Zen 4,AMD Ryzen(TM) 9 7950X3D,4.2,120W +AMD,Zen 4,AMD Ryzen(TM) 9 7950X,4.5,170W +AMD,Zen 4,AMD Ryzen(TM) 9 7945HX3D,2.3,55W +AMD,Zen 4,AMD Ryzen(TM) 9 7945HX,2.5,55W +AMD,Zen 4,AMD Ryzen(TM) 9 7940HS,4,54W +AMD,Zen 4,AMD Ryzen(TM) 9 7940HX,2.4,55W +AMD,Zen 4,AMD Ryzen(TM) 9 7900X3D,4.4,120W +AMD,Zen 4,AMD Ryzen(TM) 9 7900X,4.7,170W +AMD,Zen 4,AMD Ryzen(TM) 9 7900,3.7,65W +AMD,Zen 4,AMD Ryzen(TM) 9 7845HX,3,55W +AMD,Zen 4,AMD Ryzen(TM) 7 7840U,3.3,28W +AMD,Zen 4,AMD Ryzen(TM) 7 7840HX,2.9,55W +AMD,Zen 4,AMD Ryzen(TM) 7 7840HS,3.8,54W +AMD,Zen 4,AMD Ryzen(TM) 7 7800X3D,4.2,120W +AMD,Zen 4,AMD Ryzen(TM) 7 7745HX,3.6,55W +AMD,Zen 4,AMD Ryzen(TM) 7 7736U​,2.7, +AMD,Zen 4,AMD Ryzen(TM) 7 7735U,2.7,28W +AMD,Zen 4,AMD Ryzen(TM) 7 7735HS,3.2,54W +AMD,Zen 4,AMD Ryzen(TM) 7 7730U,2,15W +AMD,Zen 4,AMD Ryzen(TM) 7 7700X,4.5,105W +AMD,Zen 4,AMD Ryzen(TM) 7 7700,3.8,65W +AMD,Zen 4,AMD Ryzen(TM) 5 7645HX,4,55W +AMD,Zen 4,AMD Ryzen(TM) 5 7640U,3.5,28W +AMD,Zen 4,AMD Ryzen(TM) 5 7640HS,4.3,54W +AMD,Zen 4,AMD Ryzen(TM) 5 7600X3D,4.1,65W +AMD,Zen 4,AMD Ryzen(TM) 5 7600X,4.7,105W +AMD,Zen 4,AMD Ryzen(TM) 5 7600,3.8,65W +AMD,Zen 4,AMD Ryzen(TM) 5 7545U,3.2,28W +AMD,Zen 4,AMD Ryzen(TM) 5 7540U,3.2,28W +AMD,Zen 4,AMD Ryzen(TM) 5 7535U,2.9,28W +AMD,Zen 4,AMD Ryzen(TM) 5 7535HS,3.3,54W +AMD,Zen 4,AMD Ryzen(TM) 5 7530U,2,15W +AMD,Zen 4,AMD Ryzen(TM) 5 7520U,2.8,15W +AMD,Zen 4,AMD Ryzen(TM) 5 7520C,2.8,15W +AMD,Zen 4,AMD Ryzen(TM) 5 7500F,3.7,65W +AMD,Zen 4,AMD Ryzen(TM) 3 7440U,3,28W +AMD,Zen 4,AMD Ryzen(TM) 7 7435HS,3.1,45W +AMD,Zen 4,AMD Ryzen(TM) 5 7430U,2.3,15W +AMD,Zen 4,AMD Ryzen(TM) 3 7335U,3,28W +AMD,Zen 4,AMD Ryzen(TM) 3 7330U,2.3,15W +AMD,Zen 4,AMD Ryzen(TM) 3 7320U,2.4,15W +AMD,Zen 4,AMD Ryzen(TM) 3 7320C,2.4,15W +AMD,Zen 4,AMD Ryzen(TM) 5 7235HS,3.2,45W +AMD,Zen 4,AMD Ryzen(TM) Z1 Extreme,3.3, +AMD,Zen 4,AMD Ryzen(TM) Z1,3.2, +AMD,Zen 4,AMD Athlon(TM) Gold 7220U,2.4,15W +AMD,Zen 4,AMD Athlon(TM) Gold 7220C,2.4,15W +AMD,Zen 4,AMD Athlon(TM) Silver 7120U,2.4,15W +AMD,Zen 4,AMD Athlon(TM) Silver 7120C,2.4,15W +AMD,Zen 3+,AMD Ryzen(TM) 9 PRO 6950HS,3.3,35W +AMD,Zen 3+,AMD Ryzen(TM) 9 PRO 6950H,3.3,45W +AMD,Zen 3+,AMD Ryzen(TM) 7 PRO 6860Z,2.7,28W +AMD,Zen 3+,AMD Ryzen(TM) 7 PRO 6850U,2.7, +AMD,Zen 3+,AMD Ryzen(TM) 7 PRO 6850HS,3.2,35W +AMD,Zen 3+,AMD Ryzen(TM) 7 PRO 6850H,3.2,45W +AMD,Zen 3+,AMD Ryzen(TM) 5 PRO 6650U,2.9, +AMD,Zen 3+,AMD Ryzen(TM) 5 PRO 6650HS,3.3,35W +AMD,Zen 3+,AMD Ryzen(TM) 5 PRO 6650H,3.3,45W +AMD,Zen 3+,AMD Ryzen(TM) 9 6980HX,3.3,45W +AMD,Zen 3+,AMD Ryzen(TM) 9 6980HS,3.3,35W +AMD,Zen 3+,AMD Ryzen(TM) 9 6900HX,3.3,45W +AMD,Zen 3+,AMD Ryzen(TM) 9 6900HS​,3.3,35W +AMD,Zen 3+,AMD Ryzen(TM) 7 6800U​,2.7, +AMD,Zen 3+,AMD Ryzen(TM) 7 6800HS,3.2,35W +AMD,Zen 3+,AMD Ryzen(TM) 7 6800H,3.2,45W +AMD,Zen 3+,AMD Ryzen(TM) 5 6600U,2.9, +AMD,Zen 3+,AMD Ryzen(TM) 5 6600HS​,3.3,35W +AMD,Zen 3+,AMD Ryzen(TM) 5 6600H,3.3,45W +AMD,Zen 3,AMD Ryzen(TM) Threadripper(TM) PRO 5995WX,2.7,280W +AMD,Zen 3,AMD Ryzen(TM) Threadripper(TM) PRO 5975WX,3.6,280W +AMD,Zen 3,AMD Ryzen(TM) Threadripper(TM) PRO 5965WX,3.8,280W +AMD,Zen 3,AMD Ryzen(TM) Threadripper(TM) PRO 5955WX,4,280W +AMD,Zen 3,AMD Ryzen(TM) Threadripper(TM) PRO 5945WX,4.1,280W +AMD,Zen 3,AMD Ryzen(TM) 9 PRO 5945,3,65W +AMD,Zen 3,AMD Ryzen(TM) 7 PRO 5875U,2,15W +AMD,Zen 3,AMD Ryzen(TM) 7 PRO 5850U,1.9,15W +AMD,Zen 3,AMD Ryzen(TM) 7 PRO 5845,3.4,65W +AMD,Zen 3,AMD Ryzen(TM) 7 PRO 5755GE,3.2,35W +AMD,Zen 3,AMD Ryzen(TM) 7 PRO 5755G,3.8,65W +AMD,Zen 3,AMD Ryzen(TM) 7 PRO 5750GE,3.2,35W +AMD,Zen 3,AMD Ryzen(TM) 7 PRO 5750G,3.8,65W +AMD,Zen 3,AMD Ryzen(TM) 5 PRO 5675U,2.3,15W +AMD,Zen 3,AMD Ryzen(TM) 5 PRO 5655GE,3.4,35W +AMD,Zen 3,AMD Ryzen(TM) 5 PRO 5655G,3.9,65W +AMD,Zen 3,AMD Ryzen(TM) 5 PRO 5650U,2.3,15W +AMD,Zen 3,AMD Ryzen(TM) 5 PRO 5650GE,3.4,35W +AMD,Zen 3,AMD Ryzen(TM) 5 PRO 5650G,3.9,65W +AMD,Zen 3,AMD Ryzen(TM) 5 PRO 5645,3.7,65W +AMD,Zen 3,AMD Ryzen(TM) 3 PRO 5475U,2.7,15W +AMD,Zen 3,AMD Ryzen(TM) 3 PRO 5450U,2.6,15W +AMD,Zen 3,AMD Ryzen(TM) 3 PRO 5355GE,3.6,35W +AMD,Zen 3,AMD Ryzen(TM) 3 PRO 5355G,4,65W +AMD,Zen 3,AMD Ryzen(TM) 3 PRO 5350GE,3.6,35W +AMD,Zen 3,AMD Ryzen(TM) 3 PRO 5350G,4,65W +AMD,Zen 3,AMD Ryzen(TM) 9 5980HX,3.3,45W +AMD,Zen 3,AMD Ryzen(TM) 9 5980HS,3,35W +AMD,Zen 3,AMD Ryzen(TM) 9 5950X,3.4,105W +AMD,Zen 3,AMD Ryzen(TM) 9 5900XT,3.3,105W +AMD,Zen 3,AMD Ryzen(TM) 9 5900X,3.7,105W +AMD,Zen 3,AMD Ryzen(TM) 9 5900HX,3.3,45W +AMD,Zen 3,AMD Ryzen(TM) 9 5900HS,3,35W +AMD,Zen 3,AMD Ryzen(TM) 9 5900 (OEM Only),3,65W +AMD,Zen 3,AMD Ryzen(TM) 7 5825U,2,15W +AMD,Zen 3,AMD Ryzen(TM) 7 5825C,2,15W +AMD,Zen 3,AMD Ryzen(TM) 7 5800X3D,3.4,105W +AMD,Zen 3,AMD Ryzen(TM) 7 5800XT,3.8,105W +AMD,Zen 3,AMD Ryzen(TM) 7 5800X,3.8,105W +AMD,Zen 3,AMD Ryzen(TM) 7 5800U,1.9,15W +AMD,Zen 3,AMD Ryzen(TM) 7 5800HS,2.8,35W +AMD,Zen 3,AMD Ryzen(TM) 7 5800H,3.2,45W +AMD,Zen 3,AMD Ryzen(TM) 7 5800 (OEM Only),3.4,65W +AMD,Zen 3,AMD Ryzen(TM) 7 5700X3D,3,105W +AMD,Zen 3,AMD Ryzen(TM) 7 5700X,3.4,65W +AMD,Zen 3,AMD Ryzen(TM) 7 5700U,1.8,15W +AMD,Zen 3,AMD Ryzen(TM) 7 5700GE,3.2,35W +AMD,Zen 3,AMD Ryzen(TM) 7 5700G,3.8,65W +AMD,Zen 3,AMD Ryzen(TM) 7 5700,3.7,65W +AMD,Zen 3,AMD Ryzen(TM) 5 5625U,2.3,15W +AMD,Zen 3,AMD Ryzen(TM) 5 5625C,2.3,15W +AMD,Zen 3,AMD Ryzen(TM) 5 5600X3D,3.3,105W +AMD,Zen 3,AMD Ryzen(TM) 5 5600X,3.7,65W +AMD,Zen 3,AMD Ryzen(TM) 5 5600U,2.3,15W +AMD,Zen 3,AMD Ryzen(TM) 5 5600HS,3,35W +AMD,Zen 3,AMD Ryzen(TM) 5 5600H,3.3,45W +AMD,Zen 3,AMD Ryzen(TM) 5 5600GT,3.6,65W +AMD,Zen 3,AMD Ryzen(TM) 5 5600GE,3.4,35W +AMD,Zen 3,AMD Ryzen(TM) 5 5600G,3.9,65W +AMD,Zen 3,AMD Ryzen(TM) 5 5600,3.5,65W +AMD,Zen 3,AMD Ryzen(TM) 5 5560U,2.3,15W +AMD,Zen 3,AMD Ryzen(TM) 5 5500U,2.1,15W +AMD,Zen 3,AMD Ryzen(TM) 5 5500H,3.3,45W +AMD,Zen 3,AMD Ryzen(TM) 5 5500GT,3.6,65W +AMD,Zen 3,AMD Ryzen(TM) 5 5500,3.6,65W +AMD,Zen 3,AMD Ryzen(TM) 3 5425U,2.7,15W +AMD,Zen 3,AMD Ryzen(TM) 3 5425C,2.7,15W +AMD,Zen 3,AMD Ryzen(TM) 3 5400U,2.6,15W +AMD,Zen 3,AMD Ryzen(TM) 3 5300U,2.6,15W +AMD,Zen 3,AMD Ryzen(TM) 3 5300GE (OEM Only),3.6,35W +AMD,Zen 3,AMD Ryzen(TM) 3 5300G (OEM Only),4,65W +AMD,Zen 3,AMD Ryzen(TM) 3 5125C,3,15W +AMD,Zen 2,AMD Ryzen(TM) 7 PRO 4750U,1.7,15W +AMD,Zen 2,AMD Ryzen(TM) 7 PRO 4750GE,3.1,35W +AMD,Zen 2,AMD Ryzen(TM) 7 PRO 4750G,3.6,65W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 4655GE,3.3,35W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 4655G,3.7,65W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 4650U,2.1,15W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 4650GE,3.3,35W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 4650G,3.7,65W +AMD,Zen 2,AMD Ryzen(TM) 3 PRO 4450U,2.5,15W +AMD,Zen 2,AMD Ryzen(TM) 3 PRO 4355GE,3.5,35W +AMD,Zen 2,AMD Ryzen(TM) 3 PRO 4355G,3.8,65W +AMD,Zen 2,AMD Ryzen(TM) 3 PRO 4350GE,3.5,35W +AMD,Zen 2,AMD Ryzen(TM) 3 PRO 4350G,3.8,65W +AMD,Zen 2,AMD Ryzen(TM) 9 4900HS,3,35W +AMD,Zen 2,AMD Ryzen(TM) 9 4900H,3.3,35-54W +AMD,Zen 2,AMD Ryzen(TM) 7 4980U Microsoft Surface(R) Edition,2,15W +AMD,Zen 2,AMD Ryzen(TM) 7 4800U,1.8,15W +AMD,Zen 2,AMD Ryzen(TM) 7 4800HS,2.9,45W +AMD,Zen 2,AMD Ryzen(TM) 7 4800H,2.9,45W +AMD,Zen 2,AMD Ryzen(TM) 7 4700U,2,15W +AMD,Zen 2,AMD Ryzen(TM) 7 4700GE (OEM Only),3.1,35W +AMD,Zen 2,AMD Ryzen(TM) 7 4700G (OEM Only),3.6,65W +AMD,Zen 2,AMD Ryzen(TM) 5 4680U Microsoft Surface(R) Edition,2.2,15W +AMD,Zen 2,AMD Ryzen(TM) 5 4600U,2.1,15W +AMD,Zen 2,AMD Ryzen(TM) 5 4600H,3,45W +AMD,Zen 2,AMD Ryzen(TM) 5 4600GE (OEM Only),3.3,35W +AMD,Zen 2,AMD Ryzen(TM) 5 4600G,3.7,65W +AMD,Zen 2,AMD Ryzen(TM) 5 4500U,2.3,15W +AMD,Zen 2,AMD Ryzen(TM) 5 4500,3.6,65W +AMD,Zen 2,AMD Ryzen(TM) 3 4300U,2.7,15W +AMD,Zen 2,AMD Ryzen(TM) 3 4300GE (OEM Only),3.5,35W +AMD,Zen 2,AMD Ryzen(TM) 3 4300G (OEM Only),3.8,65W +AMD,Zen 2,AMD Ryzen(TM) 3 4100,3.8,65W +AMD,Zen 2,AMD Ryzen(TM) Threadripper(TM) PRO 3995WX,2.7,280W +AMD,Zen 2,AMD Ryzen(TM) Threadripper(TM) PRO 3975WX,3.5,280W +AMD,Zen 2,AMD Ryzen(TM) Threadripper(TM) PRO 3955WX,3.9,280W +AMD,Zen 2,AMD Ryzen(TM) Threadripper(TM) PRO 3945WX,4,280W +AMD,Zen 2,AMD Ryzen(TM) Threadripper(TM) 3990X,2.9,280W +AMD,Zen 2,AMD Ryzen(TM) Threadripper(TM) 3970X,3.7,280W +AMD,Zen 2,AMD Ryzen(TM) Threadripper(TM) 3960X,3.8,280W +AMD,Zen 2,AMD Ryzen(TM) 9 PRO 3900,3.1,65W +AMD,Zen 2,AMD Ryzen(TM) 7 PRO 3700U,2.3,15W +AMD,Zen 2,AMD Ryzen(TM) 7 PRO 3700,3.6,65W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 3600,3.6,65W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 3500U,2.1,15W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 3400GE,3.3,35W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 3400G,3.7,65W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 3350GE,3.3,35W +AMD,Zen 2,AMD Ryzen(TM) 5 PRO 3350G,3.6,65W +AMD,Zen 2,Zen +,2.1,15W +AMD,Zen 2,AMD Ryzen(TM) 3 PRO 3200GE,3.3,35W +AMD,Zen 2,AMD Ryzen(TM) 3 PRO 3200G,3.6,65W +AMD,Zen 2,AMD Ryzen(TM) 9 3950X,3.5,105W +AMD,Zen 2,AMD Ryzen(TM) 9 3900XT,3.8,105W +AMD,Zen 2,AMD Ryzen(TM) 9 3900X,3.8,105W +AMD,Zen 2,AMD Ryzen(TM) 9 3900 Processor (OEM Only),3.1,65W +AMD,Zen 2,AMD Ryzen(TM) 7 3800XT,3.9,105W +AMD,Zen 2,AMD Ryzen(TM) 7 3800X,3.9,105W +AMD,Zen 2,AMD Ryzen(TM) 7 3780U Microsoft Surface(R) Edition,2.3,15W +AMD,Zen 2,AMD Ryzen(TM) 7 3750H,2.3,35W +AMD,Zen 2,AMD Ryzen(TM) 7 3700X,3.6,65W +AMD,Zen 2,AMD Ryzen(TM) 7 3700U,2.3,15W +AMD,Zen 2,AMD Ryzen(TM) 7 3700C,2.3,15W +AMD,Zen 2,AMD Ryzen(TM) 5 3600XT,3.8,95W +AMD,Zen 2,AMD Ryzen(TM) 5 3600X,3.8,95W +AMD,Zen 2,AMD Ryzen(TM) 5 3600,3.6,65W +AMD,Zen +,AMD Ryzen(TM) 5 3580U Microsoft Surface(R) Edition,2.1,15W +AMD,Zen +,AMD Ryzen(TM) 5 3550H,2.1,35W +AMD,Zen +,AMD Ryzen(TM) 5 3500U,2.1,15W +AMD,Zen +,AMD Ryzen(TM) 5 3500C,2.1,15W +AMD,Zen 2,AMD Ryzen(TM) 5 3500 Processor (OEM Only),3.6,65W +AMD,Zen +,AMD Ryzen(TM) 5 3450U,2.1,15W +AMD,Zen +,AMD Ryzen(TM) 5 3400GE (OEM Only),3.3,35W +AMD,Zen +,AMD Ryzen(TM) 5 3400G with Radeon(TM) RX Vega 11 Graphics,3.7,65W +AMD,Zen +,AMD Ryzen(TM) 3 3350U,2.1,15W +AMD,Zen 2,AMD Ryzen(TM) 3 3300X,3.8,65W +AMD,Zen +,AMD Ryzen(TM) 3 3300U,2.1,15W +AMD,Zen,AMD Ryzen(TM) 3 3250U,2.6,15W +AMD,Zen,AMD Ryzen(TM) 3 3250C,2.6,15W +AMD,Zen,AMD Ryzen(TM) 3 3200U,2.6,15W +AMD,Zen +,AMD Ryzen(TM) 3 3200GE (OEM Only),3.3,35W +AMD,Zen +,AMD Ryzen(TM) 3 3200G with Radeon(TM) Vega 8 Graphics,3.6,65W +AMD,zen 2,AMD Ryzen(TM) 3 3100,3.6,65W +AMD,Zen +,AMD Athlon(TM) Gold PRO 3150GE,3.3,35W +AMD,Zen +,AMD Athlon(TM) Gold PRO 3150G,3.5,65W +AMD,Zen +,AMD Athlon(TM) Silver PRO 3125GE,3.4,35W +AMD,Zen +,AMD Athlon(TM) Gold 3150GE (OEM Only),3.3,35W +AMD,Zen +,AMD Athlon(TM) Gold 3150G (OEM Only),3.5,65W +AMD,Zen,AMD Athlon(TM) Silver 3050U,2.3,15W +AMD,Zen +,AMD Athlon(TM) Silver 3050GE (OEM Only),3.4,35W +AMD,Zen,AMD Athlon(TM) 3000G,3.5,35W +AMD,Zen,AMD Athlon(TM) 300U,2.4,15W +AMD,Zen,AMD Athlon(TM) PRO 200U Mobile Processor with Radeon(TM) Vega 3 Graphics,2.3,15W +AMD,Zen,AMD Athlon(TM) PRO 200GE,3.2,35W +AMD,Zen,AMD Athlon(TM) 240GE,3.5,35W +AMD,Zen,AMD Athlon(TM) 220GE,3.4,35W +AMD,Zen,AMD Athlon(TM) 200GE,3.2,35W +AMD,Zen +,AMD Ryzen(TM) Threadripper(TM) 2990WX,3,250W +AMD,Zen +,AMD Ryzen(TM) Threadripper(TM) 2970WX,3,250W +AMD,Zen +,AMD Ryzen(TM) Threadripper(TM) 2950X,3.5,180W +AMD,Zen +,AMD Ryzen(TM) Threadripper(TM) 2920X,3.5,180W +AMD,Zen +,AMD Ryzen(TM) 7 PRO 2700X,3.6,95W +AMD,Zen,AMD Ryzen(TM) 7 PRO 2700U,2.2,15W +AMD,Zen +,AMD Ryzen(TM) 7 PRO 2700,3.2,65W +AMD,Zen,AMD Ryzen(TM) 5 PRO 2600,3.4,65W +AMD,Zen,AMD Ryzen(TM) 5 PRO 2500U,2,15W +AMD,Zen,AMD Ryzen(TM) 5 PRO 2400GE with Radeon(TM) Vega 11 Graphics,3.2,35W +AMD,Zen,AMD Ryzen(TM) 5 PRO 2400G with Radeon(TM) Vega 11 Graphics,3.6,65W +AMD,Zen,AMD Ryzen(TM) 3 PRO 2300U,2,15W +AMD,Zen,AMD Ryzen(TM) 3 PRO 2200GE with Radeon(TM) Vega 8 Graphics,3.2,35W +AMD,Zen,AMD Ryzen(TM) 3 PRO 2200G with Radeon(TM) Vega 8 Graphics,3.5,65W +AMD,Zen,AMD Ryzen(TM) 7 2800H,3.3,45W +AMD,Zen +,AMD Ryzen(TM) 7 2700X,3.7,105W +AMD,Zen,AMD Ryzen(TM) 7 2700U,2.2,15W +AMD,Zen +,AMD Ryzen(TM) 7 2700E Processor,2.8,45W +AMD,Zen +,AMD Ryzen(TM) 7 2700,3.2,65W +AMD,Zen +,AMD Ryzen(TM) 5 2600X,3.6,95W +AMD,Zen,AMD Ryzen(TM) 5 2600H,3.2,45W +AMD,Zen +,AMD Ryzen(TM) 5 2600E,3.1,45W +AMD,Zen +,AMD Ryzen(TM) 5 2600,3.4,65W +AMD,Zen +,AMD Ryzen(TM) 5 2500X,3.6,65W +AMD,Zen,AMD Ryzen(TM) 5 2500U,2,15W +AMD,Zen,AMD Ryzen(TM) 5 2400GE with Radeon(TM) RX Vega 11 Graphics,3.2,35W +AMD,Zen,AMD Ryzen(TM) 5 2400G with Radeon(TM) RX Vega 11 Graphics,3.6,65W +AMD,Zen,AMD Ryzen(TM) 3 2300X,3.5,65W +AMD,Zen,AMD Ryzen(TM) 3 2300U,2,15W +AMD,Zen,AMD Ryzen(TM) 3 2200U,2.5,15W +AMD,Zen,AMD Ryzen(TM) 3 2200GE with Radeon(TM) Vega 8 Graphics,3.2,35W +AMD,Zen,AMD Ryzen(TM) 3 2200G with Radeon(TM) Vega 8 Graphics,3.5,65W +AMD,Zen,AMD Ryzen(TM) Threadripper(TM) 1950X,3.4,180W +AMD,Zen,AMD Ryzen(TM) Threadripper(TM) 1920X,3.5,180W +AMD,Zen,AMD Ryzen(TM) Threadripper(TM) 1900X,3.8,180W +AMD,Zen,AMD Ryzen(TM) 7 PRO 1700X Processor,3.4,95W +AMD,Zen,AMD Ryzen(TM) 7 PRO 1700,3,65W +AMD,Zen,AMD Ryzen(TM) 5 PRO 1600,3.2,65W +AMD,Zen,AMD Ryzen(TM) 5 PRO 1500,3.5,65W +AMD,Zen,AMD Ryzen(TM) 3 PRO 1300,3.5,65W +AMD,Zen,AMD Ryzen(TM) 3 PRO 1200,3.1,65W +AMD,Zen,AMD Ryzen(TM) 7 1800X,3.6,95W +AMD,Zen,AMD Ryzen(TM) 7 1700X,3.4,95W +AMD,Zen,AMD Ryzen(TM) 7 1700 Processor,3,65W +AMD,Zen,AMD Ryzen(TM) 5 1600X,3.6,95W +AMD,Zen +,AMD Ryzen(TM) 5 1600 (AF),3.2,65W +AMD,Zen,AMD Ryzen(TM) 5 1600,3.2,65W +AMD,Zen,AMD Ryzen(TM) 5 1500X,3.5,65W +AMD,Zen,AMD Ryzen(TM) 5 1400,3.2,65W +AMD,Zen,AMD Ryzen(TM) 3 1300X,3.5,65W +AMD,Zen,AMD Ryzen(TM) 3 1200,3.1,65W +AMD,Not out yet,AMD EPYC(TM) 9965,2.25 ,500W +AMD,Not out yet,AMD EPYC(TM) 9845,2.1,390W +AMD,Not out yet,AMD EPYC(TM) 9825,2.2,390W +AMD,Not out yet,AMD EPYC(TM) 9755,2.7,500W +AMD,Not out yet,AMD EPYC(TM) 9745,2.4,400W +AMD,Not out yet,AMD EPYC(TM) 9655P,2.6,400W +AMD,Not out yet,AMD EPYC(TM) 9655,2.6,400W +AMD,Not out yet,AMD EPYC(TM) 9645,2.3,320W +AMD,Not out yet,AMD EPYC(TM) 9575F,3.3,400W +AMD,Not out yet,AMD EPYC(TM) 9565,3.15 ,400W +AMD,Not out yet,AMD EPYC(TM) 9555P,3.2,360W +AMD,Not out yet,AMD EPYC(TM) 9555,3.2,360W +AMD,Not out yet,AMD EPYC(TM) 9535,2.4,300W +AMD,Not out yet,AMD EPYC(TM) 9475F,3.65 ,400W +AMD,Not out yet,AMD EPYC(TM) 9455P,3.15 ,300W +AMD,Not out yet,AMD EPYC(TM) 9455,3.15 ,300W +AMD,Not out yet,AMD EPYC(TM) 9375F,3.85 ,320W +AMD,Not out yet,AMD EPYC(TM) 9365,3.4,300W +AMD,Not out yet,AMD EPYC(TM) 9355P,3.55 ,280W +AMD,Not out yet,AMD EPYC(TM) 9355,3.55 ,280W +AMD,Not out yet,AMD EPYC(TM) 9335,3,210W +AMD,Not out yet,AMD EPYC(TM) 9275F,4.1,320W +AMD,Not out yet,AMD EPYC(TM) 9255,3.25 ,200W +AMD,Not out yet,AMD EPYC(TM) 9175F,4.2,320W +AMD,Not out yet,AMD EPYC(TM) 9135,3.65 ,200W +AMD,Not out yet,AMD EPYC(TM) 9115,2.6,125W +AMD,Not out yet,AMD EPYC(TM) 9015,3.6,125W +AMD,Zen 4,AMD EPYC(TM) 9754S,2.25 ,360W +AMD,Zen 4,AMD EPYC(TM) 9754,2.25 ,360W +AMD,Zen 4,AMD EPYC(TM) 9734,2.2,340W +AMD,Zen 4,AMD EPYC(TM) 9684X,2.55 ,400W +AMD,Zen 4,AMD EPYC(TM) 9654P,2.4,360W +AMD,Zen 4,AMD EPYC(TM) 9654,2.4,360W +AMD,Zen 4,AMD EPYC(TM) 9634,2.25 ,290W +AMD,Zen 4,AMD EPYC(TM) 9554P,3.1,360W +AMD,Zen 4,AMD EPYC(TM) 9554,3.1,360W +AMD,Zen 4,AMD EPYC(TM) 9534,2.45 ,280W +AMD,Zen 4,AMD EPYC(TM) 9474F,3.6,360W +AMD,Zen 4,AMD EPYC(TM) 9454P,2.75 ,290W +AMD,Zen 4,AMD EPYC(TM) 9454,2.75 ,290W +AMD,Zen 4,AMD EPYC(TM) 9384X,3.1,320W +AMD,Zen 4,AMD EPYC(TM) 9374F,3.85 ,320W +AMD,Zen 4,AMD EPYC(TM) 9354P,3.25 ,280W +AMD,Zen 4,AMD EPYC(TM) 9354,3.25 ,280W +AMD,Zen 4,AMD EPYC(TM) 9334,2.7,210W +AMD,Zen 4,AMD EPYC(TM) 9274F,04.05,320W +AMD,Zen 4,AMD EPYC(TM) 9254,2.9,200W +AMD,Zen 4,AMD EPYC(TM) 9224,2.5,200W +AMD,Zen 4,AMD EPYC(TM) 9184X,3.55 ,320W +AMD,Zen 4,AMD EPYC(TM) 9174F,4.1,320W +AMD,Zen 4,AMD EPYC(TM) 9124,3,200W +AMD,Zen 4,AMD EPYC(TM) 8534PN,2,175W +AMD,Zen 4,AMD EPYC(TM) 8534P,2.3,200W +AMD,Zen 4,AMD EPYC(TM) 8434PN,2,155W +AMD,Zen 4,AMD EPYC(TM) 8434P,2.5,200W +AMD,Zen 4,AMD EPYC(TM) 8324PN,02.05,130W +AMD,Zen 4,AMD EPYC(TM) 8324P,2.65 ,180W +AMD,Zen 4,AMD EPYC(TM) 8224PN,2,120W +AMD,Zen 4,AMD EPYC(TM) 8224P,2.55 ,160W +AMD,Zen 4,AMD EPYC(TM) 8124PN,2,100W +AMD,Zen 4,AMD EPYC(TM) 8124P,2.45 ,125W +AMD,Zen 4,AMD EPYC(TM) 8024PN,02.05,80W +AMD,Zen 4,AMD EPYC(TM) 8024P,2.4,90W +AMD,Zen 3,AMD EPYC(TM) 7203P,2.8,120W +AMD,Zen 3,AMD EPYC(TM) 7203,2.8,120W +AMD,Zen 3,AMD EPYC(TM) 7303P,2.4,130W +AMD,Zen 3,AMD EPYC(TM) 7303,2.4,130W +AMD,Zen 3,AMD EPYC(TM) 7643P,2.3,225W +AMD,Zen 3,AMD EPYC(TM) 7773X,2.2,280W +AMD,Zen 3,AMD EPYC(TM) 7763,2.45 ,280W +AMD,Zen 3,AMD EPYC(TM) 7713P,2,225W +AMD,Zen 3,AMD EPYC(TM) 7713,2,225W +AMD,Zen 3,AMD EPYC(TM) 7663,2,240W +AMD,Zen 3,AMD EPYC(TM) 7643,2.3,225W +AMD,Zen 3,AMD EPYC(TM) 7663P,2,240W +AMD,Zen 3,AMD EPYC(TM) 75F3,2.95 ,280W +AMD,Zen 3,AMD EPYC(TM) 7573X,2.8,280W +AMD,Zen 3,AMD EPYC(TM) 7543P,2.8,225W +AMD,Zen 3,AMD EPYC(TM) 7543,2.8,225W +AMD,Zen 3,AMD EPYC(TM) 7513,2.6,200W +AMD,Zen 3,AMD EPYC(TM) 74F3,3.2,240W +AMD,Zen 3,AMD EPYC(TM) 7473X,2.8,240W +AMD,Zen 3,AMD EPYC(TM) 7453,2.75 ,225W +AMD,Zen 3,AMD EPYC(TM) 7443P,2.85 ,200W +AMD,Zen 3,AMD EPYC(TM) 7443,2.85 ,200W +AMD,Zen 3,AMD EPYC(TM) 7413,2.65 ,180W +AMD,Zen 3,AMD EPYC(TM) 73F3,3.5,240W +AMD,Zen 3,AMD EPYC(TM) 7373X,03.05,240W +AMD,Zen 3,AMD EPYC(TM) 7343,3.2,190W +AMD,Zen 3,AMD EPYC(TM) 7313P,3,155W +AMD,Zen 3,AMD EPYC(TM) 7313,3,155W +AMD,Zen 3,AMD EPYC(TM) 72F3,3.7,180W +AMD,Zen 2,AMD EPYC(TM) 7H12,2.6,280W +AMD,Zen 2,AMD EPYC(TM) 7F72,3.2,240W +AMD,Zen 2,AMD EPYC(TM) 7F52,3.5,240W +AMD,Zen 2,AMD EPYC(TM) 7F32,3.7,180W +AMD,Zen 2,AMD EPYC(TM) 7742,2.25 ,225W +AMD,Zen 2,AMD EPYC(TM) 7702P,2,200W +AMD,Zen 2,AMD EPYC(TM) 7702,2,200W +AMD,Zen 2,AMD EPYC(TM) 7662,2,225W +AMD,Zen 2,AMD EPYC(TM) 7642,2.3,225W +AMD,Zen 2,AMD EPYC(TM) 7552,2.2,200W +AMD,Zen 2,AMD EPYC(TM) 7542,2.9,225W +AMD,Zen 2,AMD EPYC(TM) 7532,2.4,200W +AMD,Zen 2,AMD EPYC(TM) 7502P,2.5,180W +AMD,Zen 2,AMD EPYC(TM) 7502,2.5,180W +AMD,Zen 2,AMD EPYC(TM) 7452,2.35 ,155W +AMD,Zen 2,AMD EPYC(TM) 7402P,2.8,180W +AMD,Zen 2,AMD EPYC(TM) 7402,2.8,180W +AMD,Zen 2,AMD EPYC(TM) 7352,2.3,155W +AMD,Zen 2,AMD EPYC(TM) 7302P,3,155W +AMD,Zen 2,AMD EPYC(TM) 7302,3,155W +AMD,Zen 2,AMD EPYC(TM) 7282,2.8,120W +AMD,Zen 2,AMD EPYC(TM) 7272,2.9,120W +AMD,Zen 2,AMD EPYC(TM) 7262,3.2,155W +AMD,Zen 2,AMD EPYC(TM) 7252,3.1,120W +AMD,Zen 2,AMD EPYC(TM) 7232P,3.1,120W +AMD,Zen,AMD EPYC(TM) 7601,2.2,180W +AMD,Zen,AMD EPYC(TM) 7551P,2,180W +AMD,Zen,AMD EPYC(TM) 7551,2,180W +AMD,Zen,AMD EPYC(TM) 7501,2,170W +AMD,Zen,AMD EPYC(TM) 7451,2.3,180W +AMD,Zen,AMD EPYC(TM) 7401P,2,170W +AMD,Zen,AMD EPYC(TM) 7401,2,170W +AMD,Zen,AMD EPYC(TM) 7371,3.1,200W +AMD,Zen,AMD EPYC(TM) 7351P,2.4,170W +AMD,Zen,AMD EPYC(TM) 7351,2.4,170W +AMD,Zen,AMD EPYC(TM) 7301,2.2,170W +AMD,Zen,AMD EPYC(TM) 7281,2.1,170W +AMD,Zen,AMD EPYC(TM) 7261,2.5,170W +AMD,Zen,AMD EPYC(TM) 7251,2.1,120W +AMD,Zen 4,AMD EPYC(TM) 4584PX,4.2,120W +AMD,Zen 4,AMD EPYC(TM) 4564P,4.5,170W +AMD,Zen 4,AMD EPYC(TM) 4484PX,4.4,120W +AMD,Zen 4,AMD EPYC(TM) 4464P,3.7,65W +AMD,Zen 4,AMD EPYC(TM) 4364P,4.5,105W +AMD,Zen 4,AMD EPYC(TM) 4344P,3.8,65W +AMD,Zen 4,AMD EPYC(TM) 4244P,3.8,65W +AMD,Zen 4,AMD EPYC(TM) 4124P,3.8,65W +AMD,Zen 4,AMD EPYC(TM) Embedded 9654P,2.4,360W +AMD,Zen 4,AMD EPYC(TM) Embedded 9654,2.4,360W +AMD,Zen 4,AMD EPYC(TM) Embedded 9554P,3.1,360W +AMD,Zen 4,AMD EPYC(TM) Embedded 9554,3.1,360W +AMD,Zen 4,AMD EPYC(TM) Embedded 9534,2.45 ,280W +AMD,Zen 4,AMD EPYC(TM) Embedded 9454P,2.75 ,290W +AMD,Zen 4,AMD EPYC(TM) Embedded 9454,2.75 ,290W +AMD,Zen 4,AMD EPYC(TM) Embedded 9354P,3.25 ,280W +AMD,Zen 4,AMD EPYC(TM) Embedded 9354,3.25 ,280W +AMD,Zen 4,AMD EPYC(TM) Embedded 9254,2.9,200W +AMD,Zen 4,AMD EPYC(TM) Embedded 9124,3,200W +AMD,Zen 4c,AMD EPYC(TM) Embedded 8534P,2.3,200W +AMD,Zen 4c,AMD EPYC(TM) Embedded 8434P,2.5,200W +AMD,Zen 4,AMD Ryzen(TM) Embedded 8845HS,3.8,35-54W +AMD,Zen 4c,AMD EPYC(TM) Embedded 8324P,2.65 ,180W +AMD,Zen 4,AMD Ryzen(TM) Embedded 8840U,3.3,15-30W +AMD,Zen 4c,AMD EPYC(TM) Embedded 8224P,2.55 ,180W +AMD,Zen 4,AMD Ryzen(TM) Embedded 8645HS,4.3,35-54W +AMD,Zen 4c,AMD EPYC(TM) Embedded 8124P,2.45 ,125W +AMD,Zen 4,AMD Ryzen(TM) Embedded 8640U,3.5,15-30W +AMD,Zen 4c,AMD EPYC(TM) Embedded 8C24P,2.45 ,100W +AMD,Zen 4,AMD Ryzen(TM) Embedded 7945,3.7,65W +AMD,Zen 4,AMD Ryzen(TM) Embedded 7745,3.8,65W +AMD,Zen 4,AMD Ryzen(TM) Embedded 7700X,4.5,105W +AMD,Zen 4,AMD Ryzen(TM) Embedded 7645,3.8,65W +AMD,Zen 4,AMD Ryzen(TM) Embedded 7600X,4.7,105W +AMD,Zen 3,AMD EPYC(TM) Embedded 7713P,2,225W +AMD,Zen 3,AMD EPYC(TM) Embedded 7713,2,225W +AMD,Zen 3,AMD EPYC(TM) Embedded 7643,2.3,225W +AMD,Zen 3,AMD EPYC(TM) Embedded 7543P,2.8,225W +AMD,Zen 3,AMD EPYC(TM) Embedded 7543,2.8,225W +AMD,Zen 3,AMD EPYC(TM) Embedded 7443P,2.85 ,200W +AMD,Zen 3,AMD EPYC(TM) Embedded 7443,2.85 ,200W +AMD,Zen 3,AMD EPYC(TM) Embedded 7413,2.65 ,180W +AMD,Zen 3,AMD EPYC(TM) Embedded 7313P,3,155W +AMD,Zen 3,AMD EPYC(TM) Embedded 7313,3,155W +AMD,Zen 3,AMD Ryzen(TM) Embedded 5950E Processor,03.05,105W +AMD,Zen 3,AMD Ryzen(TM) Embedded 5900E Processor,3.35 ,105W +AMD,Zen 3,AMD Ryzen(TM) Embedded 5800E Processor,3.4,65-100W +AMD,Zen 3,AMD Ryzen(TM) Embedded 5600E Processor,3.3,65W +AMD,Zen 3,AMD Ryzen(TM) Embedded V3C48,3.3,45W +AMD,Zen 3,AMD Ryzen(TM) Embedded V3C44,3.5,45W +AMD,Zen 3,AMD Ryzen(TM) Embedded V3C18I,1.9,15W +AMD,Zen 3,AMD Ryzen(TM) Embedded V3C16,2,15W +AMD,Zen 3,AMD Ryzen(TM) Embedded V3C14,2.3,15W +AMD,Zen 2,AMD EPYC(TM) Embedded 7742,2.25 ,225W +AMD,Zen 2,AMD EPYC(TM) Embedded 7662,2,225W +AMD,Zen 2,AMD EPYC(TM) Embedded 7642,2.3,225W +AMD,Zen 2,AMD EPYC(TM) Embedded 7552,2.2,200W +AMD,Zen 2,AMD EPYC(TM) Embedded 7542,2.9,225W +AMD,Zen 2,AMD EPYC(TM) Embedded 7502P,2.5,180W +AMD,Zen 2,AMD EPYC(TM) Embedded 7502,2.5,180W +AMD,Zen 2,AMD EPYC(TM) Embedded 7452,2.35 ,155W +AMD,Zen 2,AMD EPYC(TM) Embedded 7402P,2.8,180W +AMD,Zen 2,AMD EPYC(TM) Embedded 7402,2.8,180W +AMD,Zen 2,AMD EPYC(TM) Embedded 7352,2.3,155W +AMD,Zen 2,AMD EPYC(TM) Embedded 7302P,3,155W +AMD,Zen 2,AMD EPYC(TM) Embedded 7302,3,155W +AMD,Zen 2,AMD EPYC(TM) Embedded 7282,2.8,120W +AMD,Zen 2,AMD EPYC(TM) Embedded 7272,2.9,120W +AMD,Zen 2,AMD EPYC(TM) Embedded 7262,3.2,155W +AMD,Zen 2,AMD EPYC(TM) Embedded 7252,3.1,120W +AMD,Zen 2,AMD EPYC(TM) Embedded 7232P,3.1,120W +AMD,Zen 2,AMD Ryzen(TM) Embedded V2A46 with Radeon(TM) Graphics,3,35-54W +AMD,Zen 2,AMD Ryzen(TM) Embedded V2748 with Radeon(TM) Graphics,2.9,35-54W +AMD,Zen 2,AMD Ryzen(TM) Embedded V2718 with Radeon(TM) Graphics,1.7,10-25W +AMD,Zen 2,AMD Ryzen(TM) Embedded V2546 with Radeon(TM) Graphics,3,35-54W +AMD,Zen 2,AMD Ryzen(TM) Embedded V2516 with Radeon(TM) Graphics,2.1,10-25W +AMD,Zen+,AMD Ryzen(TM) Embedded R2314 with Radeon(TM) Graphics,2.1,12-35W +AMD,Zen+,AMD Ryzen(TM) Embedded R2312 with Radeon(TM) Graphics,2.7,12-25W +AMD,Zen,AMD EPYC(TM) Embedded 7601,2.2,180W +AMD,Zen,AMD EPYC(TM) Embedded 755P,2,180W +AMD,Zen,AMD EPYC(TM) Embedded 7551,2,180W +AMD,Zen,AMD EPYC(TM) Embedded 7501,2,155W +AMD,Zen,AMD EPYC(TM) Embedded 7451,2.3,180W +AMD,Zen,AMD EPYC(TM) Embedded 740P,2,155W +AMD,Zen,AMD EPYC(TM) Embedded 7401,2,155W +AMD,Zen,AMD EPYC(TM) Embedded 7371,3.1,200W +AMD,Zen,AMD EPYC(TM) Embedded 735P,2.4,155W +AMD,Zen,AMD EPYC(TM) Embedded 7351,2.4,155W +AMD,Zen,AMD EPYC(TM) Embedded 7301,2.2,155W +AMD,Zen,AMD EPYC(TM) Embedded 7281,2.1,155W +AMD,Zen,AMD EPYC(TM) Embedded 7261,2.5,155W +AMD,Zen,AMD EPYC(TM) Embedded 7251,2.1,120W +AMD,Zen,AMD EPYC(TM) Embedded 3451,2.14 ,80-100W +AMD,Zen,AMD EPYC(TM) Embedded 3351,1.9,60-80W +AMD,Zen,AMD EPYC(TM) Embedded 3255,2.5,25-55W +AMD,Zen,AMD EPYC(TM) Embedded 3251,2.5,55W +AMD,Zen,AMD EPYC(TM) Embedded 3201,1.5,30W +AMD,Zen,AMD EPYC(TM) Embedded 3151,2.7,45W +AMD,Zen,AMD EPYC(TM) Embedded 3101,2.1,35W +AMD,Zen,AMD Ryzen(TM) Embedded V1807B with Radeon(TM) Vega 11 Graphics,3.35 ,35-54W +AMD,Zen,AMD Ryzen(TM) Embedded V1780B,3.35 ,35-54W +AMD,Zen,AMD Ryzen(TM) Embedded V1756B with Radeon(TM) Vega 8 Graphics,3.25 ,35-54W +AMD,Zen,AMD Ryzen(TM) Embedded V1605B with Radeon(TM) Vega 8 Graphics,2,12-25W +AMD,Zen,AMD Ryzen(TM) Embedded V1500B,2.2,12-25W +AMD,Zen,AMD Ryzen(TM) Embedded V1202B with Radeon(TM) Vega 3 Graphics,2.3,12-25W +AMD,Zen,AMD Ryzen(TM) Embedded R1606G with Radeon(TM) Vega 3 Graphics,2.6,12-25W +AMD,Zen,AMD Ryzen(TM) Embedded R1600,2.6,12--25W +AMD,Zen,AMD Ryzen(TM) Embedded R1505G with Radeon(TM) Vega 3 Graphics,2.4,12-25W +AMD,Zen,AMD Ryzen(TM) Embedded R1305G with Radeon(TM) Vega 3 Graphics,1.5,8-10W +AMD,Zen,AMD Ryzen(TM) Embedded R1102G with Radeon(TM) Vega 3 Graphics,1.2,6W \ No newline at end of file diff --git a/docs/script/getting_started/docker-compose.yaml b/docs/script/getting_started/docker-compose.yaml new file mode 100644 index 00000000..fcb7e603 --- /dev/null +++ b/docs/script/getting_started/docker-compose.yaml @@ -0,0 +1,84 @@ +services: + ############################################ + # SOURCES & DESTINATIONS # + ############################################ + # MongoDB + mongodb: + container_name: mongodb + image: ${MONGO_IMAGE} + networks: + - powerapi-network + profiles: + - mongodb + + + ############################################ + # POWERAPI # + ############################################ + # PowerAPI Sensor + sensor: + container_name: sensor + image: ${SENSOR_IMAGE} + privileged: true + command: + - "--config-file" + - "/etc/sensor.json" + volumes: + - ${PWD}/sensor/hwpc-${POWERAPI_SOURCE}.json:/etc/sensor.json + - type: bind + source: /proc + target: /proc + - type: bind + source: /sys + target: /sys + - type: bind + source: /var/lib/docker/containers + target: /var/lib/docker/containers + depends_on: + - ${POWERAPI_SOURCE} + networks: + - powerapi-network + restart: unless-stopped + + # PowerAPI Formula + formula: + container_name: formula + image: ${FORMULA_IMAGE} + command: + - "--config-file" + - "/etc/formula.json" + volumes: + - ${PWD}/formula/smartwatts-${POWERAPI_SOURCE}-${POWERAPI_DESTINATION}.json:/etc/formula.json + - ${PWD}/csv:/tmp/csv + networks: + - powerapi-network + restart: unless-stopped + + + + ############################################ + # TOOLS # + ############################################ + + # Mongo Express + mongo-express: + container_name: mongo-express + image: ${MONGOEXPRESS_IMAGE} + environment: + ME_CONFIG_MONGODB_SERVER: mongodb + ME_CONFIG_MONGODB_URL: mongodb://mongodb:27017 + depends_on: + - mongodb + ports: + - "8081:8081" + networks: + - powerapi-network + profiles: + - mongodb + +############################################ +# DOCKER # +############################################ + +networks: + powerapi-network: diff --git a/docs/script/getting_started/env_template b/docs/script/getting_started/env_template new file mode 100644 index 00000000..216686fc --- /dev/null +++ b/docs/script/getting_started/env_template @@ -0,0 +1,23 @@ +# Sensor image +SENSOR_IMAGE=powerapi/hwpc-sensor:${HWPC_SENSOR_VERSION:-latest} + +# Formula image +FORMULA_IMAGE=powerapi/smartwatts-formula:${SMARTWATTS_VERSION:-latest} + +# Source selection +# Available options: mongodb, socket +POWERAPI_SOURCE=mongodb + +# Destination selection +# Available options: influxdb2, prometheus, mongodb, csv +POWERAPI_DESTINATION=csv + +# Third party images +MONGO_IMAGE=mongo:latest +MONGOEXPRESS_IMAGE=mongo-express:latest +INFLUXDB_IMAGE=influxdb:latest +CSV_IMAGE=busybox:stable-glibc + +# Docker compose profiles +COMPOSE_PROFILES=${POWERAPI_SOURCE},${POWERAPI_DESTINATION} + diff --git a/docs/script/getting_started/formula/smartwatts-mongodb-csv.json b/docs/script/getting_started/formula/smartwatts-mongodb-csv.json new file mode 100644 index 00000000..73c6e248 --- /dev/null +++ b/docs/script/getting_started/formula/smartwatts-mongodb-csv.json @@ -0,0 +1,27 @@ +{ + "verbose": false, + "stream": true, + "input": { + "puller_mongodb": { + "model": "HWPCReport", + "type": "mongodb", + "name": "puller_mongodb", + "uri": "mongodb://mongodb:27017", + "db": "db_sensor", + "collection": "prep" + } + }, + "output": { + "pusher_csv": { + "model": "PowerReport", + "type": "csv", + "name": "pusher_csv", + "directory": "/tmp/csv" + } + }, + "cpu-base-freq": 1900, + "cpu-error-threshold": 2.0, + "disable-dram-formula": true, + "sensor-reports-frequency": 1000, + "cpu-tdp": 15 +} \ No newline at end of file diff --git a/docs/script/getting_started/sensor/hwpc-mongodb.json b/docs/script/getting_started/sensor/hwpc-mongodb.json new file mode 100644 index 00000000..4ee5f0b0 --- /dev/null +++ b/docs/script/getting_started/sensor/hwpc-mongodb.json @@ -0,0 +1,37 @@ +{ + "name": "sensor", + "verbose": true, + "frequency": 1000, + "cgroup_basepath": "/sys/fs/cgroup/", + "output": { + "type": "mongodb", + "uri": "mongodb://mongodb:27017", + "database": "db_sensor", + "collection": "prep" + }, + "system": { + "rapl": { + "events": [ + "RAPL_ENERGY_PKG" + ], + "monitoring_type": "MONITOR_ONE_CPU_PER_SOCKET" + }, + "msr": { + "events": [ + "TSC", + "APERF", + "MPERF" + ] + } + }, + "container": { + "core": { + "events": [ + "CPU_CLK_THREAD_UNHALTED:REF_P", + "CPU_CLK_THREAD_UNHALTED:THREAD_P", + "LLC_MISSES", + "INSTRUCTIONS_RETIRED" + ] + } + } +} \ No newline at end of file diff --git a/docs/script/getting_started/start.py b/docs/script/getting_started/start.py new file mode 100644 index 00000000..10c2d2d3 --- /dev/null +++ b/docs/script/getting_started/start.py @@ -0,0 +1,359 @@ +# Copyright (c) 2024, INRIA +# Copyright (c) 2024, University of Lille +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this +# list of conditions and the following disclaimer. +# +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# * Neither the name of the copyright holder nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +import re +import csv +import os +import sys +import subprocess +import json +import shutil + +# List of available processor architectures Template: "n - Arch name" +# If an arch is added, the case statement in the +# start_demo function should be updated accordingly with the proper core events +# https://powerapi.org/reference/sensors/hwpc-sensor/ +architectures_table = [["Sandy bridge", "Ivy bridge", "Haswell", "Broadwell", "Comet lake"], + ["Skylake", "Cascade lake", "Kaby Lake R", "Kaby Lake", "Coffee Lake", "Amber Lake", + "Rocket lake", "Whiskey lake"], + ["Zen", "Zen+", "Zen 2"], + ["Zen 3", "Zen 4"]] + +# The csv directory path +csv_directory_path = "csv" + +# The default execution time for the demo +minimum_execution_time = 30 + + +def start_docker_compose(time): + """ + Start the docker compose stack and the logs + :param time: The duration of the demo + """ + + with open('env_template', 'r', encoding='UTF-8') as env_template_file, open('.env', 'a', encoding='UTF-8') \ + as env_file: + for current_file_line in env_template_file: + env_file.write(current_file_line) + + if os.path.exists(csv_directory_path): + shutil.rmtree(csv_directory_path) + + + previous_umask = os.umask(0) + try: + os.makedirs(csv_directory_path, exist_ok=True) + finally: + os.umask(previous_umask) + + os.system("bash -c 'docker compose up -d'") + os.system("bash -c 'docker compose logs sensor -f &'") + os.system("bash -c 'docker compose logs formula -f &'") + os.system("bash -c 'sleep " + str(time) + "'") + stop_docker_compose() + + +def stop_docker_compose(): + """ + Stop the docker compose stack and clean the environment + """ + os.system("bash -c 'set -ueo pipefail'") + os.system("bash -c 'set +x'") + os.system("bash -c 'docker compose down'") + open('.env', 'w', encoding='UTF-8').close() + + +def load_cpus_information(): + """ + Load CPUs information from a CSV file and return the data as a list of dictionaries. + """ + cpus_information = [] + with open("./cpu.csv", mode='r', newline='', encoding='UTF-8') as cpu_csv_file: + cpus_information.extend(csv.DictReader(cpu_csv_file)) + return cpus_information + + +def load_csv_files_from_directory(directory=csv_directory_path): + """ + Load CSV files from the specified directory and return the data as a list of dictionaries. + :param directory: The directory that contains the csv files + """ + data = [] + for root_directory, _, files in os.walk(directory): + for current_file_name in files: + if current_file_name.endswith('.csv'): + current_file_path = os.path.join(root_directory, current_file_name) + with open(current_file_path, mode='r', newline='', encoding='UTF-8') as current_file: + data.extend(csv.DictReader(current_file)) + return data + + +def compute_statistics(data, scope): + """ + Compute average, maximum, and minimum consumption for the given scope (CPU or DRAM) by using a given data. + :param data: Data to compute statistics + :param scope: CPU or DRAM + """ + stats = {} + for current_row in data: + if current_row['scope'] == scope and current_row['target'] != 'rapl': + target = current_row['target'] + consumption = float(current_row['power']) + stats.setdefault(target, []).append(consumption) + + return { + target: { + 'avg': sum(consumptions) / len(consumptions), + 'max': max(consumptions), + 'min': min(consumptions) + } for target, consumptions in stats.items() + } + + +def print_statistics(stats, title): + """ + Print statistics (average, max, min) for the given data in a formatted table. + :param stats: Statistics to be printed + :param title: Title used for the provided statistics + """ + if not stats: + return + + print(f"\n{title}\n") + print(f"{'Target':<20} {'Average consumption':<20} {'Maximum consumption':<20} {'Minimum consumption':<20}") + print("=" * 80) + + total = {'avg': 0, 'max': 0, 'min': 0} + for target, values in stats.items(): + if target != 'global': + print(f"{target:<20} {values['avg']:<20.2f} {values['max']:<20.2f} {values['min']:<20.2f}") + else: + total = values + + print("-" * 80) + print(f"{'Global':<20} {total['avg']:<20.2f} {total['max']:<20.2f} {total['min']:<20.2f}") + + +def start_pretty_print(): + """ + Pretty print the CPU and DRAM power consumption statistics from CSV files. + """ + print("The consumptions are given in Watt, note that the precision depends on the configuration file\n") + + data = load_csv_files_from_directory() + + # Calculate and print CPU statistics + cpu_stats = compute_statistics(data, 'cpu') + print_statistics(cpu_stats, "CPU Consumption Statistics :") + + # Calculate and print DRAM statistics + dram_stats = compute_statistics(data, 'dram') + print_statistics(dram_stats, "DRAM Consumption Statistics :") + + # Could add the GPU statistics here + + print("\nFor more precise evaluation, consult the PowerAPI documentation to adjust configurations.\n") + + +def find_cpu(data): + """ + Find the cpu in the list of compatible cpu + """ + option = [] + line = "cat /proc/cpuinfo | grep 'model name'" + result = subprocess.check_output(line, shell=True, text=True).split("\n") + print("The CPU found is" + result[0].split(":")[1]) + parse = parse_processor_name(result[0]) + for row in data: + if parse[0] in row["Name"] and row["Manufacturer"] == parse[1]: + option.append(row) + + if len(option) == 0: + print("It looks like you cpu is not supported by PowerAPI") + sys.exit() + elif len(option) == 1: + print("Your CPU should be supported by PowerAPI") + cpu = option[0] + else: + print("Please select your CPU from this list") + for i in range(len(option)): + print(str(i) + " - " + option[i]["Name"]) + choice = int(input()) + print("You have selected : " + option[choice]["Name"]) + if choice < 0 or choice >= len(option): + print("Invalid choice, exiting...") + sys.exit() + cpu = option[choice] + return cpu + + +def parse_processor_name(name): + """ + Parse the processor name to extract the id and the brand + :param name: Name of the processor, extracted from /proc/cpuinfo + :return: id adn brand of the processor + """ + if "Intel" in name: + brand = "Intel" + elif "AMD" in name: + brand = "AMD" + else: + brand = "Unknown" + id_pattern = r"\b\d{3,4}[A-Z0-9]*\b" + + id_res = re.search(id_pattern, name) + + return id_res.group(), brand + + +def start_demo(): + """ + Start the demo by selecting the processor architecture + this will update the sensor configuration file + """ + print("PowerAPI demo") + print("=" * 80) + cpu = find_cpu(load_cpus_information()) + + print("\nSetting up configuration files...") + print("-" * 80) + # Update core events in the sensor configuration + # file based on the selected processor architecture + with open('sensor/hwpc-mongodb.json', encoding='UTF-8') as hwpc_sensor_configuration_file: + sensor_configuration = json.load(hwpc_sensor_configuration_file) + + if cpu["Family"] in architectures_table[0]: + sensor_configuration['container']['core']['events'] = [ + "CPU_CLK_UNHALTED:REF_P", + "CPU_CLK_UNHALTED:THREAD_P", + "LLC_MISSES", + "INSTRUCTIONS_RETIRED" + ] + elif cpu["Family"] in architectures_table[1]: + sensor_configuration['container']['core']['events'] = [ + "CPU_CLK_THREAD_UNHALTED:REF_P", + "CPU_CLK_THREAD_UNHALTED:THREAD_P", + "LLC_MISSES", + "INSTRUCTIONS_RETIRED" + ] + elif cpu["Family"] in architectures_table[2]: + sensor_configuration['container']['core']['events'] = [ + "CYCLES_NOT_IN_HALT", + "RETIRED_INSTRUCTIONS", + "RETIRED_UOPS" + ] + elif cpu["Family"] in architectures_table[3]: + sensor_configuration['container']['core']['events'] = [ + "CYCLES_NOT_IN_HALT", + "RETIRED_INSTRUCTIONS", + "RETIRED_OPS" + ] + + print("Core events updated") + + # Check for the cgroup version and update + # the sensor configuration file accordingly + cgroup = subprocess.run(["stat", "-fc", "%T", "/sys/fs/cgroup/"], + text=True, capture_output=True, check=True) + if cgroup.stdout == "cgroup2fs\n": + sensor_configuration["cgroup_basepath"] = "/sys/fs/cgroup/" + else: + sensor_configuration["cgroup_basepath"] = "/sys/fs/cgroup/perf_event" + + print("cgroup version updated") + + with open('sensor/hwpc-mongodb.json', 'w', encoding='UTF-8') as hwpc_sensor_configuration_file: + json.dump(sensor_configuration, hwpc_sensor_configuration_file, indent=4) + + # Update parameters in the formula configuration + with open('formula/smartwatts-mongodb-csv.json', encoding='UTF-8') as smartwatts_configuration_file: + formula_config = json.load(smartwatts_configuration_file) + + if cpu["Base frequency"] != '': + formula_config["cpu-base-freq"] = int(float(cpu["Base frequency"]) * 1000) + print("Base frequency updated") + + if cpu["TDP"] != '': + formula_config["cpu-tdp"] = int(cpu["TDP"][:-1]) + print("TDP updated\n") + + with open('formula/smartwatts-mongodb-csv.json', 'w', encoding='UTF-8') as smartwatts_configuration_file: + json.dump(formula_config, smartwatts_configuration_file, indent=4) + + print(f'Please enter the number of second you want the demo to run for (minimum {minimum_execution_time}) or exit ' + f'to quit:') + waiting_for_execution_time = True + while waiting_for_execution_time: + try: + execution_time = input() + execution_time = int(execution_time) + if execution_time < minimum_execution_time: + print("Invalid input, please enter a valid number or exit to quit") + else: + waiting_for_execution_time = False + except ValueError: + if execution_time == "exit": + print("Exiting...") + sys.exit() + else: + print("Invalid input, please enter a valid number or exit to quit") + + print("\nStarting the demo...") + print("-" * 80) + print(f'The demo will run for {execution_time} seconds\n') + print("If you wish to stop it, Ctrl-C will do so and stop the docker compose stack\n") + + start_docker_compose(execution_time) + + verification = 0 + + # Get all the csv power report in the csv directory + for root, _, files in os.walk(csv_directory_path): + for filename in files: + if filename.endswith('.csv'): + verification += 1 + file_path = os.path.join(root, filename) + print(f'\nThe power report is available at: {file_path}') + + if verification == 0: + print("\nNo power report available, " + "please check the configuration file " + "and the sensor availability for your " + "processor architecture\n") + else: + print("\nThe demo has ended, " + "you can see the result under the /csv directory, but" + " here is a quick summary\n") + + start_pretty_print() + + +if __name__ == '__main__': + start_demo() diff --git a/docs/script/smartwatts_auto_config.md b/docs/script/smartwatts_auto_config.md index 1ea9382f..dce3f479 100644 --- a/docs/script/smartwatts_auto_config.md +++ b/docs/script/smartwatts_auto_config.md @@ -17,7 +17,7 @@ echo " "stream": true, "input": { "puller": { - "model": "HWPCReport", + "model": "HWPC Report", "type": "socket", "uri": "127.0.0.1", "port": 8080, diff --git a/mkdocs.yml b/mkdocs.yml index faccb414..d32e688e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -84,9 +84,9 @@ nav: - Formulas: #- RAPL: reference/formulas/rapl.md - SmartWatts: reference/formulas/smartwatts.md - - Configuration Files: reference/formulas/configuration_files.md - - Sources/Destinations: - - Description: reference/database/sources_destinations.md + #- Configuration Files: reference/formulas/configuration_files.md +# - Sources/Destinations: +# - Description: reference/database/sources_destinations.md - Processors: - Description: reference/processors/processors.md - Reports: