GPUOpen-Tools / radeon_compute_profiler

The Radeon Compute Profiler (RCP) is a performance analysis tool that gathers data from the API run-time and GPU for OpenCLâ„¢ and ROCm/HSA applications. This information can be used by developers to discover bottlenecks in the application and to find ways to optimize the application's performance.
MIT License
84 stars 19 forks source link

make it compatible with Python3, remove -Werror #39

Open matthiasdiener opened 4 years ago

matthiasdiener commented 4 years ago

Fixes #34.

baryluk commented 4 years ago

Why you need to use 2to3 at runtime and not change all problematic places once and commit this to repo?

matthiasdiener commented 4 years ago

Why you need to use 2to3 at runtime and not change all problematic places once and commit this to repo?

Because CXL_init.py (the only file handled by 2to3) is not actually contained within this repo (it is a symlink to ../Common/Src/Scons), but is located in a read-only, archived repo (https://github.com/GPUOpen-Archive/common-src-SCons), and I therefore can't open Pull Requests that modify this file anymore.