123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- /*
- * Copyright (C) 2016 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Intel Corporation nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #if !defined( __IPPCORE_H__ ) || defined( _OWN_BLDPCS )
- #define __IPPCORE_H__
- #if defined (_WIN32_WCE) && defined (_M_IX86) && defined (__stdcall)
- #define _IPP_STDCALL_CDECL
- #undef __stdcall
- #endif
- #ifndef __IPPDEFS_H__
- #include "ippdefs.h"
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if !defined( _IPP_NO_DEFAULT_LIB )
- #if defined( _IPP_SEQUENTIAL_DYNAMIC )
- #pragma comment( lib, __FILE__ "/../../lib/" _INTEL_PLATFORM "ippcore" )
- #elif defined( _IPP_SEQUENTIAL_STATIC )
- #pragma comment( lib, __FILE__ "/../../lib/" _INTEL_PLATFORM "ippcoremt" )
- #elif defined( _IPP_PARALLEL_DYNAMIC )
- #pragma comment( lib, __FILE__ "/../../lib/" _INTEL_PLATFORM "threaded/ippcore" )
- #elif defined( _IPP_PARALLEL_STATIC )
- #pragma comment( lib, __FILE__ "/../../lib/" _INTEL_PLATFORM "threaded/ippcoremt" )
- #endif
- #endif
- /* /////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- // Functions declarations
- ////////////////////////////////////////////////////////////////////////////////
- ///////////////////////////////////////////////////////////////////////////// */
- /* /////////////////////////////////////////////////////////////////////////////
- // Name: ippGetLibVersion
- // Purpose: getting of the library version
- // Returns: the structure of information about version
- // of ippcore library
- // Parameters:
- //
- // Notes: not necessary to release the returned structure
- */
- IPPAPI( const IppLibraryVersion*, ippGetLibVersion, (void) )
- /* /////////////////////////////////////////////////////////////////////////////
- // Name: ippGetStatusString
- // Purpose: convert the library status code to a readable string
- // Parameters:
- // StsCode IPP status code
- // Returns: pointer to string describing the library status code
- //
- // Notes: don't free the pointer
- */
- IPPAPI( const char*, ippGetStatusString, ( IppStatus StsCode ) )
- /* /////////////////////////////////////////////////////////////////////////////
- // Name: ippGetCpuClocks
- // Purpose: reading of time stamp counter (TSC) register value
- // Returns: TSC value
- //
- // Note: An hardware exception is possible if TSC reading is not supported by
- / the current chipset
- */
- IPPAPI( Ipp64u, ippGetCpuClocks, (void) )
- /* ///////////////////////////////////////////////////////////////////////////
- // Names: ippSetFlushToZero,
- // ippSetDenormAreZero.
- //
- // Purpose: ippSetFlushToZero enables or disables the flush-to-zero mode,
- // ippSetDenormAreZero enables or disables the denormals-are-zeros
- // mode.
- //
- // Arguments:
- // value - !0 or 0 - set or clear the corresponding bit of MXCSR
- // pUMask - pointer to user store current underflow exception mask
- // ( may be NULL if don't want to store )
- //
- // Return:
- // ippStsNoErr - Ok
- // ippStsCpuNotSupportedErr - the mode is not supported
- */
- IPPAPI( IppStatus, ippSetFlushToZero, ( int value, unsigned int* pUMask ))
- IPPAPI( IppStatus, ippSetDenormAreZeros, ( int value ))
- /* /////////////////////////////////////////////////////////////////////////////
- // Name: ippAlignPtr
- // Purpose: pointer aligning
- // Returns: aligned pointer
- //
- // Parameter:
- // ptr - pointer
- // alignBytes - number of bytes to align
- //
- */
- IPPAPI( void*, ippAlignPtr, ( void * ptr, int alignBytes ) )
- /* /////////////////////////////////////////////////////////////////////////////
- // Functions to allocate and free memory
- ///////////////////////////////////////////////////////////////////////////// */
- /* /////////////////////////////////////////////////////////////////////////////
- // Name: ippMalloc
- // Purpose: 64-byte aligned memory allocation
- // Parameter:
- // len number of bytes
- // Returns: pointer to allocated memory
- //
- // Notes: the memory allocated by ippMalloc has to be free by ippFree
- // function only.
- */
- IPPAPI( void*, ippMalloc, (int length) )
- /* /////////////////////////////////////////////////////////////////////////////
- // Name: ippFree
- // Purpose: free memory allocated by the ippMalloc function
- // Parameter:
- // ptr pointer to the memory allocated by the ippMalloc function
- //
- // Notes: use the function to free memory allocated by ippMalloc
- */
- IPPAPI( void, ippFree, (void* ptr) )
- /* /////////////////////////////////////////////////////////////////////////////
- // Name: ippInit
- // Purpose: Automatic switching to best for current cpu library code using.
- // Returns:
- // ippStsNoErr
- //
- // Parameter: nothing
- //
- // Notes: At the moment of this function execution no any other IPP function
- // has to be working
- */
- IPPAPI( IppStatus, ippInit, ( void ))
- /* ////////////////////////////////////////////////////////////////////////////
- // Name: ippGetCpuFreqMhz
- //
- // Purpose: the function estimates cpu frequency and returns
- // its value in MHz as a integer
- //
- // Return:
- // ippStsNoErr Ok
- // ippStsNullPtrErr null pointer to the freq value
- // ippStsSizeErr wrong num of tries, internal var
- // Arguments:
- // pMhz pointer to the integer to write
- // cpu freq value estimated
- //
- // Notes: no exact value is guaranteed, the value could
- // vary with cpu workloading
- */
- IPPAPI(IppStatus, ippGetCpuFreqMhz, ( int* pMhz ) )
- /* ////////////////////////////////////////////////////////////////////////////
- // Name: ippSetNumThreads
- //
- // Purpose:
- //
- // Return:
- // ippStsNoErr Ok
- // ippStsNoOperation For static library internal threading is not supported
- // ippStsSizeErr Desired number of threads less or equal zero
- //
- // Arguments:
- // numThr Desired number of threads
- */
- IPPAPI( IppStatus, ippSetNumThreads, ( int numThr ) )
- /* ////////////////////////////////////////////////////////////////////////////
- // Name: ippGetNumThreads
- //
- // Purpose:
- //
- // Return:
- // ippStsNoErr Ok
- // ippStsNullPtrErr Pointer to numThr is Null
- // ippStsNoOperation For static library internal threading is not supported
- // and return value is always == 1
- //
- // Arguments:
- // pNumThr Pointer to memory location where to store current numThr
- */
- IPPAPI( IppStatus, ippGetNumThreads, (int* pNumThr) )
- /* ////////////////////////////////////////////////////////////////////////////
- // Name: ippGetMaxCacheSizeB
- //
- // Purpose: Detects maximal from the sizes of L2 or L3 in bytes
- //
- // Return:
- // ippStsNullPtrErr The result's pointer is NULL.
- // ippStsNotSupportedCpu The cpu is not supported.
- // ippStsUnknownCacheSize The cpu is supported, but the size of the cache is unknown.
- // ippStsNoErr Ok
- //
- // Arguments:
- // pSizeByte Pointer to the result
- //
- // Note:
- // 1). Intel(R) processors are supported only.
- // 2). Intel(R) Itanium(R) processors and platforms with Intel XScale(R) technology are unsupported
- // 3). For unsupported processors the result is "0",
- // and the return status is "ippStsNotSupportedCpu".
- // 4). For supported processors the result is "0",
- // and the return status is "ippStsUnknownCacheSize".
- // if sizes of the cache is unknown.
- //
- */
- IPPAPI( IppStatus, ippGetMaxCacheSizeB, ( int* pSizeByte ) )
- /*
- // Name: ippGetCpuFeatures
- // Purpose: Detects CPU features.
- // Parameters:
- // pFeaturesMask Pointer to the features mask.
- // Nonzero value of bit means the corresponding feature is supported.
- // Features mask values are defined in the ippdefs.h
- // [ 0] - MMX ( ippCPUID_MMX )
- // [ 1] - SSE ( ippCPUID_SSE )
- // [ 2] - SSE2 ( ippCPUID_SSE2 )
- // [ 3] - SSE3 ( ippCPUID_SSE3 )
- // [ 4] - SSSE3 ( ippCPUID_SSSE3 )
- // [ 5] - MOVBE ( ippCPUID_MOVBE )
- // [ 6] - SSE41 ( ippCPUID_SSE41 )
- // [ 7] - SSE42 ( ippCPUID_SSE42 )
- // [ 8] - AVX ( ippCPUID_AVX )
- // [ 9] - ENABLEDBYOS( ippAVX_ENABLEDBYOS )
- // [10] - AES ( ippCPUID_AES )
- // [11] - PCLMULQDQ ( ippCPUID_CLMUL )
- // [12] - ABR ( ippCPUID_ABR )
- // [13] - RDRAND ( ippCPUID_RDRAND )
- // [14] - F16C ( ippCPUID_F16C )
- // [15] - AVX2 ( ippCPUID_AVX2 )
- // [16] - ADOX/ADCX ( ippCPUID_ADCOX ) ADCX and ADOX instructions
- // [17] - RDSEED ( ippCPUID_RDSEED ) The RDSEED instruction
- // [18] - PREFETCHW ( ippCPUID_PREFETCHW ) The PREFETCHW instruction
- // [19] - SHA ( ippCPUID_SHA ) Intel (R) SHA Extensions
- // [20:63] - Reserved
- //
- // pCpuidInfoRegs Pointer to the 4-element vector.
- // Result of CPUID.1 are stored in this vector.
- // [0] - register EAX
- // [1] - register EBX
- // [2] - register ECX
- // [3] - register EDX
- // If pointer pCpuidInfoRegs is set to NULL, registers are not stored.
- //
- // Returns:
- // ippStsNullPtrErr The pointer to the features mask (pFeaturesMask) is NULL.
- // ippStsNotSupportedCpu CPU is not supported.
- // ippStsNoErr Ok
- //
- // Note: Only IA-32 and Intel(R) 64 are supported
- */
- IPPAPI( IppStatus, ippGetCpuFeatures, ( Ipp64u* pFeaturesMask,
- Ipp32u pCpuidInfoRegs[4] ) )
- /*
- // Name: ippGetEnabledCpuFeatures
- // Purpose: Detects enabled features for loaded libraries
- // Returns: Features mask
- // Features mask values are defined in the ippdefs.h
- // [ 0] - ippCPUID_MMX
- // [ 1] - ippCPUID_SSE
- // [ 2] - ippCPUID_SSE2
- // [ 3] - ippCPUID_SSE3
- // [ 4] - ippCPUID_SSSE3
- // [ 5] - ippCPUID_MOVBE
- // [ 6] - ippCPUID_SSE41
- // [ 7] - ippCPUID_SSE42
- // [ 8] - ippCPUID_AVX
- // [ 9] - ippAVX_ENABLEDBYOS
- // [10] - ippCPUID_AES
- // [11] - ippCPUID_CLMUL
- // [12] - ippCPUID_ABR
- // [13] - ippCPUID_RDRAND
- // [14] - ippCPUID_F16C
- // [15] - ippCPUID_AVX2
- // [16] - ippCPUID_ADCOX
- // [17] - ippCPUID_RDSEED
- // [18] - ippCPUID_PREFETCHW
- // [19] - ippCPUID_SHA
- // [20:63] - Reserved
- //
- */
- IPPAPI( Ipp64u, ippGetEnabledCpuFeatures, ( void ) )
- /* ////////////////////////////////////////////////////////////////////////////
- // Name: ippSetCpuFeatures
- //
- // Purpose: Changes the set of enabled/disabled CPU features.
- // This function sets the processor-specific code of the Intel IPP
- // library according to the processor features specified in cpuFeatures.
- //
- // Return:
- // ippStsNoErr No errors.
- // Warnings:
- // ippStsFeatureNotSupported Current CPU doesn't support at least 1 of the
- // desired features;
- // ippStsUnknownFeature At least one of the desired features is unknown;
- // ippStsFeaturesCombination Wrong combination of features;
- // ippStsCpuMismatch Indicates that the specified processor features
- // are not valid. Previously set code is used.
- //
- // Arguments:
- // cpuFeatures Desired features to support by the library
- // (see ippdefs.h for ippCPUID_XX definition)
- //
- // NOTE: this function can re-initializes dispatcher and after the
- // call another library (letter) may work
- // CAUTION: At the moment of this function excecution no any other IPP
- // function has to be working
- //
- // The next pre-defined sets of features can be used:
- // 32-bit code:
- // #define PX_FM ( ippCPUID_MMX | ippCPUID_SSE )
- // #define W7_FM ( PX_FM | ippCPUID_SSE2 )
- // #define V8_FM ( W7_FM | ippCPUID_SSE3 | ippCPUID_SSSE3 )
- // #define S8_FM ( V8_FM | ippCPUID_MOVBE )
- // #define P8_FM ( V8_FM | ippCPUID_SSE41 | ippCPUID_SSE42 | ippCPUID_AES | ippCPUID_CLMUL | ippCPUID_SHA )
- // #define G9_FM ( P8_FM | ippCPUID_AVX | ippAVX_ENABLEDBYOS | ippCPUID_RDRAND | ippCPUID_F16C )
- // #define H9_FM ( G9_FM | ippCPUID_AVX2 | ippCPUID_MOVBE | ippCPUID_ADCOX | ippCPUID_RDSEED | ippCPUID_PREFETCHW )
- //
- // 64-bit code:
- // #define PX_FM ( ippCPUID_MMX | ippCPUID_SSE | ippCPUID_SSE2 )
- // #define M7_FM ( PX_FM | ippCPUID_SSE3 )
- // #define N8_FM ( S8_FM )
- // #define U8_FM ( V8_FM )
- // #define Y8_FM ( P8_FM )
- // #define E9_FM ( G9_FM )
- // #define L9_FM ( H9_FM )
- //
- */
- IPPAPI( IppStatus, ippSetCpuFeatures,( Ipp64u cpuFeatures ))
- #if defined (_IPP_STDCALL_CDECL)
- #undef _IPP_STDCALL_CDECL
- #define __stdcall __cdecl
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif /* __IPPCORE_H__ */
|