@@ -3,8 +3,8 @@ namespace GraphBLAS.FSharp.Benchmarks.Matrix.Map2
33open System.IO
44open BenchmarkDotNet.Attributes
55open Brahma.FSharp
6+ open GraphBLAS.FSharp
67open GraphBLAS.FSharp .IO
7- open GraphBLAS.FSharp .Operations
88open GraphBLAS.FSharp .Objects
99open GraphBLAS.FSharp .Objects .MatrixExtensions
1010open GraphBLAS.FSharp .Objects .ClContextExtensions
@@ -137,7 +137,7 @@ module WithoutTransfer =
137137 type Float32 () =
138138
139139 inherit Benchmark< ClMatrix.COO< float32>, float32>(
140- ( Matrix.map2 ArithmeticOperations.float32SumOption),
140+ ( Operations. Matrix.map2 ArithmeticOperations.float32SumOption),
141141 float32,
142142 ( fun _ -> Utils.nextSingle ( System.Random())),
143143 Matrix.COO
@@ -149,7 +149,7 @@ module WithoutTransfer =
149149 type Bool () =
150150
151151 inherit Benchmark< ClMatrix.COO< bool>, bool>(
152- ( Matrix.map2 ArithmeticOperations.boolSumOption),
152+ ( Operations. Matrix.map2 ArithmeticOperations.boolSumOption),
153153 ( fun _ -> true ),
154154 ( fun _ -> true ),
155155 Matrix.COO
@@ -162,7 +162,7 @@ module WithoutTransfer =
162162 type Float32 () =
163163
164164 inherit Benchmark< ClMatrix.CSR< float32>, float32>(
165- ( Matrix.map2 ArithmeticOperations.float32SumOption),
165+ ( Operations. Matrix.map2 ArithmeticOperations.float32SumOption),
166166 float32,
167167 ( fun _ -> Utils.nextSingle ( System.Random())),
168168 ( fun matrix -> Matrix.CSR matrix.ToCSR)
@@ -174,7 +174,7 @@ module WithoutTransfer =
174174 type Bool () =
175175
176176 inherit Benchmark< ClMatrix.CSR< bool>, bool>(
177- ( Matrix.map2 ArithmeticOperations.boolSumOption),
177+ ( Operations. Matrix.map2 ArithmeticOperations.boolSumOption),
178178 ( fun _ -> true ),
179179 ( fun _ -> true ),
180180 ( fun matrix -> Matrix.CSR matrix.ToCSR)
@@ -188,7 +188,7 @@ module WithoutTransfer =
188188 type Bool () =
189189
190190 inherit Benchmark< ClMatrix.COO< bool>, bool>(
191- ( Matrix.map2AtLeastOne ArithmeticOperations.boolSumAtLeastOne),
191+ ( Operations. Matrix.map2AtLeastOne ArithmeticOperations.boolSumAtLeastOne),
192192 ( fun _ -> true ),
193193 ( fun _ -> true ),
194194 Matrix.COO
@@ -200,7 +200,7 @@ module WithoutTransfer =
200200 type Float32 () =
201201
202202 inherit Benchmark< ClMatrix.COO< float32>, float32>(
203- ( Matrix.map2AtLeastOne ArithmeticOperations.float32SumAtLeastOne),
203+ ( Operations. Matrix.map2AtLeastOne ArithmeticOperations.float32SumAtLeastOne),
204204 float32,
205205 ( fun _ -> Utils.nextSingle ( System.Random())),
206206 Matrix.COO
@@ -213,7 +213,7 @@ module WithoutTransfer =
213213 type Bool () =
214214
215215 inherit Benchmark< ClMatrix.CSR< bool>, bool>(
216- ( Matrix.map2AtLeastOne ArithmeticOperations.boolSumAtLeastOne),
216+ ( Operations. Matrix.map2AtLeastOne ArithmeticOperations.boolSumAtLeastOne),
217217 ( fun _ -> true ),
218218 ( fun _ -> true ),
219219 ( fun matrix -> Matrix.CSR matrix.ToCSR)
@@ -225,7 +225,7 @@ module WithoutTransfer =
225225 type Float32 () =
226226
227227 inherit Benchmark< ClMatrix.CSR< float32>, float32>(
228- ( Matrix.map2AtLeastOne ArithmeticOperations.float32SumAtLeastOne),
228+ ( Operations. Matrix.map2AtLeastOne ArithmeticOperations.float32SumAtLeastOne),
229229 float32,
230230 ( fun _ -> Utils.nextSingle ( System.Random())),
231231 ( fun matrix -> Matrix.CSR matrix.ToCSR)
@@ -272,7 +272,7 @@ module WithTransfer =
272272 type Float32 () =
273273
274274 inherit Benchmark< ClMatrix.COO< float32>, float32>(
275- ( Matrix.map2 ArithmeticOperations.float32SumOption),
275+ ( Operations. Matrix.map2 ArithmeticOperations.float32SumOption),
276276 float32,
277277 ( fun _ -> Utils.nextSingle ( System.Random())),
278278 Matrix.COO,
0 commit comments