joshherr-quic commented on PR #13418: URL: https://github.com/apache/tvm/pull/13418#issuecomment-1320361119
I'm not seeing any codegen errors, but I am seeing a lot of errors > Hi, @mehrdadh and @joshherr-quic ! Sorry for stupid question, but when I try to use Hexagon docker I run the following command: `./docker/bash.sh ci_hexagon` But as I see from the downloaded image it still uses LLVM-14: > > ``` > $ /opt/clang-llvm/bin/llvm-config --version > 14.0.0 > ``` > > But even LLVM_SHA=361a27c155ec8b should correspond to LLVM-15.x if I am correct. > > What should I do to use up-to-date LLVM version in the docker image? Build the docker locally? The docker image you download is built according to the tvm commit that corresponds to [this](https://github.com/apache/tvm/blob/main/Jenkinsfile#L60) commit id. That commit still has llvm 14. The PR that we're looking at merely updates the docker image that would get built for **this** commit. We still need to open another PR to update the commit id in the [Jenkinsfile](https://github.com/apache/tvm/blob/main/Jenkinsfile#L60) so that CI will build the new LLVM version. Only after that follow-up commit will the updated docker with the newer llvm be available. So your intuition is correct! You would need to build the docker locally to take advantage of the newest LLVM right now. New dockers with new llvm should hopefully be available over the weekend for download. -- 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]
