- Timestamp:
- Jan 2, 2019, 2:10:48 AM (6 years ago)
- Branches:
- feature/cnn_org, feature/crepe_org
- Children:
- 124166d
- Parents:
- 9ca7923
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ai/tensor.c
r9ca7923 r849210c 62 62 c->shape[0] = o->length; 63 63 c->data = &o->data; 64 c->size = o->length; 64 65 return AUBIO_OK; 65 66 } … … 81 82 c->shape[0] = o->height; 82 83 c->shape[1] = o->length; 84 c->size = o->height * o->length; 83 85 c->data = o->data; 84 86 return AUBIO_OK;
Note: See TracChangeset
for help on using the changeset viewer.