File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -1120,7 +1120,9 @@ jobs:
1120
1120
python3 scripts/run_perf_counter.py --required-tests-number=2
1121
1121
- name : Run perf tests
1122
1122
run : |
1123
- source scripts/generate_perf_results.sh
1123
+ bash -e scripts/generate_perf_results.sh
1124
+ env :
1125
+ OMP_NUM_THREADS : 4
1124
1126
- name : Archive results
1125
1127
uses : montudor/action-zip@v1
1126
1128
with :
Original file line number Diff line number Diff line change 11
11
#include " stl/example/include/ops_stl.hpp"
12
12
13
13
TEST (nesterov_a_test_task_stl, test_pipeline_run) {
14
- constexpr int kCount = 700 ;
14
+ constexpr int kCount = 450 ;
15
15
16
16
// Create data
17
17
std::vector<int > in (kCount * kCount , 0 );
@@ -52,7 +52,7 @@ TEST(nesterov_a_test_task_stl, test_pipeline_run) {
52
52
}
53
53
54
54
TEST (nesterov_a_test_task_stl, test_task_run) {
55
- constexpr int kCount = 700 ;
55
+ constexpr int kCount = 450 ;
56
56
57
57
// Create data
58
58
std::vector<int > in (kCount * kCount , 0 );
Original file line number Diff line number Diff line change 11
11
#include " tbb/example/include/ops_tbb.hpp"
12
12
13
13
TEST (nesterov_a_test_task_tbb, test_pipeline_run) {
14
- constexpr int kCount = 700 ;
14
+ constexpr int kCount = 450 ;
15
15
16
16
// Create data
17
17
std::vector<int > in (kCount * kCount , 0 );
@@ -52,7 +52,7 @@ TEST(nesterov_a_test_task_tbb, test_pipeline_run) {
52
52
}
53
53
54
54
TEST (nesterov_a_test_task_tbb, test_task_run) {
55
- constexpr int kCount = 700 ;
55
+ constexpr int kCount = 450 ;
56
56
57
57
// Create data
58
58
std::vector<int > in (kCount * kCount , 0 );
You can’t perform that action at this time.
0 commit comments