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

clean FFC (JIT) cache

0 votes

In a time-stepping code of mine, I'm getting
Calling FFC just-in-time (JIT) compiler, this may take some time.
in every step which delays computation. If k steps are computed, the compilation will only take place from step k+1 on the next time, so I'm guessing the results of the compilation are cached. Unfortunately, instant-clean/instant-clean-3 doesn't remove the cache. Anything else I can try to remove?

asked Jun 28, 2017 by nschloe FEniCS User (7,120 points)

1 Answer

+2 votes
 
Best answer

FFC use dijitso, so to clean the cache run:

dijitso clean
answered Jun 28, 2017 by johannr FEniCS Expert (17,350 points)
selected Jun 28, 2017 by nschloe

Perfect, thank you!

...