I invoke TVM Compiler with composite target, using the following command
$python3 -m pdb -m tvm.driver.tvmc compile --target="mrvl, llvm" --output=b11_mlf.tar cnn_b11.0_model.onnx
UserWarning: target_host parameter is going to be deprecated. Please pass in tvm.target.Target(target, host=target_host) instead.
"target_host parameter is going to be deprecated. "
TVMC did not complaint anything before, but now it complains about deprecated target for mrvl.Under BYOC marvel was accepted by TVMC sometime back, I have no clue why I get this warning now , Could some one put light on this warning >
Apologies, I was thinking of a different API deprecation. In general, it’s safe to disregard this message. It looks like it’s complaining about an internal misuse of TVM’s Target or tvm.build APIs. Rest assured we do not have plans to drop hybrid target support, so I think you can ignore it.