(func)
| 61 | from tvm.support import ndk, tar |
| 62 | |
| 63 | def export_with(func): |
| 64 | return lambda mod, path: mod.export_library(path, fcompile=func) |
| 65 | |
| 66 | if export_func == "tar": |
| 67 | export_func = export_with(tar.tar) |
no test coverage detected
searching dependent graphs…