MSVC compiler
| 786 | //#if CUDA_VERSION < 8000 |
| 787 | #ifdef _MSC_VER // MSVC compiler |
| 788 | inline std::string demangle_cuda_symbol(const char* mangled_name) { |
| 789 | // We don't have a way to demangle CUDA symbol names under MSVC. |
| 790 | return mangled_name; |
| 791 | } |
| 792 | inline std::string demangle_native_type(const std::type_info& typeinfo) { |
| 793 | // Get the decorated name and skip over the leading '.'. |
| 794 | const char* decorated_name = typeinfo.raw_name() + 1; |
no outgoing calls
no test coverage detected