File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -200,15 +200,14 @@ TensorView* scheduleReductionTV(
200200 if (rparams->static_bdimx ) {
201201 // [R, TIDx, Vect]
202202 reduction_tv->split (inner_reduce_axis, rparams->lparams .bdimx ());
203- // [R, US, TIDx, Vect]
204- outer_unswitch (inner_reduce_axis + 1 );
205- reduction_tv->axis (inner_reduce_axis + 2 )
203+ // [R, TIDx, Vect]
204+ reduction_tv->axis (inner_reduce_axis + 1 )
206205 ->parallelize (rparams->block_dim_inner_reduction );
207206 } else {
208207 reduction_tv->split (
209208 outer_i++, rparams->batches_per_block_inner_reduction , false );
210- outer_unswitch (outer_i++);
211209 }
210+ outer_unswitch (outer_i++);
212211
213212 if (!rparams->vectorize_inner_reduction &&
214213 rparams->unroll_factor_inner_reduction > 1 ) {
You can’t perform that action at this time.
0 commit comments