Frequency of Operation of PYNQ-Z2

How to measure the PL frequency of operation on PYNQ-Z2?

I also want to know at what frequency my kernel is getting executed on the board?

1 Like

The clocks should be automatically configured to whatever clock you set in your Vivado design.

You can read back and set the clocks. Be careful about changing the clock. You design was built and verified in Vivado to meet a specific clock. If you change it, you design may not meet timing and you may get errors.

See this notebook: https://github.com/Xilinx/PYNQ/blob/master/pynq/notebooks/common/zynq_clocks.ipynb

Cathal

I was able to successfully get the four clock frequencies. But I don’t know which clock is my IP using. How do I find that out?

1 Like

You would have connected one of the PS β†’ PL clocks in Vivado (most likely clock β€œ0”)
The FCLK0 - FCLK3 correspond to the PS β†’ PL clocks.

Cathal