[Feature Request] Can CLI export of Page Detail Instruction Statistics for all kernels

【Issue Description】

Nsight Compute GUI can display complete Instruction Statistics table in Page Detail

(including specific instruction types like FADD, FMUL, FFMA and their counts),

but CLI tools cannot export this structured data.

【Methods Tried】

:1. ncu --import report.ncu-rep --page details --print-details all --csv

2. ncu --import report.ncu-rep --page raw --csv

Result: Has some section/raw metrics but lacks structured view of Instruction Statistics table from GUI

【Use Case】

Need to batch analyze instruction statistics for multiple kernels, manual GUI export is too inefficient.

Report files contain dozens of kernels, manual operation is not practical.

【Feature Request】Can CLI support for exporting complete Page Detail data for each kernel (including all section tables) ? Or any method that can export kernel instruction table data in batch

Can you try this command?

--page raw --metrics sass__inst_executed_per_opcode --print-metric-instances details --csv

where you can replace the metric with any from opcode metrics that matches the table you are interested in?

You can also use

--page details --print-details all --section InstructionStats --print-metric-instances details --csv

but the former may be more convenient.
Lastly, you can use the Python Report Interface to access this data programmatically, too.

Thank you so much! It works!