Skip to content
Snippets Groups Projects
Commit 991e0e96 authored by Daniel Bauer's avatar Daniel Bauer :speech_balloon:
Browse files

add curl-curl plus mass operator for scaling run

parent 7cd39496
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ def generate_toplevel_cmake( ...@@ -63,7 +63,7 @@ def generate_toplevel_cmake(
output_path = os.path.join(args.output, "CMakeLists.txt") output_path = os.path.join(args.output, "CMakeLists.txt")
with open(output_path, "w") as f: with open(output_path, "w") as f:
print(f'add_compile_options( "-Wno-shadow" )', file=f) # print(f'add_compile_options( "-Wno-shadow" )', file=f)
print(f"", file=f) print(f"", file=f)
print(f"if(NOT WALBERLA_DOUBLE_ACCURACY)", file=f) print(f"if(NOT WALBERLA_DOUBLE_ACCURACY)", file=f)
print(f' add_compile_options( "-Wno-float-conversion" )', file=f) print(f' add_compile_options( "-Wno-float-conversion" )', file=f)
......
--extra-index-url https://test.pypi.org/simple/ --extra-index-url https://test.pypi.org/simple/
hfg @ git+ssh://git@i10git.cs.fau.de/terraneo/hyteg-form-generator.git@2a830d525314b1ec1d718720534267c485b5a9a7 hfg @ git+ssh://git@i10git.cs.fau.de/terraneo/hyteg-form-generator.git@aeeb7d4c4f99e59d208a8d09a51522a7093fd7ff
tomli >= 1.1.0 ; python_version < "3.11" tomli >= 1.1.0 ; python_version < "3.11"
clang-format # clang-format
[[curl_curl]] # [[curl_curl]]
# trial-space = "N1E1"
# test-space = "N1E1"
# dimensions = [3]
# quadrature = 0
# loop-strategy = "sawtooth"
# optimizations = ["moveconstants", "vectorize"]
[[curl_curl_plus_mass]]
trial-space = "N1E1" trial-space = "N1E1"
test-space = "N1E1" test-space = "N1E1"
form-space-args = { alpha_fem_space = "P1", beta_fem_space = "P1" }
dimensions = [3] dimensions = [3]
quadrature = 0 quadrature = "xiao_gimbutas_02"
loop-strategy = "sawtooth" loop-strategy = "sawtooth"
optimizations = ["moveconstants", "vectorize"] optimizations = ["moveconstants", "vectorize", "quadloops", "tabulate"]
[[diffusion]] # [[diffusion]]
trial-space = "P1" # trial-space = "P1"
test-space = "P1" # test-space = "P1"
dimensions = [2, 3] # dimensions = [2, 3]
quadrature = 0 # quadrature = 0
loop-strategy = "cubes" # loop-strategy = "cubes"
optimizations = ["cutloops", "moveconstants", "vectorize"] # optimizations = ["cutloops", "moveconstants", "vectorize"]
[[div_k_grad]] [[div_k_grad]]
trial-space = "P1" trial-space = "P1"
test-space = "P1" test-space = "P1"
form-space-args.coefficient_function_space = "P1" form-space-args.coefficient_function_space = "P1"
dimensions = [2, 3] dimensions = [2, 3]
quadrature = 2 quadrature = "xiao_gimbutas_01"
loop-strategy = "sawtooth" loop-strategy = "sawtooth"
optimizations = ["moveconstants", "vectorize", "quadloops"] optimizations = ["moveconstants", "vectorize", "quadloops", "tabulate"]
[[div_k_grad]] [[div_k_grad]]
trial-space = "P2" trial-space = "P2"
...@@ -32,10 +41,10 @@ quadrature = 2 ...@@ -32,10 +41,10 @@ quadrature = 2
loop-strategy = "sawtooth" loop-strategy = "sawtooth"
optimizations = ["moveconstants", "vectorize", "quadloops"] optimizations = ["moveconstants", "vectorize", "quadloops"]
[[mass]] # [[mass]]
trial-space = "P1" # trial-space = "P1"
test-space = "P1" # test-space = "P1"
dimensions = [2, 3] # dimensions = [2, 3]
quadrature = 2 # quadrature = 2
loop-strategy = "sawtooth" # loop-strategy = "sawtooth"
optimizations = ["moveconstants", "vectorize", "quadloops", "tabulate"] # optimizations = ["moveconstants", "vectorize", "quadloops", "tabulate"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment