| 34 | namespace tensorflow { |
| 35 | |
| 36 | PaddingFIFOQueue::PaddingFIFOQueue( |
| 37 | int capacity, const DataTypeVector& component_dtypes, |
| 38 | const std::vector<PartialTensorShape>& partial_shapes, const string& name) |
| 39 | : FIFOQueue(capacity, component_dtypes, |
| 40 | ConvertShapesPartialDimensionsToZero(partial_shapes), name), |
| 41 | partial_shapes_(partial_shapes) {} |
| 42 | |
| 43 | Status PaddingFIFOQueue::Initialize() { |
| 44 | Status s = FIFOQueue::Initialize(); |
no outgoing calls