Re: [apache/tvm] [VOTE] Transition Main to Unity (Issue #16368)

2024-01-08 Thread Xiyou Zhou
+1 -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/16368#issuecomment-1882435712 You are receiving this because you are subscribed to this thread. Message ID:

Re: [apache/tvm] [VOTE] Clarify Community Strategy Decision Process (Issue #15521)

2023-08-15 Thread Xiyou Zhou
+1 -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/15521#issuecomment-1679372917 You are receiving this because you are subscribed to this thread. Message ID:

Re: [apache/tvm] [VOTE] Release Apache TVM v0.10.0.rc0 (Issue #13026)

2022-10-11 Thread Xiyou Zhou
+1, thanks @AndrewZhaoLuo! -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/13026#issuecomment-1275243321 You are receiving this because you are subscribed to this thread. Message ID:

Re: [apache/tvm] [VOTE] Issue Triage Workflow RFC (Issue #12743)

2022-09-13 Thread Xiyou Zhou
+1 -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/12743#issuecomment-1245721784 You are receiving this because you are subscribed to this thread. Message ID:

Re: [apache/tvm] [VOTE] Establish TVM Unity Connection Technical Strategy (Issue #12651)

2022-08-31 Thread Xiyou Zhou
+1 -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/12651#issuecomment-1233388156 You are receiving this because you commented. Message ID:

Re: [apache/tvm] [VOTE] Commit Messages RFC (Issue #12583)

2022-08-30 Thread Xiyou Zhou
0 -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/12583#issuecomment-1232311473 You are receiving this because you are subscribed to this thread. Message ID:

Re: [apache/tvm] [VOTE] Quarterly Releases RFC (Issue #11415)

2022-05-30 Thread Xiyou Zhou
+1 -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/11415#issuecomment-1141604024 You are receiving this because you are subscribed to this thread. Message ID:

Re: [apache/tvm] [Pre-RFC]FamilySeer: A new search method for Auto-scheduler (PR #10308)

2022-02-24 Thread Xiyou Zhou
Hi, would you please retrigger the CI by sending an empty commit? -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/pull/10308#issuecomment-1049605201 You are receiving this because you are subscribed to this thread. Message ID:

[Apache TVM Discuss] [Development/pre-RFC] [pre-RFC] Compilation Configuration Representation

2021-11-02 Thread Xiyou Zhou via Apache TVM Discuss
Thanks for the RFC. Generally I am in support of the change. - Moving the config to IRModule could better avoid overloading the target. - The design of targets list and target host seems really similar to a composite target, can we actually use a single composite target (where each target can b

Re: [apache/tvm] [VOTE] Adopt New Code Review Guideline (#8928)

2021-09-03 Thread Xiyou Zhou
+1 -- 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/tvm/issues/8928#issuecomment-912850347

[Apache TVM Discuss] [Development] Is there a difference between "lower" and "legalize" in TIR?

2021-08-05 Thread Xiyou Zhou via Apache TVM Discuss
I do agree that we don’t want abstractions that are not useful. Just to explain a bit more: any op could have both legalization and intrinsic lowering function. Type-wise, yes they are all TIR expressions and technically there’s no difference. Concept-wise, since any op can have both implement

[Apache TVM Discuss] [Development] Is there a difference between "lower" and "legalize" in TIR?

2021-08-05 Thread Xiyou Zhou via Apache TVM Discuss
So technically I don’t think they are very different in behavior, i.e., the type of functions are the same in TIR. It’s more of a conceptual difference for now. --- [Visit Topic](https://discuss.tvm.apache.org/t/is-there-a-difference-between-lower-and-legalize-in-tir/10714/5) to respond.

[Apache TVM Discuss] [Development] Is there a difference between "lower" and "legalize" in TIR?

2021-08-05 Thread Xiyou Zhou via Apache TVM Discuss
Legalization is when there is no available op intrinsic lowering function available, we might use other op to combine and implement some op. For example, [here](https://github.com/apache/tvm/blob/3d380fc5817ce335ea823ce7e6b7e35717e579cd/src/target/llvm/intrin_rule_llvm.cc#L106) the exp10 op on

[Apache TVM Discuss] [Development] Is there a difference between "lower" and "legalize" in TIR?

2021-08-05 Thread Xiyou Zhou via Apache TVM Discuss
Hi, good catch! They are designed to deal with op intrinsic lowering and op legalization respectively in the lowering pass. Ideally, we always want to use intrinsic lowering before legalization if available. I don't think we are going to phase out any of them for now because there could be div

Re: [apache/tvm] [VOTE] Adopt the New RFC Process (#7991)

2021-05-10 Thread Xiyou Zhou
+1 -- 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/tvm/issues/7991#issuecomment-837422559

[Apache TVM Discuss] [Development/RFC] New Target Intrinsic Lowering and Legalization Mechanism

2021-04-13 Thread Xiyou Zhou via Apache TVM Discuss
Good point. It's a lot more clear. I'll adopt in the PR. --- [Visit Topic](https://discuss.tvm.apache.org/t/new-target-intrinsic-lowering-and-legalization-mechanism/9683/3) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click

[Apache TVM Discuss] [Development/RFC] [RFC] TVM Target Specification

2021-03-09 Thread Xiyou Zhou via Apache TVM Discuss
Follow up on my previous PR on supporting the new target system with `target_host` folded into the target object. I have submitted a new PR on review https://github.com/apache/tvm/pull/7534 this week to **fully support all functions** previously using target and target_host as argument with ba