- Timestamp:
- Dec 29, 2021, 5:51:45 PM (3 years ago)
- Branches:
- feature/cnn, feature/crepe
- Children:
- 7c6c8625
- Parents:
- 83ec87f
- git-author:
- Paul Brossier <piem@piem.org> (01/02/19 02:10:48)
- git-committer:
- Paul Brossier <piem@piem.org> (12/29/21 17:51:45)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ai/tensor.c
r83ec87f ra5199ad 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.