-
-
Notifications
You must be signed in to change notification settings - Fork 809
/
Copy pathtest.scopy.native.js
201 lines (145 loc) · 4.67 KB
/
test.scopy.native.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
'use strict';
// MODULES //
var resolve = require( 'path' ).resolve;
var tape = require( 'tape' );
var floor = require( '@stdlib/math/base/special/floor' );
var Float32Array = require( '@stdlib/types/array/float32' );
var tryRequire = require( '@stdlib/utils/try-require' );
// VARIABLES //
var scopy = tryRequire( resolve( __dirname, './../lib/scopy.native.js' ) );
var opts = {
'skip': ( scopy instanceof Error )
};
// TESTS //
tape( 'main export is a function', opts, function test( t ) {
t.ok( true, __filename );
t.strictEqual( typeof scopy, 'function', 'main export is a function' );
t.end();
});
tape( 'the function has an arity of 5', opts, function test( t ) {
t.strictEqual( scopy.length, 5, 'arity of 5' );
t.end();
});
tape( 'the function copies elements from `x` into `y`', opts, function test( t ) {
var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
var y = new Float32Array( [ 6.0, 7.0, 8.0, 9.0, 10.0 ] );
scopy( x.length, x, 1, y, 1 );
t.deepEqual( y, x, 'deep equal' );
t.notEqual( y, x, 'different references' );
t.end();
});
tape( 'the function supports an `x` stride', opts, function test( t ) {
var expected;
var x;
var y;
var N;
x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
y = new Float32Array( [ 6.0, 7.0, 8.0, 9.0, 10.0 ] );
N = 3;
scopy( N, x, 2, y, 1 );
expected = new Float32Array( [ 1.0, 3.0, 5.0, 9.0, 10.0 ] );
t.deepEqual( y, expected, 'deep equal' );
t.end();
});
tape( 'the function supports a `y` stride', opts, function test( t ) {
var expected;
var x;
var y;
var N;
x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
y = new Float32Array( [ 6.0, 7.0, 8.0, 9.0, 10.0 ] );
N = 3;
scopy( N, x, 1, y, 2 );
expected = new Float32Array( [ 1, 7, 2, 9, 3 ] );
t.deepEqual( y, expected, 'deep equal' );
t.end();
});
tape( 'the function returns a reference to the destination array', opts, function test( t ) {
var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
var y = new Float32Array( [ 6.0, 7.0, 8.0, 9.0, 10.0 ] );
var out = scopy( x.length, x, 1, y, 1 );
t.strictEqual( out, y, 'same reference' );
t.end();
});
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns `y` unchanged', opts, function test( t ) {
var expected;
var x;
var y;
x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
y = new Float32Array( [ 6.0, 7.0, 8.0, 9.0, 10.0 ] );
expected = new Float32Array( [ 6.0, 7.0, 8.0, 9.0, 10.0 ] );
scopy( -1, x, 1, y, 1 );
t.deepEqual( y, expected, 'returns `y` unchanged' );
scopy( 0, x, 1, y, 1 );
t.deepEqual( y, expected, 'returns `y` unchanged' );
t.end();
});
tape( 'the function supports negative strides', opts, function test( t ) {
var expected;
var x;
var y;
var N;
x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
y = new Float32Array( [ 6.0, 7.0, 8.0, 9.0, 10.0 ] );
N = 3;
scopy( N, x, -2, y, -1 );
expected = new Float32Array( [ 1.0, 3.0, 5.0, 9.0, 10.0 ] );
t.deepEqual( y, expected, 'deep equal' );
t.end();
});
tape( 'the function supports complex access patterns', opts, function test( t ) {
var expected;
var x;
var y;
var N;
x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
y = new Float32Array( [ 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ] );
N = 3;
scopy( N, x, 2, y, -1 );
expected = new Float32Array( [ 5.0, 3.0, 1.0, 10.0, 11.0, 12.0 ] );
t.deepEqual( y, expected, 'deep equal' );
t.end();
});
tape( 'the function supports view offsets', opts, function test( t ) {
var expected;
var x0;
var y0;
var x1;
var y1;
var N;
// Initial arrays...
x0 = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
y0 = new Float32Array( [ 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ] );
// Create offset views...
x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
y1 = new Float32Array( y0.buffer, y0.BYTES_PER_ELEMENT*3 ); // begin at the 4th element
N = floor( x0.length / 2 );
scopy( N, x1, -2, y1, 1 );
expected = new Float32Array( [ 7.0, 8.0, 9.0, 6.0, 4.0, 2.0 ] );
t.deepEqual( y0, expected, 'deep equal' );
t.end();
});
tape( 'if both strides are equal to `1`, the function efficiently copies elements from `x` into `y`', opts, function test( t ) {
var x;
var y;
var i;
x = new Float32Array( 100 );
y = new Float32Array( x.length );
for ( i = 0; i < x.length; i++ ) {
x[ i ] = i;
y[ i ] = x.length - i;
}
scopy( x.length, x, 1, y, 1 );
t.deepEqual( y, x, 'deep equal' );
t.notEqual( y, x, 'different references' );
x = new Float32Array( 120 );
y = new Float32Array( x.length );
for ( i = 0; i < x.length; i++ ) {
x[ i ] = i*2;
y[ i ] = x.length - i;
}
scopy( x.length, x, 1, y, 1 );
t.deepEqual( y, x, 'deep equal' );
t.notEqual( y, x, 'different references' );
t.end();
});