Skip to content

Commit fedbe81

Browse files
committed
reduce performance test iteration count to 50 across processes tests
1 parent f7b7544 commit fedbe81

File tree

3 files changed

+3
-3
lines changed
  • tasks
    • example_processes_2/tests/performance
    • example_processes_3/tests/performance
    • example_processes/tests/performance

3 files changed

+3
-3
lines changed

tasks/example_processes/tests/performance/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace nesterov_a_test_task_processes {
99

1010
class ExampleRunPerfTestProcesses : public ppc::util::BaseRunPerfTests<InType, OutType> {
11-
const int kCount_ = 200;
11+
const int kCount_ = 50;
1212
InType input_data_{};
1313

1414
void SetUp() override {

tasks/example_processes_2/tests/performance/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace nesterov_a_test_task_processes {
99

1010
class ExampleRunPerfTestProcesses : public ppc::util::BaseRunPerfTests<InType, OutType> {
11-
const int kCount_ = 200;
11+
const int kCount_ = 50;
1212
InType input_data_{};
1313

1414
void SetUp() override {

tasks/example_processes_3/tests/performance/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace nesterov_a_test_task_processes {
99

1010
class ExampleRunPerfTestProcesses : public ppc::util::BaseRunPerfTests<InType, OutType> {
11-
const int kCount_ = 200;
11+
const int kCount_ = 50;
1212
InType input_data_{};
1313

1414
void SetUp() override {

0 commit comments

Comments
 (0)