ArmageddonKnight commented on code in PR #11793: URL: https://github.com/apache/tvm/pull/11793#discussion_r913312165
########## include/tvm/tir/transform.h: ########## @@ -117,11 +127,13 @@ TVM_DLL Pass LoopPartition(); /*! * \brief Lower vectorization loops. * - * \param enable_vectorize Whether vectorization is enabled. + * \param enable_vectorize Whether vectorization is enabled. + * \param enable_local_pad Whether local padding is enabled. Local padding can affect + * how vectorization is made. * * \return The pass. */ -TVM_DLL Pass VectorizeLoop(bool enable_vectorize = true); +TVM_DLL Pass VectorizeLoop(const bool enable_vectorize = true, const bool enable_local_pad = false); Review Comment: Qualifiers removed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
