@@ -179,53 +179,53 @@ module VectorGenerator =
179179type 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
185185type 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
193193type 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
199199type 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
207207type 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
213213type 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
221221type 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
227227type 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)
0 commit comments