src/spectral/dct_ipp.c: share buffers for Fwd and Inv
[aubio.git] / src / spectral / dct_ipp.c
1 /*
2   Copyright (C) 2017 Paul Brossier <piem@aubio.org>
3
4   This file is part of aubio.
5
6   aubio is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   aubio is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with aubio.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "aubio_priv.h"
22 #include "fvec.h"
23 #include "cvec.h"
24 #include "spectral/dct.h"
25
26 #if defined(HAVE_INTEL_IPP)
27
28 #if !HAVE_AUBIO_DOUBLE
29 #define aubio_IppFloat                 Ipp32f
30 #define aubio_ippsDCTFwdSpec           IppsDCTFwdSpec_32f
31 #define aubio_ippsDCTInvSpec           IppsDCTInvSpec_32f
32 #define aubio_ippsDCTFwdGetSize        ippsDCTFwdGetSize_32f
33 #define aubio_ippsDCTInvGetSize        ippsDCTInvGetSize_32f
34 #define aubio_ippsDCTFwdInit           ippsDCTFwdInit_32f
35 #define aubio_ippsDCTInvInit           ippsDCTInvInit_32f
36 #define aubio_ippsDCTFwd               ippsDCTFwd_32f
37 #define aubio_ippsDCTInv               ippsDCTInv_32f
38 #else /* HAVE_AUBIO_DOUBLE */
39 #define aubio_IppFloat                 Ipp64f
40 #define aubio_ippsDCTFwdSpec           IppsDCTFwdSpec_64f
41 #define aubio_ippsDCTInvSpec           IppsDCTInvSpec_64f
42 #define aubio_ippsDCTFwdGetSize        ippsDCTFwdGetSize_64f
43 #define aubio_ippsDCTInvGetSize        ippsDCTInvGetSize_64f
44 #define aubio_ippsDCTFwdInit           ippsDCTFwdInit_64f
45 #define aubio_ippsDCTInvInit           ippsDCTInvInit_64f
46 #define aubio_ippsDCTFwd               ippsDCTFwd_64f
47 #define aubio_ippsDCTInv               ippsDCTInv_64f
48 #endif
49
50 struct _aubio_dct_t {
51   uint_t size;
52   Ipp8u* pSpec;
53   Ipp8u* pSpecBuffer;
54   Ipp8u* pBuffer;
55   aubio_ippsDCTFwdSpec* pFwdDCTSpec;
56   aubio_ippsDCTInvSpec* pInvDCTSpec;
57 };
58
59 aubio_dct_t * new_aubio_dct (uint_t size) {
60   aubio_dct_t * s = AUBIO_NEW(aubio_dct_t);
61
62   const IppHintAlgorithm qualityHint = ippAlgHintAccurate; // ippAlgHintFast;
63   int pSpecSize, pSpecBufferSize, pBufferSize;
64   IppStatus status;
65
66   if ((sint_t)size <= 1) {
67     AUBIO_ERR("dct: can only create with sizes greater than 1, requested %d\n",
68         size);
69     goto beach;
70   }
71
72   status = aubio_ippsDCTFwdGetSize(size, qualityHint, &pSpecSize,
73       &pSpecBufferSize, &pBufferSize);
74   if (status != ippStsNoErr) {
75     AUBIO_ERR("dct: failed to initialize dct. IPP error: %d\n", status);
76     goto beach;
77   }
78
79   //AUBIO_INF("dct: fwd initialized with %d %d %d\n", pSpecSize, pSpecBufferSize,
80   //    pBufferSize);
81
82   s->pSpec = ippsMalloc_8u(pSpecSize);
83   if (pSpecSize > 0) {
84     s->pSpecBuffer = ippsMalloc_8u(pSpecBufferSize);
85   } else {
86     s->pSpecBuffer = NULL;
87   }
88   s->pBuffer = ippsMalloc_8u(pBufferSize);
89
90   status = aubio_ippsDCTInvGetSize(size, qualityHint, &pSpecSize,
91       &pSpecBufferSize, &pBufferSize);
92   if (status != ippStsNoErr) {
93     AUBIO_ERR("dct: failed to initialize dct. IPP error: %d\n", status);
94     goto beach;
95   }
96
97   //AUBIO_INF("dct: inv initialized with %d %d %d\n", pSpecSize, pSpecBufferSize,
98   //    pBufferSize);
99
100   status = aubio_ippsDCTFwdInit(&(s->pFwdDCTSpec), size, qualityHint, s->pSpec,
101       s->pSpecBuffer);
102   if (status != ippStsNoErr) {
103     AUBIO_ERR("dct: failed to initialize fwd dct. IPP error: %d\n", status);
104     goto beach;
105   }
106
107   status = aubio_ippsDCTInvInit(&(s->pInvDCTSpec), size, qualityHint, s->pSpec,
108       s->pSpecBuffer);
109   if (status != ippStsNoErr) {
110     AUBIO_ERR("dct: failed to initialize inv dct. IPP error: %d\n", status);
111     goto beach;
112   }
113
114   s->size = size;
115
116   return s;
117
118 beach:
119   del_aubio_dct(s);
120   return NULL;
121 }
122
123 void del_aubio_dct(aubio_dct_t *s) {
124   ippFree(s->pSpec);
125   ippFree(s->pSpecBuffer);
126   ippFree(s->pBuffer);
127   AUBIO_FREE(s);
128 }
129
130 void aubio_dct_do(aubio_dct_t *s, const fvec_t *input, fvec_t *output) {
131
132   aubio_ippsDCTFwd((const aubio_IppFloat*)input->data,
133       (aubio_IppFloat*)output->data, s->pFwdDCTSpec, s->pBuffer);
134
135 }
136
137 void aubio_dct_rdo(aubio_dct_t *s, const fvec_t *input, fvec_t *output) {
138
139   aubio_ippsDCTInv((const aubio_IppFloat*)input->data,
140       (aubio_IppFloat*)output->data, s->pInvDCTSpec, s->pBuffer);
141
142 }
143
144 #endif //defined(HAVE_INTEL_IPP)