Hey guys,
in low level python API i am using this target
target = tvm.target.mali(model="rk3588")
target_host = tvm.target.arm_cpu(model="rk3588")
When using high level python API (tvmc), i am able to use as target when compile the following
package = tvmc.compile(model, target=str(target), package_path="lpr_model.tar") # Step 2: Compile
aka string representation of target.
But how can I run it with OpenCL using mali device?
result = tvmc.run(new_package, device="opencl") # Step 3: Run
does not work (it works only using low level python api)