Skip to content
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

[tritonbench] Report tflops by default for gemm; fix exception handling #2259

Closed
wants to merge 1 commit into from

Conversation

bertmaher
Copy link
Contributor

Summary: TFLOPS is the core metric for gemm. Along the way I hit some bugs and weirdness:

  • You couldn't Ctrl-C out of tritonbench, because the finally clause contained a return, which suppresses the exception
  • In generally I don't think the framework should catch RuntimeErrors, it makes it really hard to debug stuff because the desired result just ends up missing
  • In fact we had a typo (metric instead of metrics in the framework code that was never caught because it was caught and suppressed

Test Plan:

python run_benchmark.py triton --op gemm --splitk

@facebook-github-bot
Copy link
Contributor

@bertmaher has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator.

Summary: TFLOPS is the core metric for gemm.  Along the way I hit some bugs and weirdness:

- You couldn't Ctrl-C out of tritonbench, because the `finally` clause contained a return, which [suppresses the exception](https://docs.python.org/3/tutorial/errors.html#defining-clean-up-actions)
- In generally I don't think the framework should catch RuntimeErrors, it makes it really hard to debug stuff because the desired result just ends up missing
- In fact we had a typo (`metric` instead of `metrics` in the framework code that was never caught because it was caught and suppressed

Test Plan:
```
python run_benchmark.py triton --op gemm --splitk
```
@facebook-github-bot
Copy link
Contributor

@bertmaher has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator.

@facebook-github-bot
Copy link
Contributor

@bertmaher merged this pull request in 8a8c1fc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants