We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On line 20, you are computing the TFLOPS as such: conv_flops = MN * MN * CK * CK * HW * HW
conv_flops = MN * MN * CK * CK * HW * HW
Wouldn't it actually be 2x this since each of those points is an add and a mul? I see the "*2" in tflops_sweep.py
Brings the computed speed from 4.8 TFLOPS to 9.6 TFLOPS, a lot closer to the 10.4 theoretical max.
(though since it's 3x3, it might be a Winograd conv)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On line 20, you are computing the TFLOPS as such:
conv_flops = MN * MN * CK * CK * HW * HW
Wouldn't it actually be 2x this since each of those points is an add and a mul? I see the "*2" in tflops_sweep.py
Brings the computed speed from 4.8 TFLOPS to 9.6 TFLOPS, a lot closer to the 10.4 theoretical max.
(though since it's 3x3, it might be a Winograd conv)
The text was updated successfully, but these errors were encountered: