You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 21, 2024. It is now read-only.
- Added TexObjInputIterator, TexRefInputIterator, CacheModifiedInputIterator, and CacheModifiedOutputIterator types for loading & storing arbitrary types through the cache hierarchy. Compatible with Thrust API.
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
<hr>
2
2
<h3>About CUB</h3>
3
3
4
-
Current release: v1.1.1 (December 11, 2013)
4
+
Current release: v1.2.0 (February 25, 2014)
5
5
6
6
We recommend the [CUB Project Website](http://nvlabs.github.com/cub) and the [cub-users discussion forum](http://groups.google.com/group/cub-users) for further information and examples.
7
7
@@ -84,6 +84,7 @@ See [CUB Project Website](http://nvlabs.github.com/cub) for more information.
* - BLOCK_THREADS must be a multiple of WARP_THREADS
@@ -518,7 +518,7 @@ enum BlockLoadAlgorithm
518
518
519
519
520
520
/**
521
-
* \brief The BlockLoad class provides [<em>collective</em>](index.html#sec0) data movement methods for loading a linear segment of items from memory into a [<em>blocked arrangement</em>](index.html#sec4sec3) across a CUDA thread block. 
521
+
* \brief The BlockLoad class provides [<em>collective</em>](index.html#sec0) data movement methods for loading a linear segment of items from memory into a [<em>blocked arrangement</em>](index.html#sec5sec3) across a CUDA thread block. 
522
522
* \ingroup BlockModule
523
523
* \ingroup UtilIo
524
524
*
@@ -533,17 +533,17 @@ enum BlockLoadAlgorithm
533
533
* to implement different cub::BlockLoadAlgorithm strategies. This facilitates different
534
534
* performance policies for different architectures, data types, granularity sizes, etc.
535
535
* - BlockLoad can be optionally specialized by different data movement strategies:
536
-
* -# <b>cub::BLOCK_LOAD_DIRECT</b>. A [<em>blocked arrangement</em>](index.html#sec4sec3)
536
+
* -# <b>cub::BLOCK_LOAD_DIRECT</b>. A [<em>blocked arrangement</em>](index.html#sec5sec3)
537
537
* of data is read directly from memory. [More...](\ref cub::BlockLoadAlgorithm)
538
-
* -# <b>cub::BLOCK_LOAD_VECTORIZE</b>. A [<em>blocked arrangement</em>](index.html#sec4sec3)
538
+
* -# <b>cub::BLOCK_LOAD_VECTORIZE</b>. A [<em>blocked arrangement</em>](index.html#sec5sec3)
539
539
* of data is read directly from memory using CUDA's built-in vectorized loads as a
0 commit comments