Skip to content

Commit

Permalink
Enabled reduction unit tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrmudgeon committed Feb 26, 2021
1 parent 746b7b3 commit 200a5a5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
## [2.5.0](https://github.com/NVIDIA/cutlass/releases/tag/v2.5.0) (2021-02-26)
* Tensor reductions
* _m_-to-_n_ reductions of tensors with affine layout
* [Specializations](/test/unit/reduction/tensor_reduce_contiguous.cu) for reductions including contiguous dimension
* [Specializations](/test/unit/reduction/tensor_reduce_strided.cu) for reductions excluding contiguous dimension
* [Specializations](/test/unit/reduction/device/tensor_reduce_contiguous.cu) for reductions including contiguous dimension
* [Specializations](/test/unit/reduction/device/tensor_reduce_strided.cu) for reductions excluding contiguous dimension
* Custom reduction functors such as `cutlass::logical_and`
* Large tensor support, up to 2^63 elements (however, each dimension is limited to an extent of 2^31)
* Optimizations for 3-D convolution
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ supported at each level of the execution model hierarchy.

# What's New in CUTLASS 2.5
CUTLASS 2.5 is a minor update to CUTLASS adding:
- [Tensor reductions](/test/unit/reduction/tensor_reduce_contiguous.cu)
- [Tensor reductions](/test/unit/reduction/device/tensor_reduce_contiguous.cu)
- [Optimizations for 3-D convolution](include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h)
- [Fused Convolution+Convolution example](/examples/13_two_tensor_op_fusion/README.md)
- See the [CHANGELOG](CHANGELOG.md) for more details
Expand Down
4 changes: 4 additions & 0 deletions test/unit/reduction/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,20 @@

add_subdirectory(thread)
add_subdirectory(kernel)
add_subdirectory(device)

add_custom_target(
cutlass_test_unit_reduction
DEPENDS
cutlass_test_unit_reduction_thread
cutlass_test_unit_reduction_kernel
cutlass_test_unit_reduction_device
)

add_custom_target(
test_unit_reduction
DEPENDS
test_unit_reduction_thread
test_unit_reduction_kernel
test_unit_reduction_device
)

0 comments on commit 200a5a5

Please sign in to comment.