Changeset 17189b2 for tests/src/ai


Ignore:
Timestamp:
Dec 29, 2021, 5:52:00 PM (3 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe
Children:
3c754d5
Parents:
461a89f
git-author:
Paul Brossier <piem@piem.org> (01/28/19 22:56:27)
git-committer:
Paul Brossier <piem@piem.org> (12/29/21 17:52:00)
Message:

[tensor] rewrite and rename have_same_shape

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/src/ai/test-tensor.c

    r461a89f r17189b2  
    124124  aubio_tensor_t *b = new_aubio_tensor(3, dims);
    125125
    126   assert (!aubio_tensor_have_same_size(a, b));
     126  assert (!aubio_tensor_have_same_shape(a, b));
    127127
    128128  del_aubio_tensor(b);
    129129  dims[2] += 1;
    130130  b = new_aubio_tensor(4, dims);
    131   assert (!aubio_tensor_have_same_size(a, b));
     131  assert (!aubio_tensor_have_same_shape(a, b));
    132132  del_aubio_tensor(b);
    133133  dims[2] -= 1;
     
    136136  dims[1] += 1;
    137137  b = new_aubio_tensor(4, dims);
    138   assert (!aubio_tensor_have_same_size(a, b));
     138  assert (!aubio_tensor_have_same_shape(a, b));
    139139  del_aubio_tensor(b);
    140140
     
    142142  dims[1] -= 1;
    143143  b = new_aubio_tensor(4, dims);
    144   assert (aubio_tensor_have_same_size(a, b));
    145 
    146   assert (!aubio_tensor_have_same_size(NULL, b));
    147   assert (!aubio_tensor_have_same_size(a, NULL));
     144  assert (aubio_tensor_have_same_shape(a, b));
     145
     146  assert (!aubio_tensor_have_same_shape(NULL, b));
     147  assert (!aubio_tensor_have_same_shape(a, NULL));
    148148
    149149  del_aubio_tensor(a);
     
    321321  PRINT_MSG("testing 4d tensors\n");
    322322  assert (test_4d() == 0);
    323   PRINT_MSG("testing aubio_tensor_have_same_size\n");
     323  PRINT_MSG("testing aubio_tensor_have_same_shape\n");
    324324  assert (test_sizes() == 0);
    325325  PRINT_MSG("testing new_aubio_tensor with wrong arguments\n");
Note: See TracChangeset for help on using the changeset viewer.