Boavizta / boaviztapi

🛠 Giving access to BOAVIZTA reference data and methodologies trough a RESTful API
GNU Affero General Public License v3.0
68 stars 23 forks source link

GPU component manufacture impacts #65

Open da-ekchajzer opened 2 years ago

da-ekchajzer commented 2 years ago

Problem

No GPU components are implemented. It makes it to impossible to evaluate high performance compute server. Some services cannot be assessed :

Solution

We need resources on scope 3 impacts of GPUs. Are GPUs manufacture impacts depend on their die size ?

Additional context or elements

Linked with this issue : https://github.com/Boavizta/environmental-footprint-data/issues/50

da-ekchajzer commented 2 years ago

ECODIAG APPROACH

Link : https://ecoinfo.cnrs.fr/ecodiag-calcul/

gpu: {
    label_fr:           'GPU puissant',
    label_en:           'Powefull GPU',
    regex:              /(carte graphique|gpu)/i,
    grey_CO2:           {mean:60,std:hypot([0.6,0.6])},
                            // It highly depends on the GPU, but assuming only powerful GPU's are counted,
                            // and provided that on average the footprint of a motherboard is about 113 kgCO2e
                            // this choice seems reasonable.
                            // Moreover, in NumEU study, a desktop game console is estimated at 170 kgCO2e,
                            // so assigning 35% for the GPU seems to be reasonable too.
                            // Uncertainties:
                            //  - 60% for the LCA
                            //  - 60% for the variation across GPUs
    duration:            4,
    yearly_consumption:  0,
    models: {
      default: {
        label_fr: 'Défaut',
        regex: /(carte graphique|graphic.*card|\Wgtx\W|\Wrtx\W|\Wquadro\W|\Wtitan\W|\Wgeforce\W|\Wgpu\W)/i
      }
    }
  },

};
samuelrince commented 1 year ago

First approximation would be to consider a GPU as "a compute chip" + "a memory bank" + "a board" and apply adapted formulas from CPU, RAM and a fix value for the board.

Compute chip part

The original CPU formula to compute manufacturing impact is:

$$ \text{CPU}\text{manufacture}^\text{criteria} = (\text{CPU}_{\text{core units}} \text{CPU}_{\text{die size per core}} + 0.491 ) \text{CPU}_\text{manufacture die}^\text{criteria} + \text{CPU}\\text{manufacture base}^\text{criteria} $$

We can rewrite it for GPU components:

$$ \text{GPU}\text{manufacture chip}^\text{criteria} = (\text{GPU}_{\text{die size}} + 0.491 ) * \text{CPU}_\text{manufacture die}^\text{criteria} + \text{CPU}\\text{manufacture base}^\text{criteria} $$

⚠️ we keep the CPU manufacturing impact factors for now.

Memory part

We can keep the same formula (using highest density value if unknown):

$$ \text{GPU}\text{manufacture memory}^\text{criteria} = (\text{GPU}_{\text{memory capacity}} / \text{RAM}_{\text{density}}) * \text{RAM}_\text{manufacture die}^\text{criteria} + \text{RAM}\\text{manufacture base}^\text{criteria} $$

⚠️ we keep the RAM manufacturing impact factors for now.

Board part

For the board part I guess we can take constants from the motherboard and maybe divide them by 2 (or 3)?. I guess that given the precision of the above formulas it would be fair to say that a GPU board is around half (or one-third) the size of a motherboard and contains half (or one-third) the number of electronic components.

$$ \text{GPU}{\text{manufacture board}}^{\text{criteria}} = \frac{1}{2} * \text{motherboard}\{\text{manufacture}}^{\text{criteria}} $$

Total manufacturing impact

$$ \text{GPU}{\text{manufacture}}^{\text{criteria}} = \text{GPU}_{\text{manufacture chip}}^{\text{criteria}} + \text{GPU}_{\text{manufacture memory}}^{\text{criteria}} + \text{GPU}\{\text{manufacture board}}^{\text{criteria}} $$

Let me know what you think on this approach. 🤗

Edit: Change latex formula because GitHub can't render them properly...

samuelrince commented 1 year ago

After a great discussion with @ThibaultPirson we will make some updates to the proposed formulas above and we will start with the "board part".

The objective here is to quantify the contribution of the PCB manufacturing for the GPU.

Board manufacturing formula

