You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Expected values when `x` has stride `2`, `y` has stride `-1`, and `z` has stride `1` (x0y1, x2y0):
240
240
expected_len_2_x2_ym1_z1=(
241
-
"${expected_values[1]}"
242
-
"${expected_values[12]}"
241
+
"${expected_values[1]}"
242
+
"${expected_values[12]}"
243
243
)
244
244
245
245
# Expected values when starting at 2nd element of `x` and the 3rd element of `y` and where `x` has stride `-2`, `y` has stride `1`, and `z` has stride `1` (x3y2, x1y3):
246
246
expected_len_2_xm2_y1_z1=(
247
-
"${expected_values[20]}"
248
-
"${expected_values[9]}"
247
+
"${expected_values[20]}"
248
+
"${expected_values[9]}"
249
249
)
250
250
251
251
# Expected values when `x` has stride `2`, `y` has stride `-1`, and `z` has stride `1` (x0y2, x2y1, x4y0):
252
252
expected_len_3_x2_ym1_z1=(
253
-
"${expected_values[2]}"
254
-
"${expected_values[13]}"
255
-
"${expected_values[24]}"
253
+
"${expected_values[2]}"
254
+
"${expected_values[13]}"
255
+
"${expected_values[24]}"
256
256
)
257
257
258
258
# Expected values when starting at 2nd element of `x` and the 4th element of `y` and where `x` has stride `-2`, `y` has stride `1`, and `z` has stride `1` (x5y3, x3y4, x1y5):
259
259
expected_len_3_xm2_y1_z1=(
260
-
"${expected_values[33]}"
261
-
"${expected_values[22]}"
262
-
"${expected_values[11]}"
260
+
"${expected_values[33]}"
261
+
"${expected_values[22]}"
262
+
"${expected_values[11]}"
263
263
)
264
264
265
265
@@ -296,35 +296,35 @@ files=(
296
296
# Create the destination directories...
297
297
298
298
fordirin"${dirs[@]}";do
299
-
mkdir -p "${dest_dir}/${dir}"
299
+
mkdir -p "${dest_dir}/${dir}"
300
300
done
301
301
302
302
# Copy the scaffold files to the destination directory...
0 commit comments