-
Notifications
You must be signed in to change notification settings - Fork 861
fix: compile flags for trtllm fmha_v2 #2175
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3711,10 +3711,10 @@ def generate_files(specs_names): | |
| ] | ||
| if "CUDA_PATH" in os.environ: | ||
| cmd[0] = os.environ["CUDA_PATH"] + "/bin/" + cmd[0] | ||
| print('Running command "{}" to build "bin/print_traits.exe":'.format(" ".join(cmd))) | ||
| # print('Running command "{}" to build "bin/print_traits.exe":'.format(" ".join(cmd))) | ||
| process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) | ||
| output, error = process.communicate() | ||
| print('Running "bin/print_traits.exe":') | ||
| # print('Running "bin/print_traits.exe":') | ||
|
Comment on lines
+3714
to
+3717
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of commenting out these |
||
| process = subprocess.Popen( | ||
| "bin/print_traits.exe", stdin=subprocess.PIPE, stdout=subprocess.PIPE | ||
| ) | ||
|
|
||
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.
Are these changes relevant to the PR?
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.
not really, just commenting these out from the original trtllm script to clean up the stdout