| 174 | } |
| 175 | |
| 176 | Weights Normalize::deserializeToDevice(char const*& hostBuffer, size_t count) |
| 177 | { |
| 178 | Weights w = copyToDevice(hostBuffer, count); |
| 179 | hostBuffer += count * sizeof(float); |
| 180 | return w; |
| 181 | } |
| 182 | |
| 183 | // Set plugin namespace |
| 184 | void Normalize::setPluginNamespace(char const* pluginNamespace) noexcept |
nothing calls this directly
no test coverage detected