-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bad code practice #2
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Lei Wen <[email protected]>
Preparing review... |
1 similar comment
Preparing review... |
PR Analysis
PR Feedback
|
@@ -35,6 +35,8 @@ def has_cutlass(): | |||
"""Returns true if the CUTLASS custom codegen is available""" | |||
return tvm.get_global_func("relay.ext.cutlass.create_c_source_module", True) is not None | |||
|
|||
def ddd(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the unused function 'ddd' [important]
@@ -35,6 +35,8 @@ def has_cutlass(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add docstrings and comments to explain the purpose and usage of the code [medium]
@@ -35,6 +35,8 @@ def has_cutlass(): | |||
"""Returns true if the CUTLASS custom codegen is available""" | |||
return tvm.get_global_func("relay.ext.cutlass.create_c_source_module", True) is not None | |||
|
|||
def ddd(): | |||
print("testing") | |||
|
|||
def _get_cutlass_path(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add more tests to ensure that the code is working correctly and to prevent future regressions [medium]
No description provided.