From 52dcc90b00f07a4e56d1be8650f435978e8b2bec Mon Sep 17 00:00:00 2001 From: mbs-octoml <mbs@octoml.ai> Date: Thu, 26 May 2022 12:52:26 -0700 Subject: [PATCH] - Lints --- python/tvm/relay/transform/transform.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/tvm/relay/transform/transform.py b/python/tvm/relay/transform/transform.py index 3e82e55b9c535..4ee1f070c541c 100644 --- a/python/tvm/relay/transform/transform.py +++ b/python/tvm/relay/transform/transform.py @@ -1375,7 +1375,7 @@ def OutlineCompilerFunctionsWithExistingGlobalSymbols(compiler_filter=""): attribute. The functions are bound to unique global vars according to their existing "global_symbol" attribute. At most one function with the same global symbol is outlined. - If \p compiler_filter is non-empty only functions with that as their attribute value are + If compiler_filter is non-empty only functions with that as their attribute value are outlined. This pass may be useful for external codegen using the "RelayToTIR" custom pass mechanism @@ -1399,7 +1399,7 @@ def MarkCompilerFunctionsAsExtern(compiler_filter=""): compiler_filter as 'extern' by replacing all attributes with a single "Extern" attribute, and rewrite all calls to such functions to use the 'call_lowered' calling convention. - If \p compiler_filter is non-empty only functions with that as their attribute value are + If compiler_filter is non-empty only functions with that as their attribute value are outlined. This pass may be useful for external codegen using the "RelayToTIR" custom pass mechanism to