| 30 | inline namespace MIGRAPHX_INLINE_NS { |
| 31 | |
| 32 | static auto access_envs() |
| 33 | { |
| 34 | static std::map<std::string, std::string> obj; |
| 35 | static std::mutex m; |
| 36 | return [&](auto f) { |
| 37 | std::lock_guard<std::mutex> lock(m); |
| 38 | return f(obj); |
| 39 | }; |
| 40 | } |
| 41 | |
| 42 | bool enabled(const char* name) |
| 43 | { |
no outgoing calls
no test coverage detected