Solve the CTAD regression & add up the Shell file for the docker management in testing (#3634)

* Finished the work

* Fix the pipeline
This commit is contained in:
Thomas Ning
2026-01-26 10:29:28 -08:00
committed by GitHub
parent 834642202c
commit 3900e1e7ce
12 changed files with 1150 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ struct BlockSoftmax2D
#endif
// compute row max
auto reduce_row_max = BlockReduce2D{x, -numeric<DataType>::infinity()};
auto reduce_row_max = BlockReduce2D<decltype(x)>{x, -numeric<DataType>::infinity()};
#if _BLOCK_SOFTMAX_USE_UNPACK2
auto row_max = reduce_row_max(f_max3, f_max, sequence<1, 2>{});
#else