-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWavelet_Transform_Fast.hxx
40 lines (37 loc) · 1.07 KB
/
Wavelet_Transform_Fast.hxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef CVX_WAVELET_TRANSFORM_FAST_HXX
#define CVX_WAVELET_TRANSFORM_FAST_HXX
/*!
* Perform forward wavelet transform.
* Arguments:
* work - pointer to the block you want to transform. must be aligned on 32 byte boundary.
* tmp - temporary buffer used internally. must be at least 8*MAX(bx,by,bz) floats large and be aligned on 32 byte boundary.
* bx - x block size (number of floats)
* by - y block size (number of floats)
* bz - z block size (number of floats)
*
*/
void Wavelet_Transform_Fast_Forward(
__m256* work,
__m256* tmp,
int bx,
int by,
int bz
);
/*!
* Perform inverse wavelet transform.
* Arguments:
* work - pointer to the block you want to transform. must be aligned on 32 byte boundary.
* tmp - temporary buffer used internally. must be at least 8*MAX(bx,by,bz) floats large and be aligned on 32 byte boundary.
* bx - x block size (number of floats)
* by - y block size (number of floats)
* bz - z block size (number of floats)
*
*/
void Wavelet_Transform_Fast_Inverse(
__m256* work,
__m256* tmp,
int bx,
int by,
int bz
);
#endif