| 273 | } // namespace |
| 274 | |
| 275 | Stream::Stream(StreamExecutor *parent) |
| 276 | : parent_(parent), |
| 277 | implementation_(parent->implementation()->GetStreamImplementation()), |
| 278 | allocated_(false), |
| 279 | ok_(false), |
| 280 | temporary_memory_manager_(this) { |
| 281 | VLOG_CALL(PARAM(parent)); |
| 282 | } |
| 283 | |
| 284 | Stream::Stream(StreamExecutor *parent, |
| 285 | internal::StreamInterface *implementation) |
nothing calls this directly
no test coverage detected