You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Check if input1_shape.size() < input2_shape.size() we insert in the shape vector values of 1 at the beginning of the tensor until input1_shape.size() == input2_shape.size()
167
+
auto it = input1_shape.begin();
168
+
while (input1_shape.size() < input2_shape.size()) {
// Check if input2_shape.size() < input1_shape.size() we insert in the shape vector values of 1 at the beginning of the tensor until input1_shape.size() == input2_shape.size()
177
+
auto it = input2_shape.begin();
178
+
while (input2_shape.size() < input1_shape.size()) {
0 commit comments