- Timestamp:
- Jan 28, 2019, 10:58:11 PM (6 years ago)
- Branches:
- feature/crepe_org
- Children:
- 3ac1426
- Parents:
- 4b2d174
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ai/tensor.h
r4b2d174 rddd124a 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.