-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
fenics fails to install on current unstable as of Dec 18 2019 #75886
Comments
Requesting @jamtrott to update fenics to 2019.1.0 |
@rht @jamtrott Did try upgrading (and actually fixing stuff on Linux): master...knedlsepp:bump-fenics. Got most of it building (some things are known issues, e.g. incompatibility with newer pytest versions). I'm however still having trouble running a simple example, which crashes with a segmentation fault: from fenics import *
mesh = UnitSquareMesh(8, 8)
V = FunctionSpace(mesh, 'P', 1)
u_D = Expression('1 + x[0]*x[0] + 2*x[1]*x[1]', degree=2)
def boundary(x, on_boundary):
return on_boundary
bc = DirichletBC(V, u_D, boundary)
u = TrialFunction(V)
v = TestFunction(V)
f = Constant(-6.0)
a = dot(grad(u), grad(v))*dx
L = f*v*dx
u = Function(V)
solve(a == L, u, bc) Any help welcome. (Currently thinking that there different versions of openBLAS in the closure, openblasCompat from numpy and openblas from suitesparse) |
Describe the bug
fenics
fails to install with this error message:To Reproduce
Run
nix-build
withallowUnsupportedSystem = true
.The text was updated successfully, but these errors were encountered: