From ae0a6247686c8a950d9986be80a700ddfc908abf Mon Sep 17 00:00:00 2001 From: Nesterov Alexander Date: Wed, 12 Feb 2025 23:04:04 +0100 Subject: [PATCH] Update func_all.cpp --- tasks/all/example/func_tests/func_all.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/all/example/func_tests/func_all.cpp b/tasks/all/example/func_tests/func_all.cpp index 937b0d68e..7d4198ef5 100644 --- a/tasks/all/example/func_tests/func_all.cpp +++ b/tasks/all/example/func_tests/func_all.cpp @@ -40,7 +40,7 @@ TEST(nesterov_a_test_task_all, test_matmul_50) { TEST(nesterov_a_test_task_all, test_matmul_from_pic) { cv::Mat img = cv::imread(ppc::util::GetAbsolutePath("all/example/data/pic_all.jpg")); EXPECT_EQ(img.rows, img.cols); - const int count = img.rows + img.cols; + const int count = (img.rows + img.cols) / 10; // Create data std::vector in(count * count, 0);