| 1199 | } |
| 1200 | } |
| 1201 | inline void destroy_module() { |
| 1202 | if (_link_state) { |
| 1203 | cuda_safe_call(cuLinkDestroy(_link_state)); |
| 1204 | } |
| 1205 | _link_state = 0; |
| 1206 | if (_module) { |
| 1207 | cuModuleUnload(_module); |
| 1208 | } |
| 1209 | _module = 0; |
| 1210 | } |
| 1211 | |
| 1212 | // create a map of __constant__ and __device__ variables in the ptx file |
| 1213 | // mapping demangled to mangled name |
no outgoing calls
no test coverage detected