better Conv.cpp and fixed broken conv op validation test
Validate Operations / validate-operations (push) Has been cancelled

This commit is contained in:
NiccoloN
2026-06-05 13:35:27 +02:00
parent e166ff7e1d
commit 0fa10b4074
3 changed files with 1001 additions and 490 deletions
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -262,7 +262,7 @@ def conv_grouped_many_groups():
X = helper.make_tensor_value_info("X", TensorProto.FLOAT, [1, 1024, 2, 2])
Y = helper.make_tensor_value_info("Y", TensorProto.FLOAT, [1, 1024, 2, 2])
W = numpy_helper.from_array(
np.random.default_rng(77).uniform(-1, 1, (1024, 64, 1, 1)).astype(np.float32), name="W")
np.random.default_rng(77).uniform(-1, 1, (1024, 16, 1, 1)).astype(np.float32), name="W")
node = helper.make_node("Conv", ["X", "W"], ["Y"],
kernel_shape=[1, 1], strides=[1, 1], pads=[0, 0, 0, 0], group=64)
graph = helper.make_graph([node], "conv_grouped_many_groups", [X], [Y], initializer=[W])