We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f54823 commit c2db0deCopy full SHA for c2db0de
1 file changed
src/GraphBLAS-sharp.Backend/Common/ClArray.fs
@@ -390,7 +390,7 @@ module ClArray =
390
fun (processor: MailboxProcessor<_>) (values: ClArray<'a>) (positions: ClArray<int>) (result: ClArray<'b>) ->
391
392
if values.Length <> positions.Length then
393
- failwith "lengths must be the same"
+ failwith "Lengths must be the same"
394
395
let ndRange =
396
Range1D.CreateValid(values.Length, workGroupSize)
@@ -462,7 +462,7 @@ module ClArray =
462
463
if firstValues.Length <> secondValues.Length
464
|| secondValues.Length <> positions.Length then
465
466
467
468
Range1D.CreateValid(firstValues.Length, workGroupSize)
0 commit comments