diff --git a/yaml_examples/kudu_plan.yaml b/yaml_examples/kudu_plan.yaml index 8981b80..d2cbc6a 100644 --- a/yaml_examples/kudu_plan.yaml +++ b/yaml_examples/kudu_plan.yaml @@ -144,9 +144,10 @@ benches: - "400 400 400" - "500 500 500" environment_variables: - - {"OMP_NUM_THREADS": 1} + - {"OMP_NUM_THREADS": 1} ## TODO: RAYON_NUM_THREADS needs to be set - {"OMP_NUM_THREADS": 4} - {"OMP_NUM_THREADS": 16} + - {"OMP_NUM_THREADS": 32} - {"OMP_NUM_THREADS": 64} analysis: metrics: @@ -198,7 +199,7 @@ benches: args: - "500 500 500" [sbatch_config, environment_variables]: - - [{"nodes": 1}, {"OMP_NUM_THREADS": 40}] + - [{"nodes": 1}, {"OMP_NUM_THREADS": 40}] ## TODO: Figure out best for one MPI node, then duplicate across many - [{"nodes": 2}, {"OMP_NUM_THREADS": 20}] - [{"nodes": 4}, {"OMP_NUM_THREADS": 10}] - [{"nodes": 10}, {"OMP_NUM_THREADS": 4}] diff --git a/yaml_examples/testing_plan.yaml b/yaml_examples/testing_plan.yaml deleted file mode 100644 index 153cd34..0000000 --- a/yaml_examples/testing_plan.yaml +++ /dev/null @@ -1,26 +0,0 @@ -#defaults: -# "default name": -executables: - "executable name": - sbatch_config: - "nodes": 1 - "ntasks-per-node": 1 - "cpus-per-task": 1 - "mem-per-cpu": 3700 - module_loads: - - "GCC/11.3.0" - environment_variables: {} - directory: "../0_cpp_versions/0_ref" - build_commands: - - "make -j 8" - run_command: "./test_HPCCG" - -benches: - "bench name": - executables: ["executable name"] - matrix: - - args: - - "50 50 50" - - "100 100 100" - - environment_variables: - - OMP_NUM_THREADS: 8