Skip to content

Commit

Permalink
Perf test increase time
Browse files Browse the repository at this point in the history
  • Loading branch information
mahbhlddnhakkh committed Apr 23, 2024
1 parent 061eb1b commit 93fe4e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/omp/kulagin_a_gauss_filter_vert/perf_tests/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

TEST(kulagin_a_gauss_filter_vert_seq, test_pipeline_run) {
// Create data
size_t w = 1500;
size_t h = 1500;
size_t w = 3500;
size_t h = 3500;
float sigma = 2.0f;
std::vector<uint32_t> img = kulagin_a_gauss::generator1(w, h);
std::vector<float> kernel = kulagin_a_gauss::generate_kernel(sigma);
Expand Down Expand Up @@ -49,8 +49,8 @@ TEST(kulagin_a_gauss_filter_vert_seq, test_pipeline_run) {

TEST(kulagin_a_gauss_filter_vert_seq, test_task_run) {
// Create data
size_t w = 1500;
size_t h = 1500;
size_t w = 3500;
size_t h = 3500;
float sigma = 2.0f;
std::vector<uint32_t> img = kulagin_a_gauss::generator1(w, h);
std::vector<float> kernel = kulagin_a_gauss::generate_kernel(sigma);
Expand Down

0 comments on commit 93fe4e1

Please sign in to comment.