@@ -3,7 +3,7 @@ module DynamicExpressionsLoopVectorizationExt
3
3
using LoopVectorization: @turbo
4
4
using DynamicExpressions: AbstractExpressionNode
5
5
using DynamicExpressions. UtilsModule: ResultOk, fill_similar
6
- using DynamicExpressions. EvaluateModule: @return_on_check , EvalOptions
6
+ using DynamicExpressions. EvaluateModule: @return_on_nonfinite_val , EvalOptions
7
7
import DynamicExpressions. EvaluateModule:
8
8
deg1_eval,
9
9
deg2_eval,
@@ -45,21 +45,21 @@ function deg1_l2_ll0_lr0_eval(
45
45
cX:: AbstractMatrix{T} ,
46
46
op:: F ,
47
47
op_l:: F2 ,
48
- :: EvalOptions{true} ,
48
+ eval_options :: EvalOptions{true} ,
49
49
) where {T<: Number ,F,F2}
50
50
if tree. l. l. constant && tree. l. r. constant
51
51
val_ll = tree. l. l. val
52
52
val_lr = tree. l. r. val
53
- @return_on_check val_ll cX
54
- @return_on_check val_lr cX
53
+ @return_on_nonfinite_val (eval_options, val_ll, cX)
54
+ @return_on_nonfinite_val (eval_options, val_lr, cX)
55
55
x_l = op_l (val_ll, val_lr):: T
56
- @return_on_check x_l cX
56
+ @return_on_nonfinite_val (eval_options, x_l, cX)
57
57
x = op (x_l):: T
58
- @return_on_check x cX
58
+ @return_on_nonfinite_val (eval_options, x, cX)
59
59
return ResultOk (fill_similar (x, cX, axes (cX, 2 )), true )
60
60
elseif tree. l. l. constant
61
61
val_ll = tree. l. l. val
62
- @return_on_check val_ll cX
62
+ @return_on_nonfinite_val (eval_options, val_ll, cX)
63
63
feature_lr = tree. l. r. feature
64
64
cumulator = similar (cX, axes (cX, 2 ))
65
65
@turbo for j in axes (cX, 2 )
@@ -71,7 +71,7 @@ function deg1_l2_ll0_lr0_eval(
71
71
elseif tree. l. r. constant
72
72
feature_ll = tree. l. l. feature
73
73
val_lr = tree. l. r. val
74
- @return_on_check val_lr cX
74
+ @return_on_nonfinite_val (eval_options, val_lr, cX)
75
75
cumulator = similar (cX, axes (cX, 2 ))
76
76
@turbo for j in axes (cX, 2 )
77
77
x_l = op_l (cX[feature_ll, j], val_lr)
@@ -97,15 +97,15 @@ function deg1_l1_ll0_eval(
97
97
cX:: AbstractMatrix{T} ,
98
98
op:: F ,
99
99
op_l:: F2 ,
100
- :: EvalOptions{true} ,
100
+ eval_options :: EvalOptions{true} ,
101
101
) where {T<: Number ,F,F2}
102
102
if tree. l. l. constant
103
103
val_ll = tree. l. l. val
104
- @return_on_check val_ll cX
104
+ @return_on_nonfinite_val (eval_options, val_ll, cX)
105
105
x_l = op_l (val_ll):: T
106
- @return_on_check x_l cX
106
+ @return_on_nonfinite_val (eval_options, x_l, cX)
107
107
x = op (x_l):: T
108
- @return_on_check x cX
108
+ @return_on_nonfinite_val (eval_options, x, cX)
109
109
return ResultOk (fill_similar (x, cX, axes (cX, 2 )), true )
110
110
else
111
111
feature_ll = tree. l. l. feature
@@ -120,20 +120,23 @@ function deg1_l1_ll0_eval(
120
120
end
121
121
122
122
function deg2_l0_r0_eval (
123
- tree:: AbstractExpressionNode{T} , cX:: AbstractMatrix{T} , op:: F , :: EvalOptions{true}
123
+ tree:: AbstractExpressionNode{T} ,
124
+ cX:: AbstractMatrix{T} ,
125
+ op:: F ,
126
+ eval_options:: EvalOptions{true} ,
124
127
) where {T<: Number ,F}
125
128
if tree. l. constant && tree. r. constant
126
129
val_l = tree. l. val
127
- @return_on_check val_l cX
130
+ @return_on_nonfinite_val (eval_options, val_l, cX)
128
131
val_r = tree. r. val
129
- @return_on_check val_r cX
132
+ @return_on_nonfinite_val (eval_options, val_r, cX)
130
133
x = op (val_l, val_r):: T
131
- @return_on_check x cX
134
+ @return_on_nonfinite_val (eval_options, x, cX)
132
135
return ResultOk (fill_similar (x, cX, axes (cX, 2 )), true )
133
136
elseif tree. l. constant
134
137
cumulator = similar (cX, axes (cX, 2 ))
135
138
val_l = tree. l. val
136
- @return_on_check val_l cX
139
+ @return_on_nonfinite_val (eval_options, val_l, cX)
137
140
feature_r = tree. r. feature
138
141
@turbo for j in axes (cX, 2 )
139
142
x = op (val_l, cX[feature_r, j])
@@ -144,7 +147,7 @@ function deg2_l0_r0_eval(
144
147
cumulator = similar (cX, axes (cX, 2 ))
145
148
feature_l = tree. l. feature
146
149
val_r = tree. r. val
147
- @return_on_check val_r cX
150
+ @return_on_nonfinite_val (eval_options, val_r, cX)
148
151
@turbo for j in axes (cX, 2 )
149
152
x = op (cX[feature_l, j], val_r)
150
153
cumulator[j] = x
@@ -168,11 +171,11 @@ function deg2_l0_eval(
168
171
cumulator:: AbstractVector{T} ,
169
172
cX:: AbstractArray{T} ,
170
173
op:: F ,
171
- :: EvalOptions{true} ,
174
+ eval_options :: EvalOptions{true} ,
172
175
) where {T<: Number ,F}
173
176
if tree. l. constant
174
177
val = tree. l. val
175
- @return_on_check val cX
178
+ @return_on_nonfinite_val (eval_options, val, cX)
176
179
@turbo for j in eachindex (cumulator)
177
180
x = op (val, cumulator[j])
178
181
cumulator[j] = x
@@ -193,11 +196,11 @@ function deg2_r0_eval(
193
196
cumulator:: AbstractVector{T} ,
194
197
cX:: AbstractArray{T} ,
195
198
op:: F ,
196
- :: EvalOptions{true} ,
199
+ eval_options :: EvalOptions{true} ,
197
200
) where {T<: Number ,F}
198
201
if tree. r. constant
199
202
val = tree. r. val
200
- @return_on_check val cX
203
+ @return_on_nonfinite_val (eval_options, val, cX)
201
204
@turbo for j in eachindex (cumulator)
202
205
x = op (cumulator[j], val)
203
206
cumulator[j] = x
0 commit comments