[core] scatter_op: Remove duplicate check for IsScalar()
This commit is contained in:
parent
2f4812db43
commit
4edec1af39
@ -124,8 +124,7 @@ class ScatterUpdateOp : public OpKernel {
|
||||
auto indices_flat = indices.flat<Index>();
|
||||
auto params_flat = params.flat_outer_dims<T>();
|
||||
|
||||
if (TensorShapeUtils::IsScalar(updates.shape()) ||
|
||||
TensorShapeUtils::IsScalar(updates.shape())) {
|
||||
if (TensorShapeUtils::IsScalar(updates.shape())) {
|
||||
const auto update = updates.scalar<T>();
|
||||
functor::ScatterScalarFunctor<Device, T, Index, op> functor;
|
||||
const Index bad_i = functor(c, c->template eigen_device<Device>(),
|
||||
|
Loading…
Reference in New Issue
Block a user