Tianqi Chen
Tianqi Chen
This is a thread to bring awareness and discuss the recent set of proposed change of adding versioning information to DLPack. ### Summary Up until now the DLPack C struct...
Support for google cloud storage can be done similarly as https://github.com/dmlc/dmlc-core/blob/master/src/io/s3_filesys.cc via rest API It could involve a refactor of s3 filesys to be a general base, which take s3...
This project is getting valuable as people want to use compiled language for the project. I am opening this issue to see if you are interested in bring the documents...
This RFC summarizes an overall technical strategy on establish TVM Unity connection milestone. It is supplementary to the technical RFCs about specific components. [rendered](https://github.com/tqchen/tvm-rfcs/blob/main/rfcs/0091-establish-tvm-unity-connection.md) [discuss thread](https://discuss.tvm.apache.org/t/establish-tvm-unity-connection-a-technical-strategy/13344)
One of relax’s design goal is to enable dynamic shapes and program analysis based on dynamic StructInfos. The shape propagation helps us to build effective dynamic shape aware programs. Shape...
The PyVisitor/Mutator are only used in the python side and as long as we have packed func registration we are fine. To minimize the public interface exposure, let us consider...
We already had several discussions around this. This post summarizes the action items: Background: we want to make sure most function remains "private", so they can be cleaned up (through...
As have been noticed in several places, we find it is helpful for clarity and development to bring dedicated Expr AST to relax, including If, Tuple, Constant
Right now when we do `mod.script()` with multiple functions, the order is not deterministic and relax/tir function appears in interleaving way. We should: (a) sort by name (b) print TIR...
Right now when we do emit_te, we generate parameters with prefix `rxplacholder`, which is not as informative and long. Would be good to change to shorter names, e.g. (X0, X1)...