Home
last modified time | relevance | path

Searched refs:TypedQueue (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dtyped_queue.h33 class TypedQueue : public QueueBase {
35 TypedQueue(const int32 capacity, const DataTypeVector& component_dtypes,
48 TypedQueue<SubQueue>::TypedQueue( in TypedQueue() function
54 Status TypedQueue<SubQueue>::Initialize() { in Initialize()
111 int64 TypedQueue<SubQueue>::MemoryUsed() const { in MemoryUsed()
Dqueue_op.h54 template <typename TypedQueue>
55 Status CreateTypedQueue(TypedQueue* queue, QueueInterface** ret) { in CreateTypedQueue()
Dfifo_queue.h34 class FIFOQueue : public TypedQueue<std::deque<PersistentTensor> > {
Dpriority_queue.h47 : public TypedQueue<std::priority_queue<PriorityTensorPair,
Drandom_shuffle_queue_op.cc42 class RandomShuffleQueue : public TypedQueue<std::vector<PersistentTensor> > {
93 : TypedQueue(capacity, component_dtypes, component_shapes, name), in RandomShuffleQueue()
107 TF_RETURN_IF_ERROR(TypedQueue::Initialize()); in Initialize()
Dpriority_queue.cc40 : TypedQueue(capacity, component_dtypes, component_shapes, name) {} in PriorityQueue()
43 Status s = TypedQueue::Initialize(); in Initialize()
Dfifo_queue.cc39 : TypedQueue(capacity, component_dtypes, component_shapes, name) {} in FIFOQueue()