Skip to content
Snippets Groups Projects
Commit 4a7a164e authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Test] bring back AnnotateResources to Vitis tests

parent d1caa2cb
No related branches found
No related tags found
No related merge requests found
......@@ -185,6 +185,11 @@ def test_end2end_vitis_cnv_w1a1_build():
strategy=VitisOptStrategy.BUILD_SPEED,
)
)
model = model.transform(AnnotateResources("synth"))
warnings.warn(
"Post-synthesis resources (excluding shell): "
+ model.get_metadata_prop("res_total_synth")
)
model.save(build_dir + "/end2end_vitis_cnv_w1a1_build.onnx")
......
......@@ -64,6 +64,7 @@ from finn.transformation.fpgadataflow.vitis_build import VitisBuild, VitisOptStr
from finn.transformation.infer_data_layouts import InferDataLayouts
from finn.transformation.fpgadataflow.make_deployment import DeployToPYNQ
from pkgutil import get_data
from finn.transformation.fpgadataflow.annotate_resources import AnnotateResources
from finn.core.onnx_exec import execute_onnx
import warnings
......@@ -171,6 +172,11 @@ def test_end2end_vitis_tfc_w1a1_build():
strategy=VitisOptStrategy.BUILD_SPEED,
)
)
model = model.transform(AnnotateResources("synth"))
warnings.warn(
"Post-synthesis resources (excluding shell): "
+ model.get_metadata_prop("res_total_synth")
)
model.save(build_dir + "/end2end_vitis_tfc_w1a1_build.onnx")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment