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 cead1b6 commit 574a433Copy full SHA for 574a433
benchmark/benchmarks.jl
@@ -1,5 +1,4 @@
1
using DynamicExpressions, BenchmarkTools, Random
2
-using DynamicExpressions.NodeUtilsModule: is_constant
3
4
# Trigger extensions:
5
using LoopVectorization
@@ -13,6 +12,12 @@ else
13
12
@eval using DynamicExpressions: GraphNode
14
end
15
+if PACKAGE_VERSION < v"0.17.0"
16
+ @eval using DynamicExpressions.EquationUtilsModule: is_constant
17
+else
18
+ @eval using DynamicExpressions.NodeUtilsModule: is_constant
19
+end
20
+
21
include("../test/tree_gen_utils.jl")
22
23
const SUITE = BenchmarkGroup()
0 commit comments