source: src/fvec.c @ 827267b

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 827267b was 827267b, checked in by Paul Brossier <piem@piem.org>, 9 years ago

src/fvec.c: fix variable name

  • Property mode set to 100644
File size: 3.3 KB
RevLine 
[96fb8ad]1/*
[a6db140]2  Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
[96fb8ad]3
[a6db140]4  This file is part of aubio.
[96fb8ad]5
[a6db140]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.
[96fb8ad]10
[a6db140]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/>.
[96fb8ad]18
19*/
20
21#include "aubio_priv.h"
[6c7d49b]22#include "fvec.h"
[96fb8ad]23
[c7860af]24fvec_t * new_fvec( uint_t length) {
[c21acb9]25  fvec_t * s;
[767990e]26  if ((sint_t)length <= 0) {
27    return NULL;
28  }
[c21acb9]29  s = AUBIO_NEW(fvec_t);
[96fb8ad]30  s->length = length;
[c7860af]31  s->data = AUBIO_ARRAY(smpl_t, s->length);
[96fb8ad]32  return s;
33}
34
35void del_fvec(fvec_t *s) {
36  AUBIO_FREE(s->data);
37  AUBIO_FREE(s);
38}
39
[c34336e]40void fvec_set_sample(fvec_t *s, smpl_t data, uint_t position) {
[c7860af]41  s->data[position] = data;
[96fb8ad]42}
[c7860af]43
[c34336e]44smpl_t fvec_get_sample(fvec_t *s, uint_t position) {
[c7860af]45  return s->data[position];
[96fb8ad]46}
47
[c7860af]48smpl_t * fvec_get_data(fvec_t *s) {
[96fb8ad]49  return s->data;
50}
51
[3b2d32c]52/* helper functions */
53
[32f5a01]54void fvec_print(fvec_t *s) {
[c7860af]55  uint_t j;
56  for (j=0; j< s->length; j++) {
57    AUBIO_MSG(AUBIO_SMPL_FMT " ", s->data[j]);
[32f5a01]58  }
[c7860af]59  AUBIO_MSG("\n");
[32f5a01]60}
[3b2d32c]61
[c34336e]62void fvec_set_all (fvec_t *s, smpl_t val) {
[44e9eeb5]63#if !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS)
[c7860af]64  uint_t j;
65  for (j=0; j< s->length; j++) {
66    s->data[j] = val;
[3b2d32c]67  }
[44e9eeb5]68#elif defined(HAVE_ATLAS)
69  aubio_catlas_set(s->length, val, s->data, 1);
70#elif defined(HAVE_ACCELERATE)
[1dd95c7]71  aubio_vDSP_vfill(&val, s->data, 1, s->length);
[5b896e0]72#endif
[3b2d32c]73}
74
75void fvec_zeros(fvec_t *s) {
[1dd95c7]76#if !defined(HAVE_MEMCPY_HACKS) && !defined(HAVE_ACCELERATE)
77  fvec_set_all (s, 0.);
78#else
79#if defined(HAVE_MEMCPY_HACKS)
[923a7a8]80  memset(s->data, 0, s->length * sizeof(smpl_t));
81#else
[1dd95c7]82  aubio_vDSP_vclr(s->data, 1, s->length);
[923a7a8]83#endif
[5b896e0]84#endif
[3b2d32c]85}
86
87void fvec_ones(fvec_t *s) {
[c34336e]88  fvec_set_all (s, 1.);
[3b2d32c]89}
90
91void fvec_rev(fvec_t *s) {
[c7860af]92  uint_t j;
93  for (j=0; j< FLOOR(s->length/2); j++) {
94    ELEM_SWAP(s->data[j], s->data[s->length-1-j]);
[3b2d32c]95  }
96}
97
98void fvec_weight(fvec_t *s, fvec_t *weight) {
[5b896e0]99#ifndef HAVE_ACCELERATE
[c7860af]100  uint_t j;
[3b2d32c]101  uint_t length = MIN(s->length, weight->length);
[c7860af]102  for (j=0; j< length; j++) {
103    s->data[j] *= weight->data[j];
[3b2d32c]104  }
[5b896e0]105#else
[1dd95c7]106  aubio_vDSP_vmul(s->data, 1, weight->data, 1, s->data, 1, s->length);
[5b896e0]107#endif /* HAVE_ACCELERATE */
[3b2d32c]108}
109
[7166ef8]110void fvec_weighted_copy(fvec_t *in, fvec_t *weight, fvec_t *out) {
111#ifndef HAVE_ACCELERATE
112  uint_t j;
[827267b]113  uint_t length = MIN(out->length, weight->length);
[7166ef8]114  for (j=0; j< length; j++) {
115    out->data[j] = in->data[j] * weight->data[j];
116  }
117#else
118  aubio_vDSP_vmul(in->data, 1, weight->data, 1, out->data, 1, out->length);
119#endif /* HAVE_ACCELERATE */
120}
121
[3b2d32c]122void fvec_copy(fvec_t *s, fvec_t *t) {
123  if (s->length != t->length) {
[923a7a8]124    AUBIO_ERR("trying to copy %d elements to %d elements \n",
[396103a]125        s->length, t->length);
[923a7a8]126    return;
[3b2d32c]127  }
[44e9eeb5]128#if HAVE_NOOPT
[923a7a8]129  uint_t j;
130  for (j=0; j< t->length; j++) {
[c7860af]131    t->data[j] = s->data[j];
[3b2d32c]132  }
[44e9eeb5]133#elif defined(HAVE_MEMCPY_HACKS)
[1dd95c7]134  memcpy(t->data, s->data, t->length * sizeof(smpl_t));
[44e9eeb5]135#elif defined(HAVE_ATLAS)
136  aubio_cblas_copy(s->length, s->data, 1, t->data, 1);
137#elif defined(HAVE_ACCELERATE)
[1dd95c7]138  aubio_vDSP_mmov(s->data, t->data, 1, s->length, 1, 1);
139#endif
[3b2d32c]140}
Note: See TracBrowser for help on using the repository browser.