diff --git a/applications/poisson_dg/donkey.sbatch b/applications/poisson_dg/donkey.sbatch index bfb847bfdee7548bc88b418062be4180e9379972..f1a60328aa968182cffa614789ee24f45047a56f 100755 --- a/applications/poisson_dg/donkey.sbatch +++ b/applications/poisson_dg/donkey.sbatch @@ -28,12 +28,18 @@ srun $SRUNOPT ./app_poisson_dg_deg2_opcount app_poisson_dg_3d_deg2_opcount.ini srun $SRUNOPT ./app_poisson_dg_deg3_opcount app_poisson_dg_3d_deg3_opcount.ini srun $SRUNOPT ./app_poisson_dg_deg4_opcount app_poisson_dg_3d_deg4_opcount.ini srun $SRUNOPT ./app_poisson_dg_deg5_opcount app_poisson_dg_3d_deg5_opcount.ini +srun $SRUNOPT ./app_poisson_dg_deg5_opcount app_poisson_dg_3d_deg6_opcount.ini +srun $SRUNOPT ./app_poisson_dg_deg5_opcount app_poisson_dg_3d_deg7_opcount.ini +srun $SRUNOPT ./app_poisson_dg_deg5_opcount app_poisson_dg_3d_deg8_opcount.ini # Run the timing executables COUNT=0 -while [ $COUNT -lt 5 ]; do +while [ $COUNT -lt 2 ]; do srun $SRUNOPT ./app_poisson_dg_deg2_nonopcount app_poisson_dg_3d_deg2_nonopcount.ini srun $SRUNOPT ./app_poisson_dg_deg3_nonopcount app_poisson_dg_3d_deg3_nonopcount.ini srun $SRUNOPT ./app_poisson_dg_deg4_nonopcount app_poisson_dg_3d_deg4_nonopcount.ini srun $SRUNOPT ./app_poisson_dg_deg5_nonopcount app_poisson_dg_3d_deg5_nonopcount.ini + srun $SRUNOPT ./app_poisson_dg_deg6_nonopcount app_poisson_dg_3d_deg6_nonopcount.ini + srun $SRUNOPT ./app_poisson_dg_deg7_nonopcount app_poisson_dg_3d_deg7_nonopcount.ini + srun $SRUNOPT ./app_poisson_dg_deg8_nonopcount app_poisson_dg_3d_deg8_nonopcount.ini done diff --git a/applications/poisson_dg/poisson_dg.mini b/applications/poisson_dg/poisson_dg.mini index 6ed74e8658d52d7b71e0360bc019d1ee7de2fcd0..4589bc207022420d4c97929ced5cd890b6f787e8 100644 --- a/applications/poisson_dg/poisson_dg.mini +++ b/applications/poisson_dg/poisson_dg.mini @@ -36,4 +36,4 @@ time_opcounter = 0, 1 | expand opcount [formcompiler.ufl_variants] cell = hexahedron -degree = 2, 3, 4, 5 | expand +degree = 2, 3, 4, 5, 6, 7, 8 | expand diff --git a/bin/CMakeLists.txt b/bin/CMakeLists.txt index 24d4227e677f9c762885eeacaefebb3429867bc0..6282cf568052b38100846019246f75fc29b15503 100644 --- a/bin/CMakeLists.txt +++ b/bin/CMakeLists.txt @@ -1,4 +1,10 @@ -dune_symlink_to_source_files(FILES calculate_floprate.py - make_graph.sh - performance_regression.py +dune_install_python_script(SCRIPT calculate_floprate.py + REQUIRES pandas + ) + +dune_install_python_script(SCRIPT performance_regression.py + REQUIRES pandas + ) + +dune_symlink_to_source_files(FILES make_graph.sh )