On Mon, 26 Jan 2015 11:42:42 +0100
Mikael Mortensen <[email protected]> wrote:

> Hi,
> 
> With recent (today) hashdist installation I run the following test.py
> script
> 
> from dolfin import *
> 
> mesh = UnitSquareMesh(4, 4)
> V = VectorFunctionSpace(mesh, 'CG', 1)
> u = interpolate(Expression(('x[0]', 'x[1]')), V)
> print “Hi"
> 
> 
> [mikael@ubuntu tests (master)]$ python test.py
> Hi
> 
> and then it just hangs there without exiting. Same thing in ipython.
> I am currently using host python, but I got the same when I compiled
> with hashdist python. Anyone else experiencing this weirdness? Any
> idea what is going on? I’m on Ubuntu 14.04 and I’ve done
> instant-clean.

To debug it, you could try attaching debugger (if it is allowed on your
system)

gdb python <pid>

hit ^C, and print stacktrace

(gdb) bt

Jan

> 
> Mikael
> 
> 
> _______________________________________________
> fenics-support mailing list
> [email protected]
> http://fenicsproject.org/mailman/listinfo/fenics-support

_______________________________________________
fenics-support mailing list
[email protected]
http://fenicsproject.org/mailman/listinfo/fenics-support

Reply via email to