I am currently running tvm model on snapdragon 888 with ci_hex docker image (tvmcihexagon/ci-hexagon-base:v0.01_SDK4.2.0.2)
When I build model with tvm.target.hexagon(‘v66’), it works well
However, when I build model with tvm.target.hexagon(‘v68’), it raises an error as follows:
llvm: Unknown command line argument '-force-hvx-float'
When I comment following codes in python/tvm/target/target.py
#To enable auto-verctorization for v68 target added the below llvm-option by default
if arch_version == 68:
if not llvm_options:
llvm_options = ""
llvm_options += " -force-hvx-float"
it does not raises an error but shows lots of warning like
'+hvx-qfloat' is not a recognized feature for this target (ignoring feature)
'+hvx-ieee-fp' is not a recognized feature for this target (ignoring feature)
Is there any problem in docker image (like newer version should I use?) or some other issue?
thanks in advance
Jaeyoon