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

How to separate compilation and execution of FEniCS solver?

0 votes

I want to write code and compile in on computor A, run it on cluster B under mpi. Is it possible from python code?

asked Dec 20, 2015 by Panda FEniCS Novice (440 points)

1 Answer

0 votes

Python is, of course, interpreted, not compiled, so I assume you mean the JIT code. Provided the architecture and fenics installations are the same, you just need the instant cache folder to be the same (usually in ~/.instant).

answered Dec 21, 2015 by chris_richardson FEniCS Expert (31,740 points)
...