We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf3aec commit 24b63fdCopy full SHA for 24b63fd
benchmark/benchmarks.jl
@@ -11,9 +11,14 @@ SUITE["comptime"]["basics"] = BenchmarkGroup()
11
SUITE["comptime"]["basics"]["2D sum"] = @benchmarkable Reactant.compile(sum, (a,)) setup = (
12
a = Reactant.ConcreteRArray(ones(2, 10))
13
)
14
-SUITE["comptime"]["basics"]["Basic cos"] = @benchmarkable Reactant.compile(cos, (a,)) setup = (
+
15
+bcast_cos(x) = cos.(x)
16
17
+SUITE["comptime"]["basics"]["cos.(x)"] = @benchmarkable begin
18
+ Reactant.compile(bcast_cos, (a,))
19
+end setup = begin
20
-)
21
+end
22
23
SUITE["comptime"]["lux neural networks"] = BenchmarkGroup()
24
0 commit comments