Skip to content

Commit

Permalink
perf tests fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
DSFKnight committed Dec 29, 2024
1 parent 44936d2 commit b7ced21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/seq/gromov_a_convex_hull/perf_tests/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#include "seq/gromov_a_convex_hull/include/ops_seq.hpp"

TEST(gromov_a_convex_hull_seq, test_pipeline_run) {
const int width = 500;
const int height = 500;
const int width = 400;
const int height = 400;

std::vector<int> grid(width * height, 1);
std::vector<int> hull(width * height);
Expand Down Expand Up @@ -54,8 +54,8 @@ TEST(gromov_a_convex_hull_seq, test_pipeline_run) {
}

TEST(gromov_a_convex_hull_seq, test_task_run) {
const int width = 500;
const int height = 500;
const int width = 400;
const int height = 400;

std::vector<int> grid(width * height, 1);
std::vector<int> hull(width * height);
Expand Down

0 comments on commit b7ced21

Please sign in to comment.