From 800e6af09b1071c3d9d58f8fe608d6afcf704fda Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de> Date: Thu, 6 Apr 2017 15:28:15 +0200 Subject: [PATCH] Add slicing option --- python/dune/perftool/options.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/dune/perftool/options.py b/python/dune/perftool/options.py index 3589f773..028e160f 100644 --- a/python/dune/perftool/options.py +++ b/python/dune/perftool/options.py @@ -57,6 +57,7 @@ class PerftoolOptionsArray(ImmutableRecord): sumfact = PerftoolOption(default=False, helpstr="Use sumfactorization") vectorize_quad = PerftoolOption(default=False, helpstr="whether to generate code with explicit vectorization") vectorize_grads = PerftoolOption(default=False, helpstr="whether to generate code with explicit vectorization") + vectorize_slice = PerftoolOption(default=False, helpstr="whether to generate code with explicit vectorization") turn_off_diagonal_jacobian = PerftoolOption(default=False, helpstr="Do not use diagonal_jacobian transformation on the ufl tree and cast result of jacobianInverseTransposed into a FieldMatrix.") architecture = PerftoolOption(default="haswell", helpstr="The architecture to optimize for. Possible values: haswell|knl") -- GitLab