From 383be34caed049263e9f73378e91b1376489f999 Mon Sep 17 00:00:00 2001 From: sung Date: Tue, 28 Mar 2023 13:18:07 -0700 Subject: [PATCH] black --- python/tvm/runtime/module.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/tvm/runtime/module.py b/python/tvm/runtime/module.py index 17d1c9f63c9e2..c643308ead247 100644 --- a/python/tvm/runtime/module.py +++ b/python/tvm/runtime/module.py @@ -258,9 +258,9 @@ def get_property_mask(self): return _ffi_api.ModuleGetPropertyMask(self) @property - def is_binary_serializable(self): - """Returns true if module is 'binary serializable', ie can be serialzed into binary - stream and loaded back to the runtime module. + def is_binary_serializable(self): + """Returns true if module is 'binary serializable', ie can be serialzed into binary + stream and loaded back to the runtime module. Returns ------- @@ -271,7 +271,7 @@ def is_binary_serializable(self): @property def is_runnable(self): - """Returns true if module is 'runnable'. ie can be executed without any extra + """Returns true if module is 'runnable'. ie can be executed without any extra compilation/linking steps. Returns