| 1180 | } |
| 1181 | |
| 1182 | void program::dry_run(const parameter_map& params) const |
| 1183 | { |
| 1184 | auto& ctx = this->impl->contexts; |
| 1185 | generic_eval(*this, ctx, params, [](auto ins, auto&&...) { |
| 1186 | return argument{ins->get_shape(), nullptr}; |
| 1187 | }); |
| 1188 | } |
| 1189 | |
| 1190 | void program::annotate(std::ostream& os, const std::function<void(instruction_ref)>& a) const |
| 1191 | { |
no test coverage detected