Hi all, I met a segmentation fault after running the following script: ``` import tvm from tvm import relay
var_0 = relay.var("var_0", shape=(), dtype="float64") var_1 = relay.var("var_1", shape=(), dtype="float64") var_2 = relay.add(var_0, var_1) tuple = relay.Tuple([var_2]) func = relay.Function([var_0, var_1], tuple) mod = tvm.IRModule.from_expr(func) with tvm.transform.PassContext(opt_level=0): exe = relay.backend.vm.compile(mod, "llvm") ``` The crash still exists after changing target from llvm to cuda. And I have run it on macOS M1 and centos with x86 architecture and rtx 3090 --- [Visit Topic](https://discuss.tvm.apache.org/t/crash-when-opt-level-0/12131/1) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.apache.org/email/unsubscribe/8f9bb28f9b17d81b076b49a072fc63e26889accb295ccf8a85ca8d6efdef8a73).