@@ -238,7 +238,7 @@ type MxmBenchmarks4Float32MultiplicationOnly() =
238238 ( Matrix.mxm Operations.add Operations.mult),
239239 float32,
240240 ( fun _ -> Utils.nextSingle ( System.Random())),
241- ( fun context matrix -> ClMatrixCSR ( CSRMatrix< float32>. ToBackend context matrix))
241+ ( fun context matrix -> ClMatrix.CSR ( CSRMatrix< float32>. ToBackend context matrix))
242242 )
243243
244244 static member InputMatrixProvider =
@@ -250,7 +250,7 @@ type MxmBenchmarks4Float32WithTransposing() =
250250 ( Matrix.mxm Operations.add Operations.mult),
251251 float32,
252252 ( fun _ -> Utils.nextSingle ( System.Random())),
253- ( fun context matrix -> ClMatrixCSR ( CSRMatrix< float32>. ToBackend context matrix))
253+ ( fun context matrix -> ClMatrix.CSR ( CSRMatrix< float32>. ToBackend context matrix))
254254 )
255255
256256 static member InputMatrixProvider =
@@ -262,7 +262,7 @@ type MxmBenchmarks4BoolMultiplicationOnly() =
262262 ( Matrix.mxm Operations.logicalOr Operations.logicalAnd),
263263 ( fun _ -> true ),
264264 ( fun _ -> true ),
265- ( fun context matrix -> ClMatrixCSR ( CSRMatrix< bool>. ToBackend context matrix))
265+ ( fun context matrix -> ClMatrix.CSR ( CSRMatrix< bool>. ToBackend context matrix))
266266 )
267267
268268 static member InputMatrixProvider =
@@ -274,7 +274,7 @@ type MxmBenchmarks4BoolWithTransposing() =
274274 ( Matrix.mxm Operations.logicalOr Operations.logicalAnd),
275275 ( fun _ -> true ),
276276 ( fun _ -> true ),
277- ( fun context matrix -> ClMatrixCSR ( CSRMatrix< bool>. ToBackend context matrix))
277+ ( fun context matrix -> ClMatrix.CSR ( CSRMatrix< bool>. ToBackend context matrix))
278278 )
279279
280280 static member InputMatrixProvider =
@@ -286,7 +286,7 @@ type MxmBenchmarks4Float32MultiplicationOnlyWithZerosFilter() =
286286 ( Matrix.mxm Operations.addWithFilter Operations.mult),
287287 float32,
288288 ( fun _ -> Utils.nextSingle ( System.Random())),
289- ( fun context matrix -> ClMatrixCSR ( CSRMatrix< float32>. ToBackend context matrix))
289+ ( fun context matrix -> ClMatrix.CSR ( CSRMatrix< float32>. ToBackend context matrix))
290290 )
291291
292292 static member InputMatrixProvider =
@@ -298,7 +298,7 @@ type MxmBenchmarks4Float32WithTransposingWithZerosFilter() =
298298 ( Matrix.mxm Operations.addWithFilter Operations.mult),
299299 float32,
300300 ( fun _ -> Utils.nextSingle ( System.Random())),
301- ( fun context matrix -> ClMatrixCSR ( CSRMatrix< float32>. ToBackend context matrix))
301+ ( fun context matrix -> ClMatrix.CSR ( CSRMatrix< float32>. ToBackend context matrix))
302302 )
303303
304304 static member InputMatrixProvider =
0 commit comments