Skip to content

Commit

Permalink
#0: fix stackoverflow in eth tun
Browse files Browse the repository at this point in the history
  • Loading branch information
nhuang-tt committed Jan 19, 2025
1 parent a3b8577 commit 348e4f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tt_metal/impl/dispatch/kernel_config/eth_tunneler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ void EthTunnelerKernel::GenerateStaticConfigs() {
case 1:
case 2: static_config_.in_queue_size_words = 65536 >> 4; break;
case 3:
case 4:
case 5: static_config_.in_queue_size_words = 32768 >> 4; break;
case 4: static_config_.in_queue_size_words = 32768 >> 4; break;
case 5:
default: static_config_.in_queue_size_words = 16384 >> 4; break;
}
static_config_.kernel_status_buf_addr_arg = 0;
Expand Down

0 comments on commit 348e4f6

Please sign in to comment.