dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #20101
Re: [Bug 668862] Re: Sparsity pattern computation dead slow with 'real' spaces
> I guess it is this line that takes time:
>
> diagonal[I].insert(map_j[j]);
diagonal is of course not a std::set but a dolfin::Set. Anyhow it is
definately the call to std::find that takes time, in the dolfin::Set::find
method.
Not sure why it should take so much longer time searching a vector when a Real
space is used.
Using a std::set might probably speed up it for this case?
Johan
--
Sparsity pattern computation dead slow with 'real' spaces
https://bugs.launchpad.net/bugs/668862
You received this bug notification because you are a member of DOLFIN
Team, which is subscribed to DOLFIN.
Status in DOLFIN: New
Bug description:
The computation of the sparsity pattern is dead slow when real spaces are used, i.e.,
R = FunctionSpace(mesh, 'R', 0)
To see the problem, compare the neumann-poisson and poisson demos with fine meshes (256x256)
Follow ups
References