Hypothesis:

So the final GPU board manufacturing formula will only depend on the $area$ as a first approximation.

$$ \text{GPU}{\text{manufacture board}}^{\text{criteria}}(area) = area * \text{PCB}\{\text{manufacture}}^{\text{criteria}} $$

With the followings:

Estimate impacts factors

Liu et al., 2014

Screen Shot 2022-12-26 at 4 36 24 PM

For a 4-layered PCB epoxy based substrate (FR-4) we can retain the GWP impact factor per square meter:

$$ (\text{PCB}{\text{manufacture}}^{\text{GWP}})\\text{Liu et al., 2014} = 39.2\ kgCO2eq.m^{-2} $$

Ozkan et al., 2018

The study compares there results with Liu et al., 2014. Still with a 4-layered FR-4 PCB.

Screen Shot 2022-12-26 at 4 47 50 PM

$$ (\text{PCB}{\text{manufacture}}^{\text{GWP}})\\text{Ozkan et al., 2018} = 18.6\ kgCO2eq.m^{-2} $$

$$ (\text{PCB}{\text{manufacture}}^{\text{ADP}})\\text{Ozkan et al., 2018} = 1.71.10^{-3}\ kgSBeq.m^{-2} $$

Nassajfar et al., 2021

Still with a 4-layered FR-4 PCB.

Screen Shot 2022-12-26 at 4 49 56 PM

$$ (\text{PCB}{\text{manufacture}}^{\text{GWP}})\\text{Nassajfar et al., 2021} = 34.8\ kgCO2eq.m^{-2} $$

Conclusion and critics

We can take the following impact factors for now:

We can consider these impact factors as lower bounds because, from what I have seen, GPU boards tend to be from 8 to 14 layers PCB. Here we have impact factors for 4 layered PCB only. Any input on this part to estimate for PCBs with more layers will be a great help.

Let me know if you have any comments, I'll try to do the same work for memory and chip parts soon!

Thanks again @ThibaultPirson for sharing his knowledge on this subject ! 🤗|

Edit: Change latex formula because GitHub can't render them properly...

da-ekchajzer commented 1 year ago

Thank you for this work !

I was wondering if we could open 1 issue per component, since all features of the API will benefit from these improvements ? It would also be easier to list all available impact factors for each component. I think we could also open one for SSD and HDD sine we have new data sources that could be used (even if it is not related to GPU).

For the motherboard, we were wondering how could we use ADPf (given in MJ) to retrieve an impact factor for PE ? I guess that the main difference is that PE will also account for the primary energy produce by renewable sources. I'll try to dig on this subject. Maybe I could ask the LCA experts on Boavizta chat.

We could capitalize on this aggregation of impact factors sources to:

I will try to dig down myself and ping some LCA experts to get these data sources.

samuelrince commented 1 year ago

Still in the process of untanggling all impact factors of component formulas. Here is the actual state for CPUs. For Boavizta members only, the original document is here.

CPU Manufacturing Formula

Die

Scope and hypotheses:

$$ \mathbf{impact\_cpu\_die}(die\_size) = die\_size * \mathbf{IMP\_CPU\_DIE} $$

IMP_CPU_DIE:

Socket

Scope and hypotheses:

$$ \mathbf{impact\_cpu\_socket} = \mathbf{IMP\_CPU\_SOCKET} $$

IMP_CPU_SOCKET:

Transportation

Scope and hypotheses:

$$ \mathbf{impact\_cpu\_transportation} = \mathbf{IMP\_CPU\_TRANSPORTATION} $$

IMP_CPU_TRANSPORTATION:

Packaging

??? No mention of a packaging impact.

Heat sink

Scope and hypotheses:

$$ \mathbf{impact\_cpu\_heat\_sink} = \mathbf{IMP\_CPU\_HEAT\_SINK} $$

IMP_CPU_HEAT_SINK:

Aggregated impacts

$$ \begin{align}    \mathbf{impact\_cpu}(die\_size) =\ &\mathbf{impact\_cpu\_die}(die\_size) \    &+ \mathbf{impact\_cpu\_socket} \ &+ \mathbf{impact\_cpu\_transportation} \ &+ \mathbf{impact\_cpu\_heat\_sink} \ \end{align} $$

Source: Green Cloud Computing

