Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove include statements from inside namespace (#1467)
Bringing in the below headers into the `raft::common::nvtx::detail` namespace breaks downstream users that need to use global symbols they provide. In the direct case I encountered the dlopen and dlclose functions became unusable. ``` #include <cstdint> #include <cstdlib> #include <mutex> #include <nvtx3/nvToolsExt.h> #include <string> #include <type_traits> #include <unordered_map> ``` Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) - Corey J. Nolet (https://github.com/cjnolet) URL: #1467
- Loading branch information