| 146 | } |
| 147 | |
| 148 | XlaOp XlaBuilder::ReportErrorOrReturn(const StatusOr<XlaOp>& op) { |
| 149 | if (!first_error_.ok()) { |
| 150 | return XlaOp(this); |
| 151 | } |
| 152 | if (!op.ok()) { |
| 153 | return ReportError(op.status()); |
| 154 | } |
| 155 | return op.ValueOrDie(); |
| 156 | } |
| 157 | |
| 158 | XlaOp XlaBuilder::ReportErrorOrReturn( |
| 159 | const std::function<StatusOr<XlaOp>()>& op_creator) { |