Changeset ddd124a


Ignore:
Timestamp:
Jan 28, 2019, 10:58:11 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe_org
Children:
3ac1426
Parents:
4b2d174
Message:

[tensor] improve documentation, add todos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/tensor.h

    r4b2d174 rddd124a  
    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.