- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
For each OpenCL kernel, I want to get the exact resource utilization(after PAR) and frequency. But, I do know where they exist?
コピーされたリンク
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
If you navigate to the sub-directory named after the kernel file you'll find report files in there containing information. I don't have a compiled project on this machine but the files to look for have .rpt file extensions.
Note: it's not expected that OpenCL users will be digging around in hardware reports so the way this information is presented/stored may change in later versions of the tools.- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I have checked the .rpt and .summary files and have gotten the exact resource utilization. Thanks.
However, I can not find the operating frequency in the .rpt files.- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I went ahead and compiled a small kernel so that I can look at the output file set. I recommend using the file called "acl_quartus_report.txt" which will contain the hardware resources and kernel clock frequency. The kernel 1x clock is what the kernel logic (all the kernels in the .cl file) operate at in the hardware.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Yes, "acl_quartus_report.txt" contains the kernel clock frequency. Is there any file report about whether the timing constraint of the kernel is satisfied at the given clock frequency?
--- Quote Start --- I went ahead and compiled a small kernel so that I can look at the output file set. I recommend using the file called "acl_quartus_report.txt" which will contain the hardware resources and kernel clock frequency. The kernel 1x clock is what the kernel logic (all the kernels in the .cl file) operate at in the hardware. --- Quote End ---