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
In section 1.2 of the documentation, there is an error in the calculation of total CPU cycles for the matrix multiplication example.
The text currently states: "...totaling to almost 10^15 for the entire computation..."
The calculation is incorrect. Based on the given information:
The correct calculation should be: (1.4 * 10^9) * 630 ≈ 8.82 * 10^11, which is closer to 10^12.
Update the text to read: "...totaling to almost 10^12 for the entire computation..."
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Incorrect CPU cycle calculation in Section 1.2
In section 1.2 of the documentation, there is an error in the calculation of total CPU cycles for the matrix multiplication example.
Current text
The text currently states:
"...totaling to almost 10^15 for the entire computation..."
Issue
The calculation is incorrect. Based on the given information:
The correct calculation should be:
(1.4 * 10^9) * 630 ≈ 8.82 * 10^11, which is closer to 10^12.
Proposed change
Update the text to read:
"...totaling to almost 10^12 for the entire computation..."
The text was updated successfully, but these errors were encountered: