relax icon indicating copy to clipboard operation
relax copied to clipboard

Temp repo for prototyping relax(relay next), the effort will be upstreamed. We use the wiki pages on this repo to host design docs.

Results 72 relax issues
Sort by recently updated
recently updated
newest added

I encounter a parse error on the following test case: ```python import tvm from tvm.script import relax as R @tvm.script.ir_module class ControlFlowExample: @R.function def a(x: R.Object) -> R.Object: y: R.Tensor((),...

This issue was raised earlier in #344. I think that given the fact we have recently made a lot of changes to the IR, this might be a good time...

When we were trying to get Expand operator supported, we tried to legalize `broadcast_to` op and found that the operator would fail well formed check after legalization. The cause is...

Operator coverage has been one of the biggest problems. Currently, when certain operator is not supported in TVM, importer simply throws an error and there is no way to proceed...

Thanks for participating in the TVM community! We use https://discuss.tvm.ai for any general usage questions and discussions. The issue tracker is used for actionable items such as feature proposals discussion,...

Per previous discussion, many thinks that it is helpful to separate `call_tir` when the function name is ExternFunc into a separate intrinsic `call_dps_packed`. This issue tracks that change

There has been increased interest from the community in using TVM for training. Relax, the next generation graph level IR of TVM, also faces the demand of training model. We...

I've been working on bringing up BYOC infra in Relax, building on [the work](https://github.com/tlc-pack/relax/pull/164) of @sunggg and [the pattern matcher work](https://github.com/tlc-pack/relax/pull/163) from @ganler. The ultimate goal is to make `relax.vm.build(mod,...

There are several issues with doing rebases: 1. Rebase rewrites all commits in the rebased branch. 2. Rebases cannot be done incrementally (they actually grow with time). We're planning to...

StructInfo introduces a nice way to be able to do further analysis. It also creates interesting design space about checking. Specifically, consider a function call: ```python def func(p0: sinfo_p0, p1:...