Fix Experimental clang-format Check
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
parent
676c6ea316
commit
28e034bd29
@ -88,7 +88,8 @@ class SparseDenseBinaryOpShared : public OpKernel {
|
||||
const auto rhs_dims = BCast::FromShape(dense_t->shape());
|
||||
BCast b(lhs_dims, rhs_dims, false); // false for keeping the same num dims.
|
||||
|
||||
// True iff (size(lhs) >= size(rhs)) and all dims in lhs is smaller or equal to dims in rhs (from right to left).
|
||||
// True iff (size(lhs) >= size(rhs)) and all dims in lhs is smaller or equal
|
||||
// to dims in rhs (from right to left).
|
||||
auto VecGreaterEq = [](ArraySlice<int64> lhs, ArraySlice<int64> rhs) {
|
||||
if (lhs.size() < rhs.size()) return false;
|
||||
for (size_t i = 0; i < rhs.size(); ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user