| 91 | } |
| 92 | |
| 93 | void KernelBase::set_name(absl::string_view name) { |
| 94 | name_ = string(name); |
| 95 | |
| 96 | // CUDA splitter prefixes stub functions with __device_stub_. |
| 97 | demangled_name_ = |
| 98 | port::Demangle(absl::StripPrefix(name, "__device_stub_").data()); |
| 99 | } |
| 100 | |
| 101 | } // namespace stream_executor |
no test coverage detected