| 178 | } |
| 179 | |
| 180 | StatusOr<ScopedShapedBuffer> LocalClientTestBase::ExecuteLocally( |
| 181 | const XlaComputation& computation, |
| 182 | absl::Span<const ShapedBuffer* const> arguments) { |
| 183 | return ExecuteLocally(computation, arguments, DefaultExecutableBuildOptions(), |
| 184 | DefaultExecutableRunOptions()); |
| 185 | } |
| 186 | |
| 187 | StatusOr<ScopedShapedBuffer> LocalClientTestBase::ExecuteLocally( |
| 188 | const XlaComputation& computation, |
nothing calls this directly
no test coverage detected