Re: [apache/tvm-rfcs] Add Managed Jenkins Infrastructure for TVM RFC (PR #49)

2022-01-06 Thread Noah Kontur
This looks good to me--addressing the comment from @leandron, I'll also be doing work in the coming weeks to open-source the CI components of the tvm-ci, packer, and terraform repositories, at which point it should be fairly easy for others to make contributions to the CI/contribute machines to

[Apache TVM Discuss] [Development] [AutoScheduler] Do we have plan to support auto schedule ExternOp?

2022-01-06 Thread Cody H. Yu via Apache TVM Discuss
It seems not impossible to me, since `ExternOp` doesn't even have a schedule but simply calls an "extern" implementation such as CuBLAS. --- [Visit Topic](https://discuss.tvm.apache.org/t/autoscheduler-do-we-have-plan-to-support-auto-schedule-externop/10346/11) to respond. You are receiv

[Apache TVM Discuss] [Development] BYOC CodeGen for customized Call Node/Operator

2022-01-06 Thread Yuke Wang via Apache TVM Discuss
Hi, All If I want to use BYOC for a new operator, should I skip the Step 4-5 in this tutorial https://tvm.apache.org/docs/dev/how_to/relay_add_op.html? Thanks! --- [Visit Topic](https://discuss.tvm.apache.org/t/byoc-codegen-for-customized-call-node-operator/11863/1) to respond. You are

[Apache TVM Discuss] [Development] BYOC CodeGen for customized Call Node/Operator

2022-01-06 Thread masahi via Apache TVM Discuss
Yes, if you don't intend to compile your model with native tvm, you only need relay op so can skip that steps. --- [Visit Topic](https://discuss.tvm.apache.org/t/byoc-codegen-for-customized-call-node-operator/11863/2) to respond. You are receiving this because you enabled mailing list mo

[Apache TVM Discuss] [Development] BYOC CodeGen for customized Call Node/Operator

2022-01-06 Thread Yuke Wang via Apache TVM Discuss
I just encounter a problem that ``` Check failed: (!actual_type.defined()) is false: Expected type PrimExpr but got relay.Var ``` Even though my new operator defined with ``` Expr MakeFun(Expr X1, Expr X2, Expr X3, DataType out_dtype) ``` My type relation function is written as ``` bool Fu

[Apache TVM Discuss] [Development] BYOC CodeGen for customized Call Node/Operator

2022-01-06 Thread Yuke Wang via Apache TVM Discuss
this problem solved due to mismatched `set_body_typed(MakeFun)` and the actual `MakeFun` --- [Visit Topic](https://discuss.tvm.apache.org/t/byoc-codegen-for-customized-call-node-operator/11863/4) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe fr

[Apache TVM Discuss] [Development] BYOC CodeGen for customized Call Node/Operator

2022-01-06 Thread Yuke Wang via Apache TVM Discuss
Now I counter another problem ``` nn.func doesn't have an FTVMStrategy registered. You can register one in python with `tvm.relay.op.register_strategy`. ``` Should I put some dummy strategy for this operator even if I use BYOC? --- [Visit Topic](https://discuss.tvm.apache.org/t/byoc-codege