I feel like all the sub impacts listed for CPU manufacturing also apply for GPU "compute chip" manufacturing. Does anyone have an opinion on that?

$$ \begin{align} \mathbf{GPU}_{\text{manufacture compute chip}}(die\_size) =\ &\mathbf{impact\_cpu\_die}(die\_size) \ &+ \mathbf{impact\_cpu\_socket} \ &+ \mathbf{impact\_cpu\_transportation} \ &+ \mathbf{impact\_cpu\_heat\_sink} \ \end{align} $$

samuelrince commented 1 year ago

Correction from the previous message. When computing the impacts for the compute chip in a GPU, we should not include the "socket" part as it is soldered on the board directly. Thus, the formula is:

$$ \begin{align} \mathbf{GPU}_{\text{manufacture compute chip}}(die\_size) =\ &\mathbf{impact\_cpu\_die}(die\_size) \ &+ \mathbf{impact\_cpu\_transportation} \ &+ \mathbf{impact\_cpu\_heat\_sink} \ \end{align} $$

samuelrince commented 1 year ago

RAM Manufacturing Formula

Die

Scope and hypotheses:

$$ \mathbf{impact\_ram\_die}(capacity, density) = \frac{capacity}{density} * \mathbf{IMP\_RAM\_DIE} $$

With the $capacity$ in GB and $density$ in GB/cm2. If the $density$ is unknown we can take the average value suggested in the study for 20nm of 15.01Gbit/cm2.

Screen Shot 2023-06-16 at 6 28 21 PM

IMP_RAM_DIE:

Transportation

Scope and hypotheses:

$$ \mathbf{impact\_ram\_transportation} = \mathbf{IMP\_RAM\_TRANSPORTATION} $$

IMP_RAM_TRANSPORTATION:

PCB

Scope and hypotheses:

$$ \mathbf{impact\_ram\_pcb} = \mathbf{IMP\_RAM\_PCB} $$

IMP_RAM_PCB:

Gold connectors

Scope and hypotheses:

$$ \mathbf{impact\_ram\_gold} = \mathbf{IMP\_RAM\_GOLD} $$

IMP_RAM_GOLD:

Aggregated impacts

$$ \begin{align}    \mathbf{impact\_ram}(capacity, density) =\ &\mathbf{impact\_ram\_die}(capacity, density) \    &+ \mathbf{impact\_ram\_transportation} \ &+ \mathbf{impact\_ram\_pcb} \ &+ \mathbf{impact\_ram\_gold} \ \end{align} $$

Source: Green Cloud Computing

For the GPU memory part we can take the impacts of the memory die and transportation. The PCB part is already done above and the gold part can be inferred from the size of the connector (next step).

$$ \begin{align} \mathbf{GPU}_{\text{manufacture memory chip}}(capacity, density) =\ &\mathbf{impact\_ram\_die}(capacity, density) \ &+ \mathbf{impact\_ram\_transportation} \ \end{align} $$

samuelrince commented 1 year ago

Interesting observation, we clearly don't have the same values concerning the PCB manufacturing for RAM modules in Green Cloud Computing compared to other studies above.

Green Cloud Computing Liu et al., 2014 Ozkan et al., 2018 Nassajfar et al., 2021
GWP (kgCO2eq./m2) 422 39.2 18.6 34.8
ADP (kgSbeq./m2) 1.49e-2 NA 1.71e-3 NA
PE (MJ/m2) 4937 NA NA NA

I guess the assumption of a 4-layer PCB is too light for RAM modules and thus GPU board as well? We also need to check where Green Cloud Computing values come from.

samuelrince commented 1 year ago

Concerning the amount of gold in the connector, I think we can estimate based on a comparison of RAM DDR4 connector from Green Cloud Computing and PCIe 4.0 connectors.

DDR4 connector

Specifications:

Pin area estimation

DDR4 RAM modules have pins of different height, but constant width. Using the schematics from Micron we can get the following dimensions :

A small portion of the pins also have intermediate heights between 1.9 and 2.4 mm. I assume that we have 50/50 big pins and small pins. This is an upper bound estimation, there is a little more of small pins compared to big pins. So, the average pin dimensions are 2.15 mm [height] x 0.6 mm [width].

Thus, the average pin area is 2.15 x 0.6 = 1.29 mm2

Density of gold

Total area of pins: 288 * 1.29 = 371.52 mm2 Density of gold: 29.35 / 371.52 ~= 0.07899 mg Au / mm2

