Changeset 3c754d5


Ignore:
Timestamp:
Dec 29, 2021, 5:52:00 PM (2 years ago)
Author:
Paul Brossier <piem@piem.org>
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)
Message:

[tensor] improve documentation, add todos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/tensor.h

    r17189b2 r3c754d5  
    2222#define AUBIO_TENSOR_H
    2323
    24 #ifdef __cplusplus
    25 extern "C" {
    26 #endif
    27 
    2824/** \file
    2925
     
    3228*/
    3329
     30#ifdef __cplusplus
     31extern "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 */
    3440#define AUBIO_TENSOR_MAXDIM 10
    3541
     
    3844  This object holds a tensor of real-valued data, ::smpl_t, with up to
    3945  AUBIO_TENSOR_MAXDIM dimentsions.
     46
     47  Todo:
     48  - add array of strides
     49  - add accessors macros
     50  - consider removing data
    4051
    4152*/
Note: See TracChangeset for help on using the changeset viewer.