| 113 | void instruction::recompute_shape() { replace(compute_shape(op, arguments, module_args)); } |
| 114 | |
| 115 | void instruction::clear_arguments() |
| 116 | { |
| 117 | for(auto&& arg : arguments) |
| 118 | { |
| 119 | arg->remove_output(*this); |
| 120 | } |
| 121 | arguments.clear(); |
| 122 | module_args.clear(); |
| 123 | } |
| 124 | |
| 125 | bool operator==(const instruction& i, instruction_ref ref) |
| 126 | { |
no test coverage detected