We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd67a41 commit 6c032a2Copy full SHA for 6c032a2
1 file changed
benchmarks/GraphBLAS-sharp.Benchmarks/BenchmarksEWiseAdd.fs
@@ -36,7 +36,8 @@ type Config() =
36
37
base.AddFilter(
38
DisjunctionFilter(
39
- NameFilter(fun name -> name.Contains "COO") :> IFilter
+ NameFilter(fun name -> name.Contains "COO") :> IFilter,
40
+ NameFilter(fun name -> name.Contains "ToHost") :> IFilter
41
)
42
) |> ignore
43
@@ -260,7 +261,9 @@ type ToHostBenchmarks4Float32() =
260
261
262
[<Benchmark>]
263
member this.ToHostFloat32() =
264
+ let (ClContext context) = this.OclContext
265
resultCOO.ToHost()
266
+ |> context.RunSync
267
268
static member InputMatricesProvider =
269
let matricesFilenames =
0 commit comments