Returns the `OpDef` proto that represents the type of this op. Returns: An [`OpDef`](https://www.tensorflow.org/code/tensorflow/core/framework/op_def.proto) protocol buffer.
(self)
| 2286 | |
| 2287 | @property |
| 2288 | def op_def(self): |
| 2289 | # pylint: disable=line-too-long |
| 2290 | """Returns the `OpDef` proto that represents the type of this op. |
| 2291 | |
| 2292 | Returns: |
| 2293 | An |
| 2294 | [`OpDef`](https://www.tensorflow.org/code/tensorflow/core/framework/op_def.proto) |
| 2295 | protocol buffer. |
| 2296 | """ |
| 2297 | # pylint: enable=line-too-long |
| 2298 | return self._graph._get_op_def(self.type) |
| 2299 | |
| 2300 | @property |
| 2301 | def _op_def(self): |
no test coverage detected