From d091dd268aa36518f8f15adc65a72ca8bc5ccb9a Mon Sep 17 00:00:00 2001 From: Luis Bolinches Date: Wed, 30 Apr 2025 13:12:09 +0300 Subject: [PATCH] GNR 16+Xp calculations --- ece_capacity_estimator/gnr_capacity_estimator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ece_capacity_estimator/gnr_capacity_estimator.py b/ece_capacity_estimator/gnr_capacity_estimator.py index a87491f..3b47660 100755 --- a/ece_capacity_estimator/gnr_capacity_estimator.py +++ b/ece_capacity_estimator/gnr_capacity_estimator.py @@ -52,7 +52,9 @@ VALID_CODES = {'4+2p': (4, 2), '4+3p': (4, 3), '8+2p': (8, 2), - '8+3p': (8, 3)} + '8+3p': (8, 3), + '16+2p': (16, 2), + '16+3p': (16, 3)} # block size in MiB VALID_BLOCKSIZES = [1, 2, 4, 8, 16]