Skip to content

Commit 50f28e7

Browse files
committed
refactor: paths
1 parent 929e9fe commit 50f28e7

3 files changed

Lines changed: 9 additions & 16 deletions

File tree

src/GraphBLAS-sharp.Backend/Common/Reduce.fs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,6 @@ module Reduce =
1515

1616
let localValues = localArray<'a> workGroupSize
1717

18-
// let i = (gid - lid) * 2 + lid
19-
20-
// if i + workGroupSize < length then
21-
// localValues.[lid] <- (%opAdd) inputArray.[i] inputArray.[i + workGroupSize]
22-
// elif i < length then
23-
// localValues.[lid] <- inputArray.[i]
24-
2518
if gid < length then
2619
localValues.[lid] <- inputArray.[gid]
2720

src/GraphBLAS-sharp.Backend/GraphBLAS-sharp.Backend.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<Compile Include="Matrix/CSRMatrix/CSRMatrix.fs" />
3434
<Compile Include="Matrix/CSRMatrix/SpMV.fs" />
3535
<Compile Include="Matrix/Matrix.fs" />
36-
<Compile Include="Vector\SparseVector\SparseElementwise.fs" />
36+
<Compile Include="Vector/SparseVector/SparseElementwise.fs" />
3737
<Compile Include="Vector/SparseVector/SparseVector.fs" />
3838
<Compile Include="Vector/DenseVector/DenseVector.fs" />
3939
<Compile Include="Vector/Vector.fs" />

tests/GraphBLAS-sharp.Tests/GraphBLAS-sharp.Tests.fsproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
<!--Compile Include="MatrixOperationsTests/MxvTests.fs" /-->
2828
<!--Compile Include="MatrixOperationsTests/VxmTests.fs" /-->
2929
<!--Compile Include="AlgorithmsTests/BfsTests.fs" /-->
30-
<Compile Include="Vector\ZeroCreate.fs" />
31-
<Compile Include="Vector\OfList.fs" />
32-
<Compile Include="Vector\Copy.fs" />
33-
<Compile Include="Vector\FillSubVector.fs" />
34-
<Compile Include="Vector\ElementWiseAtLeasOne.fs" />
35-
<Compile Include="Vector\Convert.fs" />
36-
<Compile Include="Vector\Reduce.fs" />
37-
<Compile Include="Vector\ElementWise.fs" />
30+
<Compile Include="Vector/ZeroCreate.fs" />
31+
<Compile Include="Vector/OfList.fs" />
32+
<Compile Include="Vector/Copy.fs" />
33+
<Compile Include="Vector/FillSubVector.fs" />
34+
<Compile Include="Vector/ElementWiseAtLeasOne.fs" />
35+
<Compile Include="Vector/Convert.fs" />
36+
<Compile Include="Vector/Reduce.fs" />
37+
<Compile Include="Vector/ElementWise.fs" />
3838
<Compile Include="Program.fs" />
3939
</ItemGroup>
4040
<Import Project="..\..\.paket\Paket.Restore.targets" />

0 commit comments

Comments
 (0)