Skip to content

Commit 9e6eee6

Browse files
committed
Small changes
1 parent a65c15d commit 9e6eee6

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Intel*
1+
NVIDIA*
22
All

benchmarks/GraphBLAS-sharp.Benchmarks/Configs/EWiseAddBenchmarks4Float32.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
arc130.mtx
2-
!linux_call_graph.mtx
3-
!webbase-1M.mtx
2+
linux_call_graph.mtx
3+
webbase-1M.mtx
44
!cit-Patents.mtx
55
!wikipedia-20061104.mtx
66
!wb-edu.mtx

src/GraphBLAS-sharp/Implementations.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ and COOMatrix<'a when 'a : struct and 'a : equality>(rowCount: int, columnCount:
306306

307307
while leftEdge <= rightEdge do
308308
let middleIdx = (leftEdge + rightEdge) / 2
309-
let firstIndex= localIndices.[middleIdx]
309+
let firstIndex = localIndices.[middleIdx]
310310
let secondIndex = localIndices.[firstLocalLength + localID - middleIdx]
311311
if firstIndex < secondIndex then leftEdge <- middleIdx + 1 else rightEdge <- middleIdx - 1
312312

0 commit comments

Comments
 (0)