How to determine the percentage of the zynq FPGA chip (on the Pynq-z1 kit) cells utilization

I am new to using the Pynq z1 kit with the v2.0 image. I am trying the bnn example targetting to get its HW utilization of the FPGA resources.
I have the Python code and would like to know the steps (starting from the jupyter notebook) and the tools needed to reach the utilization report.
Thank you in advance.

Dear @NahlaElazab,

Welcome to the PYNQ community.

I have the Python code and would like to know the steps (starting from the jupyter notebook) and the tools needed to reach the utilization report.

This is something you cannot do. You can check the utilization only in the Vivado project.

Mario

Is there any high-level synthesis tool that is used to get the RTL from the Python code so I can use it in the Vivado project?

No, but using the ip_dict you can see what memory mapped IP are implemented and how they are configured.

Thanks a lot