Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -457,20 +457,20 @@ tape( 'the function supports specifying the strides of the first and second dime
M = 4;
N = 3;

/* eslint-disable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
/* eslint-disable array-element-newline, no-multi-spaces */

A = new Float64Array([
1, 999, 2, 999, 3, 999,
1, 999, 2, 999, 3, 999,
999, 999, 999, 999, 999, 999,
4, 999, 5, 999, 6, 999,
4, 999, 5, 999, 6, 999,
999, 999, 999, 999, 999, 999,
7, 999, 8, 999, 9, 999,
7, 999, 8, 999, 9, 999,
999, 999, 999, 999, 999, 999,
10, 999, 11, 999, 12, 999,
10, 999, 11, 999, 12, 999,
999, 999, 999, 999, 999, 999
]);

/* eslint-enable array-element-newline, no-multi-spaces, no-mixed-spaces-and-tabs */
/* eslint-enable array-element-newline, no-multi-spaces */

out = new Float64Array( M*N );

Expand Down