Alexey Akimov
Alexey Akimov
Same issue as https://github.com/ROCm-Developer-Tools/rocprofiler/issues/66.
Same problem with infinite recursion. Both issues would be fixed by same commit.
Could you please create a small reproducer and share the command line for running the test? By default table->core->hsa_executable_freeze_fn is equal to rocr::HSA::hsa_executable_freeze. This means that the checking table for...
You can try to set LD_LIBRARY_PATH to /opt/rocm/lib explicitly. Which version of rocm are you using?
Checked with export ROCP_TOOL_LIB=/opt/rocm-4.5.0/rocprofiler/tool/libtool.so. It works. Problem in your init_metrics function: `void init_metrics() { fprintf(stderr, "Init metrics\n"); void* callback_data = NULL; rocprofiler_queue_callbacks_t cbs; cbs.dispatch = &dispatch_cb; rocprofiler_set_queue_callbacks( cbs, callback_data );...
Could you please provide reproducer script for this issue? Tested on gfx-900. Rocm version 4.5.x. Quicksilver commit 65a53818f0bb7669a691d87c5dbe53d16a99bf86. Interception library: [break-rocprofiler-working.txt](https://github.com/ROCm-Developer-Tools/rocprofiler/files/8089918/break-rocprofiler-working.txt) HSA_TOOLS_LIB=/opt/rocm/rocprofiler/lib/librocprofiler64.so ROCP_METRICS=/opt/rocm/rocprofiler/lib/metrics.xml ROCP_HSA_INTERCEPT=2 ROCP_TOOL_LIB=$QuicksilverPath/src/break-rocprofiler.so compile string : `hipcc break-rocprofiler.c...
L2 cache is not related to any compute engine. It's located on memory controller. Expression sum(TCC_HIT,16) is equal to to TCC_HIT[0] + TCC_HIT[1] + TCC_HIT[2] + ... + TCC_HIT[15]
No, it's not driver problem. Could you check whether this file exists with correct access rules?
Could you please clarify what do you mean by number of bytes? copy_stats contains cumulative values. Do you need per call trace information?
https://github.com/ROCm-Developer-Tools/rocprofiler/pull/86 Just quick workaround. Add --save-temp option and set temporary directory with -t option. Raw data with all telemetry persist in temporary directory. I think it will be fixed soon.