IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
set.h
Go to the documentation of this file.
1 // set.h:
3 // ------------
4 //
15 
16 #ifndef __IPSDKUTIL_INSTRUCTIONSET_SET_H__
17 #define __IPSDKUTIL_INSTRUCTIONSET_SET_H__
18 
22 
23 namespace ipsdk {
24 namespace simd {
25 
28 
31 template <eInstructionSet::domain instructionSet, typename T>
32 IPSDK_FORCEINLINE
33 void
34 set(T* buffer, T value, ipUInt64 nbElts)
35 {
36  detail::SetImpl<instructionSet, T>::act(buffer, value, nbElts);
37 }
38 
41 
42 } // end of namespace simd
43 } // end of namespace ipsdk
44 
45 #endif // __IPSDKUTIL_INSTRUCTIONSET_SET_H__
Defines the IPSDK_FORCEINLINE.
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
uint64_t ipUInt64
Base types definition.
Definition: BaseTypes.h:55
Definition: SetImpl.h:29
Definition of import/export macro for library.