slyubomirsky commented on a change in pull request #7288:
URL: https://github.com/apache/tvm/pull/7288#discussion_r557810652
##########
File path: tests/python/relay/test_pass_annotate_target.py
##########
@@ -738,8 +738,8 @@ def after():
mod = tvm.IRModule.from_expr(func)
return mod
- for annotate_non_call_ops in [True, False, True]:
- result = transform.AnnotateTarget(target)(before())
+ for annotate_non_call_ops in [True, False]:
+ result = transform.AnnotateTarget(target,
annotate_non_call_ops)(before())
Review comment:
Changed this test because it looked incorrectly, please correct me if
there was a reason the variable wasn't used
##########
File path: tests/python/relay/test_pass_annotate_target.py
##########
@@ -738,8 +738,8 @@ def after():
mod = tvm.IRModule.from_expr(func)
return mod
- for annotate_non_call_ops in [True, False, True]:
- result = transform.AnnotateTarget(target)(before())
+ for annotate_non_call_ops in [True, False]:
+ result = transform.AnnotateTarget(target,
annotate_non_call_ops)(before())
Review comment:
Changed this test because it looked incorrect, please correct me if
there was a reason the variable wasn't used
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]