From 335055fc47d3d37974f19d14743b780b8879a96c Mon Sep 17 00:00:00 2001 From: Allison Vacanti Date: Mon, 7 Feb 2022 15:36:23 -0500 Subject: [PATCH] Update incorrect comments in test_block_radix_sort. Fixes #429. --- test/test_block_radix_sort.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_block_radix_sort.cu b/test/test_block_radix_sort.cu index 91d1405a90..440d1419d4 100644 --- a/test/test_block_radix_sort.cu +++ b/test/test_block_radix_sort.cu @@ -488,10 +488,10 @@ void Test() Int2Type<(sizeof(typename BlockRadixSortT::TempStorage) <= 48 * 1024)> fits_smem_capacity; - // Sort-ascending, to-striped + // Sort-descending, to-striped TestValid(fits_smem_capacity); - // Sort-descending, to-blocked + // Sort-ascending, to-blocked TestValid(fits_smem_capacity); // Not necessary