Skip to content

Commit c653fe3

Browse files
committed
refactor: paths
1 parent 34c838f commit c653fe3

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

benchmarks/GraphBLAS-sharp.Benchmarks/VectorEWiseAddGen.fs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -179,53 +179,53 @@ module VectorGenerator =
179179
type VectorEWiseBenchmarks4FloatSparseWithoutDataTransfer() =
180180

181181
inherit VectorEWiseBenchmarksWithoutDataTransfer<float>(
182-
(fun context wgSize -> Vector.elementwise context ArithmeticOperations.floatSum wgSize),
182+
(fun context -> Vector.elementwise context ArithmeticOperations.floatSum),
183183
VectorGenerator.floatPair Sparse)
184184

185185
type VectorEWiseBenchmarks4Int32SparseWithoutDataTransfer() =
186186

187187
inherit VectorEWiseBenchmarksWithoutDataTransfer<int32>(
188-
(fun context wgSize -> Vector.elementwise context ArithmeticOperations.intSum wgSize),
188+
(fun context -> Vector.elementwise context ArithmeticOperations.intSum),
189189
VectorGenerator.intPair Sparse)
190190

191191
/// General
192192
193193
type VectorEWiseGeneralBenchmarks4FloatSparseWithoutDataTransfer() =
194194

195195
inherit VectorEWiseBenchmarksWithoutDataTransfer<float>(
196-
(fun context wgSize -> Vector.elementwiseGeneral context ArithmeticOperations.floatSum wgSize),
196+
(fun context -> Vector.elementwiseGeneral context ArithmeticOperations.floatSum),
197197
VectorGenerator.floatPair Sparse)
198198

199199
type VectorEWiseGeneralBenchmarks4Int32SparseWithoutDataTransfer() =
200200

201201
inherit VectorEWiseBenchmarksWithoutDataTransfer<int32>(
202-
(fun context wgSize -> Vector.elementwiseGeneral context ArithmeticOperations.intSum wgSize),
202+
(fun context -> Vector.elementwiseGeneral context ArithmeticOperations.intSum),
203203
VectorGenerator.intPair Sparse)
204204

205205
/// With data transfer
206206
207207
type VectorEWiseBenchmarks4FloatSparseWithDataTransfer() =
208208

209209
inherit VectorEWiseBenchmarksWithDataTransfer<float>(
210-
(fun context wgSize -> Vector.elementwise context ArithmeticOperations.floatSum wgSize),
210+
(fun context -> Vector.elementwise context ArithmeticOperations.floatSum),
211211
VectorGenerator.floatPair Sparse)
212212

213213
type VectorEWiseBenchmarks4Int32SparseWithDataTransfer() =
214214

215215
inherit VectorEWiseBenchmarksWithDataTransfer<int32>(
216-
(fun context wgSize -> Vector.elementwise context ArithmeticOperations.intSum wgSize),
216+
(fun context -> Vector.elementwise context ArithmeticOperations.intSum),
217217
VectorGenerator.intPair Sparse)
218218

219219
/// General with data transfer
220220
221221
type VectorEWiseGeneralBenchmarks4FloatSparseWithDataTransfer() =
222222

223223
inherit VectorEWiseBenchmarksWithDataTransfer<float>(
224-
(fun context wgSize -> Vector.elementwiseGeneral context ArithmeticOperations.floatSum wgSize),
224+
(fun context -> Vector.elementwiseGeneral context ArithmeticOperations.floatSum),
225225
VectorGenerator.floatPair Sparse)
226226

227227
type VectorEWiseGeneralBenchmarks4Int32SparseWithDataTransfer() =
228228

229229
inherit VectorEWiseBenchmarksWithDataTransfer<int32>(
230-
(fun context wgSize -> Vector.elementwiseGeneral context ArithmeticOperations.intSum wgSize),
230+
(fun context -> Vector.elementwiseGeneral context ArithmeticOperations.intSum),
231231
VectorGenerator.intPair Sparse)

src/GraphBLAS-sharp/GraphBLAS-sharp.fsproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<Compile Include="Objects/Matrix.fs" />
2222
<Compile Include="Objects/Scalar.fs" />
2323
<Compile Include="Objects/Masks.fs" />
24-
<Compile Include="Objects\Vector.fs" />
25-
<Compile Include="Objects\VectorExtensions.fs" />
26-
<Compile Include="Objects\MatrixExtensions.fs" />
24+
<Compile Include="Objects/Vector.fs" />
25+
<Compile Include="Objects/VectorExtensions.fs" />
26+
<Compile Include="Objects/MatrixExtensions.fs" />
2727
<Compile Include="Operations/Scalar.fs" />
2828
<Compile Include="IO/MtxReader.fs" />
2929
<Compile Include="Predefined/Monoids/Any.fs" />
@@ -47,4 +47,4 @@
4747
</ItemGroup>
4848
<Import Project="..\..\.paket\Paket.Restore.targets" />
4949
</Project>
50-
50+

0 commit comments

Comments
 (0)