Skip to content

Commit 89301ce

Browse files
committed
Missing from the previous commit
1 parent f529aee commit 89301ce

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/row.ml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -683,9 +683,7 @@ let rec apply_dim_constraint ~(source : source) ~(stage : stage) (dim : dim)
683683
if d_min <= 0 then ([], Unconstrained_dim)
684684
else
685685
let quotient = if d_min % stride = 0 then d_min / stride else (d_min / stride) + 1 in
686-
apply_dim_constraint ~source ~stage output
687-
(At_least_dim (quotient + (dilation * d_k)))
688-
env
686+
apply_dim_constraint ~source ~stage output (At_least_dim quotient) env
689687
| _ -> apply_dim_constraint ~source ~stage output (At_least_dim quotient) env)
690688
| Var v, _ -> (
691689
match Map.find env.dim_env v with

0 commit comments

Comments
 (0)