Skip to content

Commit 8931456

Browse files
Fix specified stride in the matrix_assign test on buffer InB: 24 -> 48. (#1259)
The stride specified for the `InB` test was incorrect (probably a copy-paste error). This wasn't causing any issues since the stride was unused. However, we should prefer to use the specified stride since StructuredBuffers are untyped and don't have a format.
1 parent a4748cc commit 8931456

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/Feature/StructuredBuffer/matrix_assign.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Buffers:
3737

3838
- Name: InB
3939
Format: Float32
40-
Stride: 24
40+
Stride: 48
4141
Data: [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ]
4242

4343
- Name: OutB

0 commit comments

Comments
 (0)