| 91 | } |
| 92 | |
| 93 | instruction_ref tf_parser::node_info::make_contiguous(instruction_ref ins) const |
| 94 | { |
| 95 | if(ins->get_shape().standard()) |
| 96 | return ins; |
| 97 | else |
| 98 | return mm->add_instruction(make_op("contiguous"), ins); |
| 99 | } |
| 100 | |
| 101 | instruction_ref tf_parser::node_info::add_broadcastable_binary_op(const std::string& op_name, |
| 102 | instruction_ref arg0, |