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 f529aee commit 89301ceCopy full SHA for 89301ce
lib/row.ml
@@ -683,9 +683,7 @@ let rec apply_dim_constraint ~(source : source) ~(stage : stage) (dim : dim)
683
if d_min <= 0 then ([], Unconstrained_dim)
684
else
685
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
+ apply_dim_constraint ~source ~stage output (At_least_dim quotient) env
689
| _ -> apply_dim_constraint ~source ~stage output (At_least_dim quotient) env)
690
| Var v, _ -> (
691
match Map.find env.dim_env v with
0 commit comments