Lyken17 commented on pull request #10439:
URL: https://github.com/apache/tvm/pull/10439#issuecomment-1056656951
Also, the dtype information is not provided in when I try to build model
with relay
```python
input = relay.var("input", shape=[1,3,32,32], dtype="float32")
weight = relay.var("weight", shape=[3,1,3,3], dtype="float32")
out = relay.nn.conv2d(input, weight, groups=3, channels=3)
fn = relay.Function([input, weight], out)
fmod = tvm.IRModule.from_expr(fn)
mod = relay.transform.InferType()(fmod)
```
```bash
data types float32 and void do not match in BroadcastRel
note: run with `TVM_BACKTRACE=1` environment variable to display a backtrace.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]