43 #include <x86intrin.h>
44 #include <smmintrin.h>
45 #include <immintrin.h>
50 #define RPP_MIN_8U ( 0 )
52 #define RPP_MAX_8U ( 255 )
54 #define RPPT_MAX_DIMS ( 5 )
56 #define RPPT_MAX_AUDIO_CHANNELS ( 16 )
58 #define CHECK_RETURN_STATUS(x) do { \
61 fprintf(stderr, "Runtime error: %s returned %d at %s:%d", #x, retval, __FILE__, __LINE__); \
67 #include <hip/hip_runtime.h>
68 #define RPP_HOST_DEVICE __host__ __device__
70 #define RPP_HOST_DEVICE
73 const float ONE_OVER_6 = 1.0f / 6;
74 const float ONE_OVER_3 = 1.0f / 3;
75 const float ONE_OVER_255 = 1.0f / 255;
76 const uint MMS_MAX_SCRATCH_MEMORY = 115293120;
77 const uint SPECTROGRAM_MAX_SCRATCH_MEMORY = 372877312;
168 rppStatusSuccess = 0,
169 rppStatusBadParm = -1,
170 rppStatusUnknownError = -2,
171 rppStatusNotInitialized = -3,
172 rppStatusInvalidValue = -4,
173 rppStatusAllocFailed = -5,
174 rppStatusInternalError = -6,
175 rppStatusNotImplemented = -7,
176 rppStatusUnsupportedOp = -8,
184 RPP_SCALAR_OP_AND = 1,
189 RPP_SCALAR_OP_NOTEQUAL,
191 RPP_SCALAR_OP_LESSEQ,
192 RPP_SCALAR_OP_GREATER,
193 RPP_SCALAR_OP_GREATEREQ,
195 RPP_SCALAR_OP_SUBTRACT,
196 RPP_SCALAR_OP_MULTIPLY,
197 RPP_SCALAR_OP_DIVIDE,
198 RPP_SCALAR_OP_MODULUS,
289 RPPI_HORIZONTAL_AXIS,
371 unsigned int roiWidth;
372 unsigned int roiHeight;
434 NEAREST_NEIGHBOR = 0,
495 int roiWidth, roiHeight;
505 int roiWidth, roiHeight, roiDepth;
628 float boxMullerExtra;
663 switch(interpolationType)
665 case RpptInterpolationType::BICUBIC:
670 case RpptInterpolationType::LANCZOS:
672 if(in_size > out_size)
674 this->radius = 3.0f * scaleRatio;
675 this->scale = (1 / scaleRatio);
681 case RpptInterpolationType::GAUSSIAN:
683 if(in_size > out_size)
685 this->radius = scaleRatio;
686 this->scale = (1 / scaleRatio);
690 case RpptInterpolationType::TRIANGULAR:
692 if(in_size > out_size)
694 this->radius = scaleRatio;
695 this->scale = (1 / scaleRatio);
706 this->size = std::ceil(2 * this->radius);
724 Rpp32f locRaw = x * scale + center;
725 Rpp32s locFloor = std::floor(locRaw);
726 Rpp32f weight = locRaw - locFloor;
727 locFloor = std::max(std::min(locFloor, lookupSize - 2), 0);
728 Rpp32f current = lookup[locFloor];
729 Rpp32f next = lookup[locFloor + 1];
730 return current + weight * (next - current);
733 inline __m128 operator()(__m128 x)
735 __m128 pLocRaw = _mm_add_ps(_mm_mul_ps(x, pScale), pCenter);
736 __m128i pxLocFloor = _mm_cvttps_epi32(pLocRaw);
737 __m128 pLocFloor = _mm_cvtepi32_ps(pxLocFloor);
738 __m128 pWeight = _mm_sub_ps(pLocRaw, pLocFloor);
740 _mm_storeu_si128(
reinterpret_cast<__m128i*
>(idx), pxLocFloor);
741 __m128 pCurrent = _mm_setr_ps(lookup[idx[0]], lookup[idx[1]], lookup[idx[2]], lookup[idx[3]]);
742 __m128 pNext = _mm_setr_ps(lookup[idx[0] + 1], lookup[idx[1] + 1], lookup[idx[2] + 1], lookup[idx[3] + 1]);
743 return _mm_add_ps(pCurrent, _mm_mul_ps(pWeight, _mm_sub_ps(pNext, pCurrent)));
746 Rpp32f scale = 1, center = 1;
747 Rpp32s lobes = 0, coeffs = 0;
749 Rpp32f *lookupPinned =
nullptr;
750 std::vector<Rpp32f> lookup;
751 __m128 pCenter, pScale;
760 inline RPP_HOST_DEVICE
virtual Rpp32f hz_to_mel(
Rpp32f hz) = 0;
761 inline RPP_HOST_DEVICE
virtual Rpp32f mel_to_hz(
Rpp32f mel) = 0;
770 inline RPP_HOST_DEVICE
Rpp32f hz_to_mel(
Rpp32f hz) {
return 1127.0f * std::log(1.0f + (hz / 700.0f)); }
771 inline RPP_HOST_DEVICE
Rpp32f mel_to_hz(
Rpp32f mel) {
return 700.0f * (std::exp(mel / 1127.0f) - 1.0f); }
782 const Rpp32f fsp = 66.666667f;
783 const Rpp32f minLogHz = 1000.0;
784 const Rpp32f minLogMel = (minLogHz - freqLow) / fsp;
785 const Rpp32f stepLog = 0.068751777;
787 const Rpp32f invMinLogHz = 0.001f;
788 const Rpp32f invStepLog = 1.0f / stepLog;
789 const Rpp32f invFsp = 1.0f / fsp;
795 mel = minLogMel + std::log(hz * invMinLogHz) * invStepLog;
797 mel = (hz - freqLow) * invFsp;
805 if (mel >= minLogMel)
806 hz = minLogHz * std::exp(stepLog * (mel - minLogMel));
808 hz = freqLow + mel * fsp;
913 Rpp32f *scratchBufferHost;
1000 clmemSize maxSrcSize;
1001 clmemSize maxDstSize;
1003 clmemRpp32f floatArr[10];
1004 clmemRpp64f doubleArr[10];
1005 clmemRpp32u uintArr[10];
1006 clmemRpp32s intArr[10];
1007 clmemRpp8u ucharArr[10];
1008 clmemRpp8s charArr[10];
1009 cl_mem srcBatchIndex;
1010 cl_mem dstBatchIndex;
1024 #elif defined(HIP_COMPILE)
RppiPad
RPPI Image pad type enum.
Definition: rppdefs.h:311
RppiFormat
RPPI Image format type enum.
Definition: rppdefs.h:320
unsigned int Rpp32u
32 bit unsigned int
Definition: rppdefs.h:90
RppConvertBitDepthMode
RPP BitDepth Conversion type enum.
Definition: rppdefs.h:207
int Rpp32s
32 bit signed int
Definition: rppdefs.h:92
signed char Rpp8s
8 bit signed char
Definition: rppdefs.h:84
RppiChnFormat
RPPI Image channel format type enum.
Definition: rppdefs.h:279
RpptMelScaleFormula
RPPT Mel Scale Formula.
Definition: rppdefs.h:456
unsigned short Rpp16u
16 bit unsigned short
Definition: rppdefs.h:86
unsigned char Rpp8u
8 bit unsigned char
Definition: rppdefs.h:82
void * RppPtr_t
void pointer
Definition: rppdefs.h:102
RpptLayout
RPPT Tensor layout type enum.
Definition: rppdefs.h:392
RppiBlur
RPPI Image blur type enum.
Definition: rppdefs.h:298
RppiAxis
RPP Image axis type enum.
Definition: rppdefs.h:288
RpptRoiType
RPPT Tensor 2D ROI type enum.
Definition: rppdefs.h:406
RpptDataType
RPPT Tensor datatype enum.
Definition: rppdefs.h:381
struct RpptResamplingWindow RpptResamplingWindow
RPPT Tensor RpptResamplingWindow type struct.
double Rpp64f
64 bit double
Definition: rppdefs.h:100
RpptAudioBorderType
RPPT Audio Border Type.
Definition: rppdefs.h:446
size_t RppSize_t
size_t
Definition: rppdefs.h:104
struct GenericFilter GenericFilter
RPPT Tensor GenericFilter type struct.
RppStatus
RPP RppStatus type enums.
Definition: rppdefs.h:110
RpptRoi3DType
RPPT Tensor 3D ROI type enum.
Definition: rppdefs.h:415
RppOp
RPP Operations type enum.
Definition: rppdefs.h:183
unsigned long long Rpp64u
64 bit unsigned long long
Definition: rppdefs.h:94
#define RPPT_MAX_DIMS
RPP maximum dimensions in tensor .
Definition: rppdefs.h:54
RpptInterpolationType
RPPT Tensor interpolation type enum.
Definition: rppdefs.h:433
RpptSubpixelLayout
RPPT Tensor subpixel layout type enum.
Definition: rppdefs.h:424
short Rpp16s
16 bit signed short
Definition: rppdefs.h:88
RppiColorConvertMode
RPPI Image color convert mode type enum.
Definition: rppdefs.h:260
float Rpp32f
32 bit float
Definition: rppdefs.h:98
RppiFuzzyLevel
RPPI Image fuzzy level type enum.
Definition: rppdefs.h:269
long long Rpp64s
64 bit long long
Definition: rppdefs.h:96
rppStatus_t
RPP rppStatus_t type enums.
Definition: rppdefs.h:167
@ RPP_ERROR_NOT_IMPLEMENTED
Function variant requested is not implemented / unsupported.
Definition: rppdefs.h:124
@ RPP_ERROR_INVALID_DST_DATATYPE
Invalid dst tensor datatype. (Needs to adhere to function specification.)
Definition: rppdefs.h:136
@ RPP_ERROR_INVALID_OUTPUT_TILE_LENGTH
Invalid output tile length (Needs to adhere to function specification.)
Definition: rppdefs.h:152
@ RPP_ERROR_OUT_OF_BOUND_SRC_ROI
Out of bound source ROI.
Definition: rppdefs.h:146
@ RPP_ERROR_OUT_OF_BOUND_SHARED_MEMORY_SIZE
Shared memory size needed is beyond the bounds (Needs to adhere to function specification....
Definition: rppdefs.h:154
@ RPP_ERROR_ZERO_DIVISION
Arguments provided will result in zero division error.
Definition: rppdefs.h:120
@ RPP_ERROR_INVALID_ARGUMENTS
One or more arguments invalid. (Needs to adhere to function specification.)
Definition: rppdefs.h:116
@ RPP_ERROR_LAYOUT_MISMATCH
src and dst layout mismatch
Definition: rppdefs.h:148
@ RPP_ERROR_INVALID_CHANNELS
Number of channels is invalid. (Needs to adhere to function specification.)
Definition: rppdefs.h:150
@ RPP_ERROR_INVALID_SRC_CHANNELS
Invalid src tensor number of channels. (Needs to adhere to function specification....
Definition: rppdefs.h:126
@ RPP_ERROR_INVALID_SRC_OR_DST_DATATYPE
Invalid src/dst tensor datatype. (Needs to adhere to function specification.)
Definition: rppdefs.h:138
@ RPP_ERROR_INVALID_PARAMETER_DATATYPE
Invalid datatype.
Definition: rppdefs.h:142
@ RPP_ERROR_NOT_ENOUGH_MEMORY
Not enough memory to write outputs, as per dim-lengths and strides set in descriptor.
Definition: rppdefs.h:144
@ RPP_ERROR
Unspecified error.
Definition: rppdefs.h:114
@ RPP_ERROR_INVALID_SRC_DIMS
Number of src dims is invalid. (Needs to adhere to function specification.)
Definition: rppdefs.h:158
@ RPP_ERROR_OUT_OF_BOUND_SCRATCH_MEMORY_SIZE
Scratch memory size needed is beyond the bounds (Needs to adhere to function specification....
Definition: rppdefs.h:156
@ RPP_ERROR_INVALID_DST_LAYOUT
Invalid dst tensor layout. (Needs to adhere to function specification.)
Definition: rppdefs.h:132
@ RPP_ERROR_INVALID_DST_CHANNELS
Invalid dst tensor number of channels. (Needs to adhere to function specification....
Definition: rppdefs.h:128
@ RPP_ERROR_INVALID_SRC_DATATYPE
Invalid src tensor datatype. (Needs to adhere to function specification.)
Definition: rppdefs.h:134
@ RPP_ERROR_INVALID_SRC_LAYOUT
Invalid src tensor layout. (Needs to adhere to function specification.)
Definition: rppdefs.h:130
@ RPP_ERROR_HIGH_SRC_DIMENSION
Src tensor / src ROI dimension too high. (Needs to adhere to function specification....
Definition: rppdefs.h:122
@ RPP_SUCCESS
No error.
Definition: rppdefs.h:112
@ RPP_ERROR_INSUFFICIENT_DST_BUFFER_LENGTH
Insufficient dst buffer length provided. (Needs to adhere to function specification....
Definition: rppdefs.h:140
@ RPP_ERROR_INVALID_DST_DIMS
Number of dst dims is invalid. (Needs to adhere to function specification.)
Definition: rppdefs.h:160
@ RPP_ERROR_LOW_OFFSET
Low tensor offsetInBytes provided for src/dst tensor.
Definition: rppdefs.h:118
Base class for Mel scale conversions.
Definition: rppdefs.h:758
RPPT Tensor GenericFilter type struct.
Definition: rppdefs.h:657
Derived class for HTK Mel scale conversions.
Definition: rppdefs.h:769
RPP initialize handle.
Definition: rppdefs.h:1160
RPP 24 float vector.
Definition: rppdefs.h:250
RPP 6 float vector.
Definition: rppdefs.h:234
RPP 24 signed int vector.
Definition: rppdefs.h:242
RPP layout params.
Definition: rppdefs.h:225
RPP polar point.
Definition: rppdefs.h:216
RPPI Image 3D point type struct.
Definition: rppdefs.h:347
RPPI Image 2D cartesian point type struct.
Definition: rppdefs.h:338
RPPI Image 2D ROI (XYWH format) type struct.
Definition: rppdefs.h:368
RPPI Image 2D Rectangle (XYWH format) type struct.
Definition: rppdefs.h:357
RPPI Image size(Width/Height dimensions) type struct.
Definition: rppdefs.h:329
RPPT Tensor 2D bilinear neighborhood 32-bit signed int 8-length-vectors type struct.
Definition: rppdefs.h:635
RPPT Tensor 2D bilinear neighborhood 32-bit float 8-length-vectors type struct.
Definition: rppdefs.h:646
RPPT Tensor Channel Offsets struct.
Definition: rppdefs.h:474
RPPT Tensor descriptor type struct.
Definition: rppdefs.h:544
RPPT Tensor 32-bit float RGB type struct.
Definition: rppdefs.h:580
RPPT Tensor 2D 32-bit float vector type struct.
Definition: rppdefs.h:599
RPPT Tensor Generic descriptor type struct.
Definition: rppdefs.h:557
RPPT Tensor 2D image patch dimensions type struct.
Definition: rppdefs.h:608
RPPT Tensor 8-bit uchar RGB type struct.
Definition: rppdefs.h:570
RPPT Tensor RpptResamplingWindow type struct.
Definition: rppdefs.h:714
RPPT Tensor 3D ROI LTFRBB struct.
Definition: rppdefs.h:484
RPPT Tensor 2D ROI LTRB struct.
Definition: rppdefs.h:465
RPPT Tensor 2D ROI XYWH struct.
Definition: rppdefs.h:493
RPPT Tensor 3D ROI XYZWHD struct.
Definition: rppdefs.h:503
RPPT Tensor strides type struct.
Definition: rppdefs.h:533
RPPT Tensor 2D 32-bit uint vector type struct.
Definition: rppdefs.h:590
RPPT Tensor random number generator state (xorwow box muller state) type struct.
Definition: rppdefs.h:625
RPPT Tensor random number generator state (xorwow state) type struct.
Definition: rppdefs.h:617
Derived class for Slaney Mel scale conversions.
Definition: rppdefs.h:780
RPP HIP 2D ROI memory.
Definition: rppdefs.h:1097
RPP HIP 32-bit float memory.
Definition: rppdefs.h:1032
RPP HIP 32-bit signed int memory.
Definition: rppdefs.h:1056
RPP HIP 32-bit unsigned int memory.
Definition: rppdefs.h:1048
RPP HIP 64-bit double memory.
Definition: rppdefs.h:1040
RPP HIP 8-bit signed char memory.
Definition: rppdefs.h:1072
RPP HIP 8-bit unsigned char memory.
Definition: rppdefs.h:1064
RPP HIP RGB memory.
Definition: rppdefs.h:1080
RPP HIP 2D dimensions memory.
Definition: rppdefs.h:1088
RPP HOST memory type struct.
Definition: rppdefs.h:896
RPP OCL memory management type struct.
Definition: rppdefs.h:1108
RPP HIP-HOST memory management.
Definition: rppdefs.h:1139
RPP HOST 2D ROI memory.
Definition: rppdefs.h:886
RPP HOST 32-bit float memory.
Definition: rppdefs.h:821
RPP HOST 32-bit signed int memory.
Definition: rppdefs.h:845
RPP HOST 32-bit unsigned int memory.
Definition: rppdefs.h:837
RPP HOST 64-bit double memory.
Definition: rppdefs.h:829
RPP HOST 8-bit signed char memory.
Definition: rppdefs.h:861
RPP HOST 8-bit unsigned char memory.
Definition: rppdefs.h:853
RPP HOST RGB memory.
Definition: rppdefs.h:869
RPP HOST 2D dimensions memory.
Definition: rppdefs.h:877
RPPT Tensor 3D ROI union.
Definition: rppdefs.h:523
RPPT Tensor 2D ROI union.
Definition: rppdefs.h:513