-
Notifications
You must be signed in to change notification settings - Fork 65
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
multilayer SW solver requires dgesv #146
Comments
Are you thinking we should fall-back to directly compiled source for the routine? We definitely do not want to usually do this. |
Yes, best to use lapack if available. But we could provide something like we do for this example: |
So we would need to come up with some sort of check to see if we can link against a native LAPACK. Obviously a configure could do this so we probably need to come up with something similar. |
Or should we just cleanly skip this unit test if lapack isn't available, as happens with the netCDF tests? |
Might be easiest. |
Running nose tests on a new AWS EC2 instance revealed this issue in
rpn2_layered_shallow_water.f90
lapack is required or at least the subroutine
dgesv
and any dependencies:riemann/src/rpn2_layered_shallow_water.f90
Line 103 in 3d89c52
The text was updated successfully, but these errors were encountered: