| 155 | } |
| 156 | |
| 157 | std::unordered_map<std::string, shape> program::get_parameter_shapes() const |
| 158 | { |
| 159 | const auto* mm = this->get_main_module(); |
| 160 | return mm->get_parameter_shapes(); |
| 161 | } |
| 162 | |
| 163 | std::size_t program::size() const { return impl->modules.size(); } |
| 164 |
nothing calls this directly
no test coverage detected