| 149 | } |
| 150 | |
| 151 | instruction_ref program::get_parameter(std::string name) const |
| 152 | { |
| 153 | const auto* mm = this->get_main_module(); |
| 154 | return mm->get_parameter(std::move(name)); |
| 155 | } |
| 156 | |
| 157 | std::unordered_map<std::string, shape> program::get_parameter_shapes() const |
| 158 | { |
nothing calls this directly
no test coverage detected