Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
More v1.3.1 doc updates
Browse files Browse the repository at this point in the history
Former-commit-id: edf0e6d
  • Loading branch information
dumerrill committed May 23, 2014
1 parent 4f902d0 commit 1283fc3
Show file tree
Hide file tree
Showing 278 changed files with 610 additions and 584 deletions.
7 changes: 3 additions & 4 deletions CHANGE_LOG.TXT
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
//-----------------------------------------------------------------------------

1.3.1 05/22/2014
- New features:
- Added new "combination" WarpScan methods for efficiently computing
both inclusive and exclusive prefix scans (and sums).
1.3.1 05/23/2014
- Bug fixes:
- Workaround for a benign WAW race warning reported by cuda-memcheck
in BlockScan specialized for BLOCK_SCAN_WARP_SCANS algorithm.
Expand Down Expand Up @@ -34,6 +31,8 @@
allocated dynamically by the host at the kernel call site.
- Most CUB programs having typical 1D usage should not require any
changes to accomodate these updates.
- Added new "combination" WarpScan methods for efficiently computing
both inclusive and exclusive prefix scans (and sums).
- Bug fixes:
- Fixed bug in cub::WarpScan (which affected cub::BlockScan and
cub::DeviceScan) where incorrect results (e.g., NAN) would often be
Expand Down
26 changes: 17 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<hr>
<h3>About CUB</h3>

Current release: v1.3.0 (May 12, 2014)
Current release: v1.3.1 (May 23, 2014)

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.

Expand Down Expand Up @@ -78,17 +78,25 @@ shared memory needed by the thread block. (Alternatively these storage types
could be aliased to global memory allocations).
<br><hr>
<h3>Releases</h3>
See [CUB Project Website](http://nvlabs.github.com/cub) for more information.
<h3>Stable Releases</h3>
CUB releases are labeled using version identifiers having three fields:
*epoch.feature.update*. The *epoch* field corresponds to support for
a major change in the CUDA programming model. The *feature* field
corresponds to a stable set of features, functionality, and interface. The
*update* field corresponds to a bug-fix or performance update for that
feature set. At the moment, we do not publicly provide non-stable releases
such as development snapshots, beta releases or rolling releases. (Feel free
to contact us if you would like such things.) See the
[CUB Project Website](http://nvlabs.github.com/cub) for more information.
| Date | Version |
| ---- | ------- |
| 05/12/2014 | [CUB v1.3.0 Primary Release](https://github.com/NVlabs/cub/archive/1.3.0.zip) |
| 04/01/2014 | [CUB v1.2.3 Primary Release](https://github.com/NVlabs/cub/archive/1.2.3.zip) |
| 12/10/2013 | [CUB v1.1.1 Primary Release](https://github.com/NVlabs/cub/archive/1.1.1.zip) |
| 08/08/2013 | [CUB v1.0.1 Primary Release](https://github.com/NVlabs/cub/archive/1.0.1.zip) |
| 03/07/2013 | [CUB v0.9.0 Preview Release](https://github.com/NVlabs/cub/archive/0.9.zip) |
| 05/23/2014 | [CUB v1.3.1](https://github.com/NVlabs/cub/archive/1.3.1.zip) |
| 04/01/2014 | [CUB v1.2.3](https://github.com/NVlabs/cub/archive/1.2.3.zip) |
| 12/10/2013 | [CUB v1.1.1](https://github.com/NVlabs/cub/archive/1.1.1.zip) |
| 08/08/2013 | [CUB v1.0.1](https://github.com/NVlabs/cub/archive/1.0.1.zip) |
| 03/07/2013 | [CUB v0.9.0](https://github.com/NVlabs/cub/archive/0.9.zip) |
<br><hr>
Expand Down
2 changes: 1 addition & 1 deletion cub/warp/warp_scan.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ public:


/**
* \brief Computes an exclusive prefix scan using the specified binary scan functor across the calling warp. The \p warp_prefix_op value from thread-thread-lane<sub>0</sub> is applied to all scan outputs. Also computes the warp-wide \p warp_aggregate of all inputs for thread-thread-lane<sub>0</sub>.
* \brief Computes an exclusive prefix scan using the specified binary scan functor across the calling warp. The \p warp_prefix_op value from warp-lane<sub>0</sub> is applied to all scan outputs. Also computes the warp-wide \p warp_aggregate of all inputs for warp-lane<sub>0</sub>.
*
* The \p warp_prefix_op functor must implement a member function <tt>T operator()(T warp_aggregate)}</tt>.
* The functor's input parameter \p warp_aggregate is the same value also returned by the scan operation.
Expand Down
8 changes: 6 additions & 2 deletions docs/extra_stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
* General
*****************************************************************************/

body, table, div, p, dl {
font: 12px/22px arial,sans-serif;
body, div, p, dl {
font: 12px/22px arial,sans-serif;
}

table {
font: 12px/18px arial,sans-serif;
}

body {
Expand Down
7 changes: 3 additions & 4 deletions docs/html/CHANGE_LOG.TXT
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
//-----------------------------------------------------------------------------

1.3.1 05/22/2014
- New features:
- Added new "combination" WarpScan methods for efficiently computing
both inclusive and exclusive prefix scans (and sums).
1.3.1 05/23/2014
- Bug fixes:
- Workaround for a benign WAW race warning reported by cuda-memcheck
in BlockScan specialized for BLOCK_SCAN_WARP_SCANS algorithm.
Expand Down Expand Up @@ -34,6 +31,8 @@
allocated dynamically by the host at the kernel call site.
- Most CUB programs having typical 1D usage should not require any
changes to accomodate these updates.
- Added new "combination" WarpScan methods for efficiently computing
both inclusive and exclusive prefix scans (and sums).
- Bug fixes:
- Fixed bug in cub::WarpScan (which affected cub::BlockScan and
cub::DeviceScan) where incorrect results (e.g., NAN) would often be
Expand Down
2 changes: 1 addition & 1 deletion docs/html/annotated.html
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:33 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/arg__index__input__iterator_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:30 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/arg__index__input__iterator_8cuh_source.html
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:29 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/block__discontinuity_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:30 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/block__discontinuity_8cuh_source.html
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:29 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/block__exchange_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:30 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/block__exchange_8cuh_source.html.REMOVED.git-id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4a654c1a08f97d2377e10c5fa8ac6f5b7a7c555f
e62d4ab5cda4914e025d7ab0add62975917558ac
2 changes: 1 addition & 1 deletion docs/html/block__histogram_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:30 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/block__histogram_8cuh_source.html
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:29 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/block__load_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:30 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
2 changes: 1 addition & 1 deletion docs/html/block__load_8cuh_source.html.REMOVED.git-id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fccac91152c0a9bd47d74f65f996881b13901088
b73558ec13ba615cb6d3ef6c075f95a7c951f397
2 changes: 1 addition & 1 deletion docs/html/block__radix__sort_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu May 22 2014 16:10:30 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Fri May 23 2014 07:20:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.4
<br>
Expand Down
Loading

0 comments on commit 1283fc3

Please sign in to comment.