PCIe connector

Specifications:

Connector Number of pins
PCIe x1 36
PCIe x4 64
PCIe x8 98
PCIe x16 164

Today, the majority of GPUs use PCIe x16, and smaller ones use PCIe x8.

From the specs, we can deduce the following characteristics:

Some pins have a smaller height, but we will not consider it. So, we will get an upper bound estimation.

Amount of gold

From the previous estimations, we can compute the amount of gold for PCIe connectors based on the size of the pins.

Connector Number of pins Amount of gold (mg)
PCIe x1 36 8.36
PCIe x4 64 14.86
PCIe x8 98 22.76
PCIe x16 164 38.09

Manufacturing impacts

Based on the impacts reported for DDR4 RAM in Green Cloud Computing, we can estimate them for a PCIe connector.

Connector Number of pins Amount of gold (mg) GWP manufacturing (kg CO2eq.) ADP manufacturing (kg Sb eq.) PE manufacturing (MJ)
PCIe x1 36 8.36 1.13e-1 4.64e-4 2.05
PCIe x4 64 14.86 2.35e-1 8.25e-3 3.64
PCIe x8 98 22.76 3.60e-1 1.26e-3 5.57
PCIe x16 164 38.09 6.02e-1 2.12e-3 9.32
da-ekchajzer commented 1 year ago

Nice work ! Thanks for given that mutch detail. As far as I understand, you got all the piece of the GPU puzzle ?

Have you been able to compute it for some GPU ? I would be interested to see and to share it with some “experts”.

samuelrince commented 1 year ago

Thanks @da-ekchajzer I'll make a complete summary and compute for some GPUs this week!

samuelrince commented 1 year ago

Summary of GPU manufacturing impacts


Edits:

Compute chip

Scope: Die + Transportation

Hypotheses and limitations:

$$ \mathbf{GPU}_{\text{manufacture compute chip}}(die\_size) = die\_size * \mathbf{IMP\_GPU\_COMP\_DIE} + \mathbf{IMP\_GPU\_COMP\_DIE\_TRANSPORT} $$

Memory chips

Scope: Die + Transportation

Hypotheses and limitations:

$$ \mathbf{GPU}_{\text{manufacture memory chips}}(capacity, density) = \frac{capacity}{density} * \mathbf{IMP\_GPU\_MEM\_DIE} + \mathbf{IMP\_GPU\_MEM\_DIE\_TRANSPORT} $$

Board and other

Scope: PCB + PCIe connector + Heat Sink

Hypotheses and limitations:

$$ \mathbf{GPU}_{\text{manufacture board}}(pcb\_area) = pcb\_area * \mathbf{IMP\_GPU\_PCB} + \mathbf{IMP\_GPU\_PCIE\_X16}^\dagger + \mathbf{IMP\_GPU\_HEAT\_SINK} $$

$\dagger$ we can also consider PCIe x8 connectors for smaller GPUs.

Impact factors

Constant Impact Value Unit
IMP_GPU_COMP_DIE GWP 1.97E-02 kg CO2eq. / mm2
IMP_GPU_COMP_DIE ADP 5.87E-09 kg Sbeq. / mm2
IMP_GPU_COMP_DIE PE 2.65E-01 MJ / mm2
IMP_GPU_COMP_DIE_TRANSPORT GWP 3.45E-01 kg CO2eq.
IMP_GPU_COMP_DIE_TRANSPORT ADP 4.33E-08 kg Sbeq.
IMP_GPU_COMP_DIE_TRANSPORT PE 5.33E+00 MJ
IMP_GPU_MEM_DIE GWP 2.20E-02 kg CO2eq. / mm2
IMP_GPU_MEM_DIE ADP 6.30E-07 kg Sbeq. / mm2
IMP_GPU_MEM_DIE PE 2.73E-01 MJ / mm2
IMP_GPU_MEM_DIE_TRANSPORT GWP 2.99E+00 kg CO2eq.
IMP_GPU_MEM_DIE_TRANSPORT ADP 3.75E-07 kg Sbeq.
IMP_GPU_MEM_DIE_TRANSPORT PE 4.61E+01 MJ
IMP_GPU_PCB GWP 4.22E-04 kg CO2eq. / mm2
IMP_GPU_PCB ADP 1.49E-08 kg Sbeq. / mm2
IMP_GPU_PCB PE 4.94E-03 MJ / mm2
IMP_GPU_PCIE_X16 GWP 2.95E-01 kg CO2eq.
IMP_GPU_PCIE_X16 ADP 1.03E-03 kg Sbeq.
IMP_GPU_PCIE_X16 PE 4.56 MJ
IMP_GPU_PCIE_X8 GWP 1.76E-01 kg CO2eq.
IMP_GPU_PCIE_X8 ADP 6.18E-04 kg Sbeq.
IMP_GPU_PCIE_X8 PE 2.72 MJ
IMP_GPU_HEAT_SINK GWP 3.12E+00 kg CO2eq.
IMP_GPU_HEAT_SINK ADP 5.19E-04 kg Sbeq.
IMP_GPU_HEAT_SINK PE 6.33E+01 MJ

