This is a read only copy of the old FEniCS QA forum. Please visit the new QA forum to ask questions

Is there a way to run AdaptiveLinearSolver in parallel?

0 votes

When I try to run my simple poisson solver code with AdaptiveLinearSolver in parallel I encounter:

Storing of data to time series is not yet working in parallel.

Is there a workaround for this?

Redacted portion of the code:

problem = LinearVariationalProblem(a, L, u,bc)
solver = AdaptiveLinearVariationalSolver(problem, E)
solver.parameters["error_control"]["dual_variational_solver"]["linear_solver"] = "gmres"
solver.parameters["linear_variational_solver"]["linear_solver"] = "gmres"

closed as a duplicate of: Parallel adapt?
asked Aug 27, 2014 by obm FEniCS Novice (680 points)
closed Aug 30, 2014 by chris_richardson
...