← Back to team overview

dolfin team mailing list archive

parameters["optimize"] not used?

 

Hello!

Are any of these parameters every used in JIT compilation? 
(From GlobalParameters.h)

  p.add("optimize_form", false);
  p.add("optimize_use_dofmap_cache", false);
  p.add("optimize_use_tensor_cache", false);
  p.add("optimize", false);

Looks to me that these are legacy parameters. We now use:

  parameters["form_compiler"].foo

to set the optimization.

Johan


Follow ups