Returns true if the XlaOp was created by the XlaOp() constructor and not returned by a builder.
| 77 | // Returns true if the XlaOp was created by the XlaOp() constructor and |
| 78 | // not returned by a builder. |
| 79 | bool IsUninitialized() const { return builder_ == nullptr; } |
| 80 | |
| 81 | bool IsIdenticalTo(XlaOp rhs) const { |
| 82 | return handle_ == rhs.handle_ && builder_ == rhs.builder_; |
no outgoing calls
no test coverage detected