[REFACTOR][IR] Initialize Unified IR Expr Data Structure (#4673)
This PR moves a few base types from relay and low-level Expr into the ir sub-folder. These classes will serve as a common type system across the stack. Rationale: - PrimExpr for low-level expressions - RelayExpr for advanced features, including Function definition. - Introduce BaseFunc to host all functions, including future PrimFunc(low-level expr functions, subject to discussion). This is a minimum change we can do to unify the classes into a common hierarchy. The main data structure that are variant specific will still be kept in the sub-namespaces. We only include classes that is needed to allow a common Module class. - BaseFunc - GlobalVar - Type definition part of ADT We will only need the BaseFunc and their checked_type to decide the calling convention across the function variants.
Showing
include/tvm/ir/adt.h
0 → 100644
include/tvm/ir/expr.h
0 → 100644
src/ir/adt.cc
0 → 100644
src/ir/expr.cc
0 → 100644
Please
register
or
sign in
to comment