Mercurial > hg > segmenter-vamp-plugin
view segmentino/build/linux/amd64/atlas/atlas_cmvN.h @ 48:69251e11a913
Rename SongParts/songpartitioner to Segmentino throughout
author | Chris Cannam |
---|---|
date | Thu, 13 Jun 2013 09:43:01 +0100 |
parents | songparts/build/linux/amd64/atlas/atlas_cmvN.h@f44aa6d29642 |
children |
line wrap: on
line source
#ifndef ATLAS_MVN_H #define ATLAS_MVN_H #include "atlas_misc.h" #define ATL_mvNMU 32 #define ATL_mvNNU 1 #ifndef ATL_L1mvelts #define ATL_L1mvelts ((3*ATL_L1elts)>>2) #endif #define ATL_AXPYMV #define ATL_GetPartMVN(A_, lda_, mb_, nb_) \ { \ *(mb_) = (ATL_L1mvelts - (ATL_mvNNU<<1)) / ((ATL_mvNNU<<1)+1); \ if (*(mb_) > ATL_mvNMU) *(mb_) = ATL_mvNMU*( *(mb_)/ATL_mvNMU ); \ else *(mb_) = ATL_mvNMU; \ *(nb_) = ATL_mvNNU; \ } #endif