From 4b1858b39d219b5c6d4091a297e3e34b2f2b612a Mon Sep 17 00:00:00 2001 From: Gus Smith Date: Fri, 17 Dec 2021 16:29:23 -0800 Subject: [PATCH] Whoops, meant ObjectRef and not Object --- rust/tvm/src/ir/relay/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/tvm/src/ir/relay/mod.rs b/rust/tvm/src/ir/relay/mod.rs index 603d0777f..90457aac3 100644 --- a/rust/tvm/src/ir/relay/mod.rs +++ b/rust/tvm/src/ir/relay/mod.rs @@ -150,7 +150,7 @@ impl Var { #[type_key = "relay.Call"] pub struct CallNode { pub base: ExprNode, - deleter: Object, + deleter: ObjectRef, pub op: Expr, pub args: Array, pub attrs: Attrs,