| 163 | std::size_t program::size() const { return impl->modules.size(); } |
| 164 | |
| 165 | std::vector<shape> program::get_output_shapes() const |
| 166 | { |
| 167 | const auto* mm = this->get_main_module(); |
| 168 | return mm->get_output_shapes(); |
| 169 | } |
| 170 | |
| 171 | context& program::get_context() const |
| 172 | { |
nothing calls this directly
no test coverage detected