added some new performance tests

This commit is contained in:
Ilya Lavrenov
2014-03-01 20:08:58 +04:00
parent 37580687e6
commit 68957b2757
3 changed files with 87 additions and 2 deletions

View File

@@ -59,7 +59,8 @@ typedef TestBaseWithParam<GemmParams> GemmFixture;
OCL_PERF_TEST_P(GemmFixture, Gemm, ::testing::Combine(
::testing::Values(Size(1000, 1000), Size(1500, 1500)),
Values((int)cv::GEMM_3_T, (int)cv::GEMM_3_T | (int)cv::GEMM_2_T)))
Values((int)cv::GEMM_3_T, (int)cv::GEMM_3_T | (int)cv::GEMM_2_T,
(int)cv::GEMM_1_T, (int)cv::GEMM_1_T | (int)cv::GEMM_2_T)))
{
GemmParams params = GetParam();
const Size srcSize = get<0>(params);