Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add YoloV4 inference server #52

Merged
merged 11 commits into from
Dec 23, 2024
Prev Previous commit
Next Next commit
Remove superfluous comment
  • Loading branch information
bgoelTT committed Dec 13, 2024
commit be8d0bf52fd56c13b5b718cdee7a4f43042a9796
1 change: 0 additions & 1 deletion tt-metal-yolov4/server/fast_api_yolov4.py
Original file line number Diff line number Diff line change
@@ -36,7 +36,6 @@ async def root():
def get_dispatch_core_type():
# TODO: 11059 move dispatch_core_type to device_params when all tests are updated to not use WH_ARCH_YAML env flag
dispatch_core_type = ttnn.device.DispatchCoreType.WORKER
# if ("WH_ARCH_YAML" in os.environ) and os.environ["WH_ARCH_YAML"] == "wormhole_b0_80_arch_eth_dispatch.yaml":
if os.environ["WH_ARCH_YAML"] == "wormhole_b0_80_arch_eth_dispatch.yaml":
dispatch_core_type = ttnn.device.DispatchCoreType.ETH
return dispatch_core_type