/* primtest.h * vi:ts=4 sw=4 * * (c) Copyright 2012 Hewlett-Packard Development Company, L.P. * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. You may obtain * a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing * permissions and limitations under the License. Algorithms used by * this code may be covered by patents by HP, Microsoft, or other parties. */ #ifdef __GNUC__ # pragma once #endif #ifndef __PRIMTEST_H_INCLUDED__ #define __PRIMTEST_H_INCLUDED__ #include #include #include #include #include #include "measure.h" #ifdef WITH_IPP #include #include #endif #define ALIGN(x) x DECLSPEC_ALIGN(MEMORY_ALLOCATION_ALIGNMENT) #define ABS(_x_) ((_x_) < 0 ? (-(_x_)) : (_x_)) #define MAX_TEST_SIZE 4096 extern int test_sizes[]; #define NUM_TEST_SIZES 10 extern void get_random_data(void *buffer, size_t size); #ifndef SUCCESS #define SUCCESS 0 #endif #ifndef FAILURE #define FAILURE 1 #endif extern int test_copy8u_func(void); extern int test_copy8u_speed(void); extern int test_set8u_func(void); extern int test_set32s_func(void); extern int test_set32u_func(void); extern int test_set8u_speed(void); extern int test_set32s_speed(void); extern int test_set32u_speed(void); extern int test_sign16s_func(void); extern int test_sign16s_speed(void); extern int test_add16s_func(void); extern int test_add16s_speed(void); extern int test_lShift_16s_func(void); extern int test_lShift_16u_func(void); extern int test_rShift_16s_func(void); extern int test_rShift_16u_func(void); extern int test_lShift_16s_speed(void); extern int test_lShift_16u_speed(void); extern int test_rShift_16s_speed(void); extern int test_rShift_16u_speed(void); extern int test_RGBToRGB_16s8u_P3AC4R_func(void); extern int test_RGBToRGB_16s8u_P3AC4R_speed(void); extern int test_yCbCrToRGB_16s16s_P3P3_func(void); extern int test_yCbCrToRGB_16s16s_P3P3_speed(void); extern int test_YCoCgRToRGB_8u_AC4R_func(void); extern int test_YCoCgRToRGB_8u_AC4R_speed(void); extern int test_RGB565ToARGB_16u32u_C3C4_func(void); extern int test_RGB565ToARGB_16u32u_C3C4_speed(void); extern int test_alphaComp_func(void); extern int test_alphaComp_speed(void); extern int test_and_32u_func(void); extern int test_and_32u_speed(void); extern int test_or_32u_func(void); extern int test_or_32u_speed(void); /* Since so much of this code is repeated, define a macro to build * functions to do speed tests. */ #ifdef _M_ARM #define SIMD_TYPE "Neon" #else #define SIMD_TYPE "SSE" #endif #define DO_NORMAL_MEASUREMENTS(_funcNormal_, _prework_) \ do { \ for (s=0; s 0.0) _floatprint(resultNormal[s], sN); \ if (resultOpt[s] > 0.0) \ { \ _floatprint(resultOpt[s], sSN); \ if (resultNormal[s] > 0.0) \ { \ sprintf(sSNp, "%d%%", \ (int) (resultOpt[s] / resultNormal[s] * 100.0 + 0.5)); \ } \ } \ if (resultIPP[s] > 0.0) \ { \ _floatprint(resultIPP[s], sIPP); \ if (resultNormal[s] > 0.0) \ { \ sprintf(sIPPp, "%d%%", \ (int) (resultIPP[s] / resultNormal[s] * 100.0 + 0.5)); \ } \ } \ printf("%8d: %15s %15s %5s %15s %5s\n", \ size_array[s], sN, sSN, sSNp, sIPP, sIPPp); \ } \ free(resultNormal); free(resultOpt); free(resultIPP); \ } #endif // !__PRIMTEST_H_INCLUDED__