mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-20 12:59:49 +00:00
Rangify STL algorithms (#438)
* Rangify STL algorithms
This commit adapts rangified std::copy(), std::fill() & std::transform()
* Re-write more std::copy() calls
* Re-write std::copy() calls in profiler
[ROCm/composable_kernel commit: dc663fae29]
This commit is contained in:
@@ -142,7 +142,7 @@ bool reduce_blockwise_test(bool do_verification,
|
||||
|
||||
std::array<int, ShapeType::NumReduceDim_> arrReduceDims;
|
||||
|
||||
std::copy(reduceDims.begin(), reduceDims.end(), arrReduceDims.begin());
|
||||
ck::ranges::copy(reduceDims, arrReduceDims.begin());
|
||||
|
||||
result = reduce_blockwise_impl<InOutDataType,
|
||||
AccDataType,
|
||||
|
||||
Reference in New Issue
Block a user