Please join us to welcome Marisa Kirisame(@MarisaKirisame) as a committer of
TVM. Marisa has strong background and knowledge in programming language and
compiler. He contributed to many aspects to relay and TVM, including high-level
relay IR, partial evaluator, high-order/first-order AD pass, AD
In many node objects we introduced recently, we use the Node suffix to hold
IR/AST nodes and no suffix for reference classes.
```c++
class RangeNode : public Object {
public:
Expr min;
Expr extent;
};
class Range : public ObjectRef {
public:
// constructor
Range(Expr begin, Expr end);
Merged #4645 into master.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-tvm/pull/4645#event-2929677304