@@ -266,7 +266,7 @@ tape( 'the function throws an error if provided an invalid thirteenth argument',
266266 }
267267} ) ;
268268
269- tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` (row-major, lower, no-transpose)' , function test ( t ) {
269+ tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (row-major, lower, no-transpose)' , function test ( t ) {
270270 var expected ;
271271 var data ;
272272 var out ;
@@ -288,7 +288,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α
288288 t . end ( ) ;
289289} ) ;
290290
291- tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` (column-major, lower, no-transpose)' , function test ( t ) {
291+ tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (column-major, lower, no-transpose)' , function test ( t ) {
292292 var expected ;
293293 var data ;
294294 var out ;
@@ -310,7 +310,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α
310310 t . end ( ) ;
311311} ) ;
312312
313- tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` (row-major, upper, no-transpose)' , function test ( t ) {
313+ tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (row-major, upper, no-transpose)' , function test ( t ) {
314314 var expected ;
315315 var data ;
316316 var out ;
@@ -332,7 +332,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α
332332 t . end ( ) ;
333333} ) ;
334334
335- tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` (column-major, upper, no-transpose)' , function test ( t ) {
335+ tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A**T*B + α*B**T*A + β*C` (column-major, upper, no-transpose)' , function test ( t ) {
336336 var expected ;
337337 var data ;
338338 var out ;
@@ -354,7 +354,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α
354354 t . end ( ) ;
355355} ) ;
356356
357- tape ( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**T*A + β*C` (row-major, lower, transpose)' , function test ( t ) {
357+ tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A* *T*B + α*B**T*A + β*C` (row-major, lower, transpose)' , function test ( t ) {
358358 var expected ;
359359 var data ;
360360 var out ;
@@ -376,7 +376,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**
376376 t . end ( ) ;
377377} ) ;
378378
379- tape ( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**T*A + β*C` (column-major, lower, transpose)' , function test ( t ) {
379+ tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A* *T*B + α*B**T*A + β*C` (column-major, lower, transpose)' , function test ( t ) {
380380 var expected ;
381381 var data ;
382382 var out ;
@@ -398,7 +398,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**
398398 t . end ( ) ;
399399} ) ;
400400
401- tape ( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**T*A + β*C` (row-major, upper, transpose)' , function test ( t ) {
401+ tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A* *T*B + α*B**T*A + β*C` (row-major, upper, transpose)' , function test ( t ) {
402402 var expected ;
403403 var data ;
404404 var out ;
@@ -420,7 +420,7 @@ tape( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**
420420 t . end ( ) ;
421421} ) ;
422422
423- tape ( 'the function performs the matrix-matrix operation `C = α*A**T*B + α*B**T*A + β*C` (column-major, upper, transpose)' , function test ( t ) {
423+ tape ( 'the function performs the matrix-matrix operation `C = α*A*B**T + C = α*B*A**T + β*C` or `C = α*A* *T*B + α*B**T*A + β*C` (column-major, upper, transpose)' , function test ( t ) {
424424 var expected ;
425425 var data ;
426426 var out ;
0 commit comments