Discussions

Examples

NVIDIA GeForce RTX 4090

Characteristics (from techpowerup)

Impacts

Compute chip
Impact Formula Result Unit
GWP 609 * 1.97E-02 + 3.45E-01 1.23E+01 kg CO2eq.
ADP 609 * 5.87E-09 + 4.33E-08 3.62E-06 kg Sbeq.
PE 609 * 2.65E-01 + 5.33 1.67E+02 MJ
Memory chips
Impact Formula Result Unit
GWP (24 / 1.625E-02) * 2.20E-02 + 2.99 3.55E+01 kg CO2eq.
ADP (24 / 1.625E-02) * 6.30E-07 + 3.75E-07 9.31E-04 kg Sbeq.
PE (24 / 1.625E-02) * 2.73E-01 + 4.61E+01 4.49E+02 MJ
Board
Impact Formula Result Unit
GWP 32528 * 4.22E-04 + 2.95E-01 + 3.12 1.71E+01 kg CO2eq.
ADP 32528 * 1.49E-08 + 1.03E-03 + 5.19E-04 2.03E-03 kg Sbeq.
PE 32528 * 4.94E-03 + 4.56 + 6.33E+01 2.29E+02 MJ

Total

Impact Formula Result Unit
GWP 1.23E+01 + 3.55E+01 + 1.71E+01 64.9 kg CO2eq.
ADP 3.62E-06 + 9.31E-04 + 2.03E-03 2.96E-3 kg Sbeq.
PE 1.67E+02 + 4.49E+02 + 2.29E+02 845 MJ

NVIDIA A100 80GB

Characteristics (from techpowerup)

Impacts

Compute chip
Impact Formula Result Unit
GWP 826 * 1.97E-02 + 3.45E-01 1.66E+01 kg CO2eq.
ADP 826 * 5.87E-09 + 4.33E-08 4.89E-06 kg Sbeq.
PE 826 * 2.65E-01 + 5.33 2.24E+02 MJ
Memory chips
Impact Formula Result Unit
GWP (80 / 1.625E-02) * 2.20E-02 + 2.99 1.11E+02 kg CO2eq.
ADP (80 / 1.625E-02) * 6.30E-07 + 3.75E-07 3.10E-03 kg Sbeq.
PE (80 / 1.625E-02) * 2.73E-01 + 4.61E+01 1.39E+03 MJ
Board
Impact Formula Result Unit
GWP 29637 * 4.22E-04 + 2.95E-01 + 3.12 1.59E+01 kg CO2eq.
ADP 29637 * 1.49E-08 + 1.03E-03 + 5.19E-04 1.99E-03 kg Sbeq.
PE 29637 * 4.94E-03 + 4.56 + 6.33E+01 2.14E+02 MJ

Total

Impact Formula Result Unit
GWP 1.66E+01 + 1.11E+02 + 1.59E+01 143 kg CO2eq.
ADP 4.89E-06 + 3.10E-03 + 1.99E-03 5.09E-3 kg Sbeq.
PE 2.24E+02 + 1.39E+03 + 2.14E+02 1828 MJ
samuelrince commented 1 year ago

Follow-up meeting with UCL researchers

samuelrince commented 1 year ago

One quick explanation on why the impacts are low (especially for the memory part) is the calculation of density. In the old (pre-v1) API version, we use the value that maximizes the impact. The density is thus 0.625 GB/cm2 compared to the value taken here of 1.875 GB/cm2. The first value corresponds to a Samsung DRAM with a technology node of 30 nm (Green Cloud Computing). 30 nm technology node for DRAM seems to be pre 2014 value. The second value is the average for 20 nm.

