Hello. I struggled to find 0.8.dev0 version, but couldn’t find anywhere, even about the commit id for 0.8.dev0. (Only found 0.8.rc0 and 0.8.0) Is there any way to get commit id of 0.8.dev0?
0.8.dev0
is not a tag for specific commit id. It’s the version for a period developing process, after 0.7 released but before 0.8 release.
However, there are 0.9.dev0, 0.10.dev0, … in the github with specific commit ID.
- https://github.com/apache/tvm/tree/v0.9.dev0 : 3ad7c4a76933dbb47d794f75be7ad4d0c52e1e10
- https://github.com/apache/tvm/tree/v0.10.dev0 : 0e23122846aa3b7a5350102d8c06fa21695d34be
If I understand correctly, you mean that v0.9.dev0 can be either 3ad7c4a76933dbb47d794f75be7ad4d0c52e1e10 or other commit?
dev
tags are created after the previous version releases (see Release Process — tvm 0.13.dev0 documentation)
It is not meaningful except for indicating the current developing version.
BTW, why do you need to find the commit id of 0.8.dev0
?
Thanks for your detailed example and document
Now I fully understood!
Someone asked me to use tvm 0.8.dev0 for some research because he used that version at that time.
But that version is not that meaningful as you told me