Computes the difference between two lists of numbers.
Given a Tensor x and a Tensor y, this operation returns a Tensor out
that represents all values that are in x but not in y. The returned
Tensor out is sorted in the same order that the numbers appear in x
(duplicates are preserved). This operation also returns a Tensor indices that
represents the position of each out element in x. In other words:
out[i] = x[idx[i]] for i in [0, 1, ..., out.length - 1]
Computes the difference between two lists of numbers.
Given a Tensor
x
and a Tensory
, this operation returns a Tensorout
that represents all values that are inx
but not iny
. The returned Tensorout
is sorted in the same order that the numbers appear inx
(duplicates are preserved). This operation also returns a Tensor indices that represents the position of each out element inx
. In other words:out[i] = x[idx[i]] for i in [0, 1, ..., out.length - 1]