- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
hi !
plz help me out with this issue.!when i ran a very simple C++ program for hotspot analysis.it succesfully collected ,analysed and finalized the result
still sometimes its shows functions with some CPU values and sometimes show " NO DATA TO SHOW / NO DATA IS AVAILABLE".
please tell me how to get the data when this "NO DATA IS AVAILABLE" situation arises.
コピーされたリンク
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Usually if you ran application shortly, there is no result to how. Please add more workloads in your program.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Usually if you ran application shortly, there is no result to how. Please add more workloads in your program.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
thanks for suggestion.I ll try this way also
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
thanks for suggestion.I ll try this way also
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Maybe your application run so fast(short period of time) and was below the measurement threshold.I experienced such a behaviour.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
iliyapolak wrote:
Maybe your application run so fast(short period of time) and was below the measurement threshold.I experienced such a behaviour.
Default interval time is 10ms. You might copy from Hotspots analysis to create a new custom analysis - change interval value to 2ms if you like.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
>>>Default interval time is 10ms. You might copy from Hotspots analysis to create a new custom analysis - change interval value to 2ms if you like>>>
Thanks Peter.
Can I change time measurement interval to even lower value for example in range 0.1-0.2 msec , because I'm testing a FFT alghorithm which finishes execution of its code very quickly ~125000 nanosec?In order to perform precise timing I needed to increase data set size to more than 4096 points.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
iliyapolak wrote:
>>>Default interval time is 10ms. You might copy from Hotspots analysis to create a new custom analysis - change interval value to 2ms if you like>>>
Thanks Peter.
Can I change time measurement interval to even lower value for example in range 0.1-0.2 msec , because I'm testing a FFT alghorithm which finishes execution of its code very quickly ~125000 nanosec?In order to perform precise timing I needed to increase data set size to more than 4096 points.
No. 2ms is minimal value for interval, I recommend.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
thanks peter !
error resolved ! reducing the time -interval to 2ms did work !
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
>>>No. 2ms is minimal value for interval, I recommend.>>>
Thank you Peter.
