| 72 | void ModuleImpl::registerBuffer(const std::string& name, const Tensor& tensor) { buffer_.reg(name, tensor); } |
| 73 | |
| 74 | Tensor ModuleImpl::getBuffer(const std::string& name) { return buffer_[name]; } |
| 75 | |
| 76 | void ModuleImpl::updateBuffer(const std::string& name, const Tensor& tensor) { buffer_[name] = tensor; } |
| 77 |
no outgoing calls
no test coverage detected