We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc8f27 commit 6d8698cCopy full SHA for 6d8698c
tf2onnx/onnx_opset/tensor.py
@@ -1867,7 +1867,6 @@ def mkconst(npval, desc):
1867
const_ylen = mkconst(np.array([ylen], np.int64), 'const_ylen')
1868
const_xlenp = mkconst(np.array([xlenp], np.int64), 'const_xlenp')
1869
const_stride = mkconst(np.array([xlenp + 1], np.int64), 'const_stride')
1870
- const_minxy = mkconst(np.array([min(xlen, ylen)], np.int64), 'const_minxy')
1871
const_minxy_float = mkconst(np.array([min(xlen, ylen)], np.float32), 'const_minxy_f')
1872
const_xmax = mkconst(np.array([xlen * xlenp + xlenp - 1], np.int64), 'const_xmax')
1873
const_ymax = mkconst(np.array([xlenp * ylen - 1], np.int64), 'const_ymax')
0 commit comments