@@ -1198,7 +1198,7 @@ tape( 'the function tests whether at `n` elements in a 4-dimensional ndarray pas
1198
1198
dt = 'float64' ;
1199
1199
ord = 'column-major' ;
1200
1200
sh = [ 2 , 1 , 2 , 1 ] ;
1201
- st = [ 2 , 4 , 4 , 4 ] ;
1201
+ st = [ 2 , 4 , 4 , 8 ] ;
1202
1202
o = strides2offset ( sh , st ) ;
1203
1203
1204
1204
x = ndarray ( dt , zeros ( 8 , dt ) , sh , st , o , ord ) ;
@@ -1234,7 +1234,7 @@ tape( 'the function tests whether at `n` elements in a 4-dimensional ndarray pas
1234
1234
dt = 'float64' ;
1235
1235
ord = 'column-major' ;
1236
1236
sh = [ 2 , 1 , 2 , 1 ] ;
1237
- st = [ - 2 , 4 , 4 , 4 ] ;
1237
+ st = [ - 2 , 4 , 4 , 8 ] ;
1238
1238
o = strides2offset ( sh , st ) ;
1239
1239
1240
1240
x = ndarray ( dt , zeros ( 8 , dt ) , sh , st , o , ord ) ;
@@ -1273,7 +1273,7 @@ tape( 'the function tests whether at `n` elements in a 4-dimensional ndarray pas
1273
1273
1274
1274
bsize = blockSize ( dt ) ;
1275
1275
sh = [ bsize * 2 , 1 , 2 , 1 ] ;
1276
- st = [ 2 , - bsize * 4 , bsize * 4 , bsize * 4 ] ;
1276
+ st = [ 2 , - bsize * 4 , bsize * 4 , bsize * 8 ] ;
1277
1277
o = strides2offset ( sh , st ) ;
1278
1278
1279
1279
x = ndarray ( dt , zeros ( numel ( sh ) * 2 , dt ) , sh , st , o , ord ) ;
@@ -1466,7 +1466,7 @@ tape( 'the function tests whether at `n` elements in a 4-dimensional ndarray pas
1466
1466
dt = 'complex128' ;
1467
1467
ord = 'column-major' ;
1468
1468
sh = [ 2 , 1 , 2 , 1 ] ;
1469
- st = [ - 1 , - 2 , - 2 , - 2 ] ;
1469
+ st = [ - 1 , - 2 , - 2 , - 4 ] ;
1470
1470
o = strides2offset ( sh , st ) ;
1471
1471
1472
1472
xbuf = zeros ( numel ( sh ) * 2 , 'float64' ) ;
@@ -1505,7 +1505,7 @@ tape( 'the function tests whether at `n` elements in a 4-dimensional ndarray pas
1505
1505
dt = 'complex128' ;
1506
1506
ord = 'column-major' ;
1507
1507
sh = [ 2 , 1 , 2 , 1 ] ;
1508
- st = [ 2 , 4 , 4 , 4 ] ;
1508
+ st = [ 2 , 4 , 4 , 8 ] ;
1509
1509
o = strides2offset ( sh , st ) ;
1510
1510
1511
1511
xbuf = zeros ( 8 * 2 , 'float64' ) ;
@@ -1544,7 +1544,7 @@ tape( 'the function tests whether at `n` elements in a 4-dimensional ndarray pas
1544
1544
dt = 'complex128' ;
1545
1545
ord = 'column-major' ;
1546
1546
sh = [ 2 , 1 , 2 , 1 ] ;
1547
- st = [ - 2 , 4 , 4 , 4 ] ;
1547
+ st = [ - 2 , 4 , 4 , 8 ] ;
1548
1548
o = strides2offset ( sh , st ) ;
1549
1549
1550
1550
xbuf = zeros ( 8 * 2 , 'float64' ) ;
@@ -1586,7 +1586,7 @@ tape( 'the function tests whether at `n` elements in a 4-dimensional ndarray pas
1586
1586
1587
1587
bsize = blockSize ( dt ) ;
1588
1588
sh = [ bsize * 2 , 1 , 2 , 1 ] ;
1589
- st = [ - 2 , bsize * 4 , bsize * 4 , bsize * 4 ] ;
1589
+ st = [ - 2 , bsize * 4 , bsize * 4 , bsize * 8 ] ;
1590
1590
o = strides2offset ( sh , st ) ;
1591
1591
1592
1592
xbuf = zeros ( numel ( sh ) * 4 , 'float64' ) ;
0 commit comments