| 458 | } |
| 459 | |
| 460 | void instruction::debug_print() const |
| 461 | { |
| 462 | debug_name(std::cout, *this); |
| 463 | std::string delim = "("; |
| 464 | for(auto arg : this->inputs()) |
| 465 | { |
| 466 | std::cout << delim; |
| 467 | debug_name(std::cout, *arg); |
| 468 | delim = ", "; |
| 469 | } |
| 470 | if(not this->inputs().empty()) |
| 471 | std::cout << ")"; |
| 472 | std::cout << " -> " << this->get_shape() << std::endl; |
| 473 | } |
| 474 | |
| 475 | std::vector<instruction_ref> instruction::get_output_alias(instruction_ref ins, bool shallow) |
| 476 | { |
nothing calls this directly
no test coverage detected