Type returns the name of the operator used by this operation.
()
| 37 | |
| 38 | // Type returns the name of the operator used by this operation. |
| 39 | func (op *Operation) Type() string { |
| 40 | return C.GoString(C.TF_OperationOpType(op.c)) |
| 41 | } |
| 42 | |
| 43 | // NumOutputs returns the number of outputs of op. |
| 44 | func (op *Operation) NumOutputs() int { |
no outgoing calls