File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ class FlashAttnFwdCombine {
308308 return {num_blocks_m, num_blocks_k, 1 };
309309 }
310310
311- CUTE_DEVICE BlockCoord get_block_coord_linear_m_batch (Params const & params) {
311+ CUTE_DEVICE BlockCoord get_block_coord_linearized_m_and_batch (Params const & params) {
312312 int num_heads = params.num_heads ;
313313 int curr_tile_id = blockIdx.x ;
314314
@@ -381,7 +381,7 @@ class FlashAttnFwdCombine {
381381 case SchedulingAlgo::STANDARD:
382382 return get_block_coord_standard (params);
383383 case SchedulingAlgo::LINEARIZE_M_AND_BATCH:
384- return get_block_coord_linear_m_batch (params);
384+ return get_block_coord_linearized_m_and_batch (params);
385385 }
386386 return {0 , 0 , 0 }; // Should never reach here
387387 }
You can’t perform that action at this time.
0 commit comments