Skip to content

Commit

Permalink
Fix egress pool size
Browse files Browse the repository at this point in the history
Summary: as titled

Reviewed By: nivinl

Differential Revision: D67224948

fbshipit-source-id: 209bc1d3fa9c7450784fa1638e7300ef68d95d60
  • Loading branch information
Parvez Shaikh authored and facebook-github-bot committed Dec 14, 2024
1 parent 4b48098 commit 917730d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fboss/agent/hw/switch_asics/ChenabAsic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,8 @@ uint32_t ChenabAsic::getMaxLabelStackDepth() const {
return 3;
}
uint64_t ChenabAsic::getMMUSizeBytes() const {
return 420000; // return 108 * 1024 * 1024;
// Egress buffer pool size for Chenab Asics is 150MB
return 150 * 1024 * 1024;
}
uint64_t ChenabAsic::getSramSizeBytes() const {
// No HBM!
Expand Down

0 comments on commit 917730d

Please sign in to comment.