Skip to content

Commit

Permalink
[Hotfix] add missing variable to fix RN50 build
Browse files Browse the repository at this point in the history
  • Loading branch information
maltanar committed Jul 20, 2022
1 parent 087ad90 commit 7123fa5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build/resnet50/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@
"step_deployment_package",
]

platforms_to_build = ["U250"]
# which platforms to build the networks for
zynq_platforms = []
alveo_platforms = ["U250"]
platforms_to_build = zynq_platforms + alveo_platforms

model_file = "models/%s_exported.onnx" % model_name
# create a release dir, used for finn-examples release packaging
os.makedirs("release", exist_ok=True)
Expand Down

0 comments on commit 7123fa5

Please sign in to comment.