Created
October 31, 2018 09:16
-
-
Save andersx/ee94a5217446eed75961e9cc179ac5b6 to your computer and use it in GitHub Desktop.
to_lapack.f90
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| do i = 1, n | |
| partial(:) = get_partial(i) | |
| do j = 1, n | |
| k(j, i) = k(j, i) + dot_product(partial(:), deriv(:, j)) | |
| enddo | |
| enddo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment