kparzysz-quic opened a new pull request #5984: URL: https://github.com/apache/incubator-tvm/pull/5984
In LLVM 11+ the distinction between fixed and scalable vector types has become more explicit. Before the introduction of scalable vector types `VectorType::get(e,n)` created what is now a fixed vector type. With the addition of scalable types, it is recommended to use `FixedVectorType` and `ScalableVectorType` classes directly. Alternatively, there is a `VectorType::get` that accepts a 3rd parameter indicating whether the type should be fixed or scalable. Using the older `VectorType::get` that implicitly assumes the fixed type is deprecated and LLVM now generates a warning. Change calls to `VectorType::get` to `FixedVectorType::get` to avoid compilation warnings. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
