- Timestamp:
- Dec 29, 2021, 5:52:00 PM (3 years ago)
- Branches:
- feature/crepe
- Children:
- 7897b51
- Parents:
- 17189b2
- git-author:
- Paul Brossier <piem@piem.org> (01/28/19 22:58:11)
- git-committer:
- Paul Brossier <piem@piem.org> (12/29/21 17:52:00)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ai/tensor.h
r17189b2 r3c754d5 22 22 #define AUBIO_TENSOR_H 23 23 24 #ifdef __cplusplus25 extern "C" {26 #endif27 28 24 /** \file 29 25 … … 32 28 */ 33 29 30 #ifdef __cplusplus 31 extern "C" { 32 #endif 33 34 /** Maximum number of dimensions 35 36 This is defined as a constant so that ::aubio_tensor_t allocated 37 on the stack can be manipulated. 38 39 */ 34 40 #define AUBIO_TENSOR_MAXDIM 10 35 41 … … 38 44 This object holds a tensor of real-valued data, ::smpl_t, with up to 39 45 AUBIO_TENSOR_MAXDIM dimentsions. 46 47 Todo: 48 - add array of strides 49 - add accessors macros 50 - consider removing data 40 51 41 52 */
Note: See TracChangeset
for help on using the changeset viewer.