gemini-code-assist[bot] commented on code in PR #18420:
URL: https://github.com/apache/tvm/pull/18420#discussion_r2492845136
##########
python/tvm/relax/frontend/torch/exported_program_translator.py:
##########
@@ -701,11 +701,23 @@ def _select(self, node: fx.Node) -> relax.Var:
return self.block_builder.emit(relax.op.take(x, index, dim))
def _slice(self, node: fx.Node) -> relax.Var:
+ import sys
Review Comment:

For style consistency and to avoid potential repeated import overhead,
`import` statements should be at the top of the file. Please move `import sys`
to the module's top-level imports.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]