Home | History | Annotate | Download | only in ops

Lines Matching defs:where

990     multiples: A mapping where the keys are axis names and the values are the
1038 paddings: A mapping where the keys are axis names and the values are
1039 tuples where the first element is the padding to insert at the beginning
1253 def where(condition, x, y, name=None):
1256 See `tf.where` for more details. This function currently only implements the
1257 three argument version of where.
1261 x: LabeledTensor for values where condition is true.
1262 y: LabeledTensor for values where condition is false.
1278 raise ValueError('all inputs to `where` must have equal axes')
1280 op = array_ops.where(condition.tensor, x.tensor, y.tensor, name=scope)