From d948a1f6f5778166420452aeffd0f2fe62aebce0 Mon Sep 17 00:00:00 2001 From: eqy Date: Tue, 9 Apr 2019 22:11:21 -0700 Subject: [PATCH] add output format to ndk build func (#2999) --- python/tvm/contrib/ndk.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/tvm/contrib/ndk.py b/python/tvm/contrib/ndk.py index 931fa03a7308..e1703ce03f8e 100644 --- a/python/tvm/contrib/ndk.py +++ b/python/tvm/contrib/ndk.py @@ -63,3 +63,6 @@ def create_shared(output, msg = "Compilation error:\n" msg += py_str(out) raise RuntimeError(msg) + +# assign output format +create_shared.output_format = "so"