HomeSort by relevance Sort by last modified time
    Searched defs:QueueBase (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
queue_base.cc 52 QueueBase::QueueBase(int32 capacity, const DataTypeVector& component_dtypes,
61 QueueBase::~QueueBase() {}
63 Status QueueBase::ValidateTupleCommon(const Tuple& tuple) const {
81 string QueueBase::ShapeListString(const gtl::ArraySlice<TensorShape>& shapes) {
92 Status QueueBase::MatchesNodeDefOp(const NodeDef& node_def,
102 Status QueueBase::MatchesNodeDefCapacity(const NodeDef& node_def,
115 Status QueueBase::MatchesNodeDefTypes(const NodeDef& node_def) const {
129 Status QueueBase::MatchesNodeDefShapes(const NodeDef& node_def) const
    [all...]
queue_base.h 39 class QueueBase : public QueueInterface {
50 QueueBase(int32 capacity, const DataTypeVector& component_dtypes,
135 ~QueueBase() override;
180 TF_DISALLOW_COPY_AND_ASSIGN(QueueBase);
  /external/tensorflow/tensorflow/python/ops/
data_flow_ops.py 114 @tf_export("QueueBase")
115 class QueueBase(object):
192 queues: A list of `QueueBase` objects.
195 A `QueueBase` object.
198 TypeError: When `queues` is not a list of `QueueBase` objects,
202 (not all(isinstance(x, QueueBase) for x in queues))):
220 return QueueBase(
319 @{tf.QueueBase.close} before or during its execution. If the
340 # the `QueueBase` object.
362 @{tf.QueueBase.close} before or during its execution. If th
    [all...]

Completed in 85 milliseconds