File tree Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 1
- # Release and work directories
1
+ # Python cache
2
2
__pycache__ *
3
- __work *
4
3
5
4
# Visual Studio related files, e.g., ".vscode"
6
5
.vs *
7
6
8
- # Dataset files
9
- data_cache
10
- * .csv
11
- * .npy
12
- * .npz
13
7
14
- # Results at repo root
15
- vtune_results
8
+ # Misc. files at repository root:
9
+ # - default data cache directory
10
+ /data_cache
11
+ # - results
12
+ /_ * results *
16
13
/* .json
17
14
/* .xlsx
15
+ # - scripts
18
16
/* .ipynb
17
+ /* .py
18
+ /* .sh
19
+ # - archives with results or data
20
+ /* .tgz
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ Configs have the three highest parameter keys:
85
85
| <h3 >Benchmark workflow parameters</h3 >||||
86
86
| ` bench ` :` taskset ` | None | | Value for ` -c ` argument of ` taskset ` utility used over benchmark subcommand. |
87
87
| ` bench ` :` vtune_profiling ` | None | | Analysis type for ` collect ` argument of Intel(R) VTune* Profiler tool. Linux* OS only. |
88
- | ` bench ` :` vtune_results_directory ` | ` vtune_results ` | | Directory path to store Intel(R) VTune* Profiler results. |
88
+ | ` bench ` :` vtune_results_directory ` | ` _vtune_results ` | | Directory path to store Intel(R) VTune* Profiler results. |
89
89
| ` bench ` :` n_runs ` | ` 10 ` | | Number of runs for measured entity. |
90
90
| ` bench ` :` time_limit ` | ` 3600 ` | | Time limit in seconds before the benchmark early stop. |
91
91
| ` bench ` :` distributor ` | None | None, ` mpi ` | Library used to handle distributed algorithm. |
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ def generate_benchmark_command(
51
51
if vtune_profiling is not None :
52
52
if sys .platform == "linux" :
53
53
vtune_result_dir = get_bench_case_value (
54
- bench_case , "bench:vtune_results_directory" , "vtune_results "
54
+ bench_case , "bench:vtune_results_directory" , "_vtune_results "
55
55
)
56
56
os .makedirs (vtune_result_dir , exist_ok = True )
57
57
vtune_result_path = os .path .join (
You can’t perform that action at this time.
0 commit comments