8000
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.
Hi!
I encounter this problem when I tried to optimize a onnx model. In
hidet/python/hidet/graph/frontend/onnx/onnx.py
Line 645 in 0cd78c7
data.shape is a Tuple. And in the definition of broadcast_shape.
data.shape
broadcast_shape
hidet/python/hidet/graph/ops/definitions/utils.py
Line 142 in 0cd78c7
x_shape will be a Tuple. However, [1] + x_shape will raise an error TypeError: can only concatenate list (not "tuple") to list.
x_shape
[1] + x_shape
TypeError: can only concatenate list (not "tuple") to list