[apache/incubator-tvm] [COMMUNITY] New committer -- @mbaret (#6873)

2020-11-06 Thread Tianqi Chen
Please join us to welcome @mbaret as a new committer Matt has been contributing to relay graph optimization, customized codegen(BYOC). He is also spending quite a good chunk of time interacting with other developers outside his organizations in the form of participating discussions, helping

[Apache TVM Discuss] [Development] Role of the LLVM autovectorizer in TVM

2020-11-06 Thread Giuseppe Rossini via Apache TVM Discuss
Hi all, I am trying to understand the role of the LLVM auto-vectorizer in TVM. Indeed, in `llvm_codegen.cc` we explicitly set: ``` builder.LoopVectorize = true; builder.SLPVectorize = true; ``` And I am trying to determine to what level TVM is relying on LLVM auto-vectorization. ### Wh