There must be an API to find TVM package version in Python program. Something like, 0.13.0 or 0.16.0.
In addition to that, are there any host API’s or codes to check TVM or TVM runtime version that is running on Pynq side.
Thanks in advance,
There must be an API to find TVM package version in Python program. Something like, 0.13.0 or 0.16.0.
In addition to that, are there any host API’s or codes to check TVM or TVM runtime version that is running on Pynq side.
Thanks in advance,
>>> import tvm
>>> tvm.__version__
'0.17.dev0'
>>>