Data from Green Cloud Computing (⚠️ pay attention to units in this table):

Screen Shot 2023-07-06 at 6 21 39 PM

I feel like for the case of GPUs and especially recent ones like the NVIDIA GeForce RTX 4090 and NVIDIA A100 80 GB from above, it is fair to take the value from 20 nm technology node instead of the "old" 30 nm, even though it reduces the impact.

We can also consider from Pirson & Bol 2021 a calculated average over ~12 years of data from 2010 to 2022 density for DRAM of 1.625 GB/cm2.

Here are the different values of memory chips impacts of an NVIDIA A100 80 GB with difference hypotheses:

RAM module (API pre-v1) Density of 0.625 GB/cm2 Density of 1.625 GB/cm2 Density of 1.875 GB/cm2
GWP (kg CO2eq.) 290 284.6 111.3 96.9
ADP (kg Sbeq.) 9.80E-03 8.06E-03 3.11E-03 2.69E-03
PE (MJ) 3600 3540 1390 1211

Do you have an opinion on this @ThibaultPirson @blubrom @da-ekchajzer ?

samuelrince commented 1 year ago

Corrections on gold quantity of DDR4 and PCIe connectors

Looking back at the Green Cloud Computing study hypotheses for gold quantity estimation on a DDR4 connector, I have noticed some issues both in the study and in our estimations of pin area above.

Estimation of the gold area in GCC study

Screen Shot 2023-07-10 at 11 19 11 AM

From this table, we have an estimation of the pin area (thus area of gold) on the connector of 760 mm2. I have not found the precise calculation in the study, but I believe it is done the following way:

  1. Compute the total width of the connector populated with pins: 56.10 + 64.5 = 120.6 mm
Screen Shot 2023-07-10 at 4 38 12 PM

Schema from Micron

  1. Multiply by the "maximum height of a pin": 3.15 mm
Screen Shot 2023-07-10 at 4 41 16 PM
  1. Compute the total area of the connector (on both sides of the module): 120.6 x 3.15 x 2 = 759.78 mm2 ~= 760 mm2

⚠️ This is wrong because it ignores that the pins are separated.

Manual estimation of the pin size (2nd try)

Using another data sheet from Samsung, we have the precise quotations of the pin dimensions.

Screen Shot 2023-07-10 at 4 49 05 PM

The pin width is still 0.60 mm, but the height ranges from 2.25 to 1.75 mm. We can repeat previous calculations to estimate the total area of pins.

⚠️ Previously we've estimated ~371.52 mm2~ instead of 345.6 mm2

Quantity of gold

Using the density of gold at 19.32 g/cm3 and with the hypothesis that the gold layer thickness is 2 µm, we can re-estimate the quantity of gold needed for a connector based on the total area of the pins.

⚠️ Compared to GCC study (29.35 mg), that is around a factor x2 error.

Update on PCIe

Recall pin size/area from the specs:

We can update accordingly the quantity of gold and impact factors:

Connector Number of pins Amount of gold (mg) GWP manufacturing (kg CO2eq.) ADP manufacturing (kg Sbeq.) MJ manufacturing (PE)
PCIe x1 36 4.09 6.45E-02 2.27E-04 1.00
PCIe x4 64 7.27 1.15E-01 4.04E-04 1.78
PCIe x8 98 11.13 1.76E-01 6.18E-04 2.72
PCIe x16 164 18.63 2.95E-01 1.03E-03 4.56
samuelrince commented 1 year ago

🔴 Draft

Corrections on die manufacturing impacts

Another feedback from UCL researchers is that our impact factor for die manufacturing is probably a lower band compared to other studies. A comparative analysis in Pirson et al. 2023 draw the following graphs:

Primary Energy: (in red the current value we are using)

Screen Shot 2023-07-18 at 7 04 50 PM

Global Warming Potential: (in red the current value we are using)

Screen Shot 2023-07-18 at 6 58 34 PM

Data from imec.netzero

Example of data we can get from imec.netzero [public] database for a A100-like GPU die:

Comparison of Scope 1+2 - Total Emissions (kgCO2eq_cm2) by Technology for full flow(1)

Parameters: