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

Fortran version needs Rate print fix #7

Open
jeffhammond opened this issue Aug 18, 2022 · 1 comment
Open

Fortran version needs Rate print fix #7

jeffhammond opened this issue Aug 18, 2022 · 1 comment

Comments

@jeffhammond
Copy link
Owner

When n is huge, we need to not compute the total bytes in INTEGER precision, when it's the default of 32 bits. The fix is trivial:

-          WRITE (*,FMT=9050) label(j),n*bytes(j)*nbpw/mintime(j)/1.0D6,
+          WRITE (*,FMT=9050) label(j),n/1.0D6*bytes(j)*nbpw/mintime(j),
@jeffhammond
Copy link
Owner Author

Also need this:

- 9050 FORMAT (a,4 (f10.4,2x))
+ 9050 FORMAT (a,4 (f15.4,2x))

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

No branches or pull requests

1 participant