Commits


kailums authored and GitHub committed db690793126
fix roctracer missing nccl operation bug (#14277) ### Description <!-- Describe your changes. --> This change fixes a bug that when running ort with nccl collective operation on AMD, it can't trace nccl operation. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> The reason of missing nccl operation in roctracer is that roctracer is using whitelist of which api can be traced, and nccl use hipExtLaunchKernel api which is not included in the whitelist. This fix is to add hipExtLaunchKernel into whitelist, then nccl operation could be traced.