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

Commit

Permalink
1.5.1 doc changes
Browse files Browse the repository at this point in the history
Former-commit-id: 821bba38b25da7bccbe62a9fef4f0d37542df749
  • Loading branch information
dumerrill committed Dec 28, 2015
1 parent 64546dc commit 5419670
Show file tree
Hide file tree
Showing 327 changed files with 513 additions and 4,279 deletions.
6 changes: 6 additions & 0 deletions CHANGE_LOG.TXT
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.5.1 12/28/2015
- Bug fixes:
- Fix for incorrect DeviceRadixSort output for some small problems on
Maxwell SM52 architectures
- Fix for macro redefinition warnings when compiling with Thrust sort

//-----------------------------------------------------------------------------

1.5.0 12/14/2015
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<hr>
<h3>About CUB</h3>

Current release: v1.5.0 (12/13/2015)
Current release: v1.5.1 (12/28/2015)

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
4 changes: 2 additions & 2 deletions cub/device/dispatch/dispatch_reduce.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ template <
typename OffsetT, ///< Signed integer type for global offsets
typename ReductionOpT, ///< Binary reduction functor type having member <tt>T operator()(const T &a, const T &b)</tt>
typename T> ///< Data element type that is convertible to the \p value type of \p InputIteratorT
__launch_bounds__ (int(ChainedPolicyT::ActivePolicy::ReducePolicy::BLOCK_THREADS), 1)
__launch_bounds__ (int(ChainedPolicyT::ActivePolicy::SingleTilePolicy::BLOCK_THREADS), 1)
__global__ void DeviceReduceSingleTileKernel(
InputIteratorT d_in, ///< [in] Pointer to the input sequence of data items
OutputIteratorT d_out, ///< [out] Pointer to the output aggregate
Expand All @@ -122,7 +122,7 @@ __global__ void DeviceReduceSingleTileKernel(
{
// Thread block type for reducing input tiles
typedef AgentReduce<
typename ChainedPolicyT::ActivePolicy::ReducePolicy,
typename ChainedPolicyT::ActivePolicy::SingleTilePolicy,
InputIteratorT,
OffsetT,
ReductionOpT>
Expand Down
6 changes: 3 additions & 3 deletions docs/download_cub.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
</head>

<body
onload="downloadURL('https://github.com/NVlabs/cub/archive/1.5.0.zip');"
onload="downloadURL('https://github.com/NVlabs/cub/archive/1.5.1.zip');"
style="color: rgb(102, 102, 102); font-family: Helvetica, arial, freesans, clean, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 300; height: 18px;">

<center>
If your download doesn't start in 3s:
<br><br>
<a href="https://github.com/NVlabs/cub/archive/1.5.0.zip"><img src="download-icon.png" style="position:relative; bottom:-10px; border:0px;"/></a>
<a href="https://github.com/NVlabs/cub/archive/1.5.0.zip"><em>Download CUB!</em></a>
<a href="https://github.com/NVlabs/cub/archive/1.5.1.zip"><img src="download-icon.png" style="position:relative; bottom:-10px; border:0px;"/></a>
<a href="https://github.com/NVlabs/cub/archive/1.5.1.zip"><em>Download CUB!</em></a>
</center>

</body>
Expand Down
14 changes: 14 additions & 0 deletions docs/html/CHANGE_LOG.TXT
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.5.1 12/28/2015
- Bug fixes:
- Fix for incorrect DeviceRadixSort output for some small problems on
Maxwell SM52 architectures
- Fix for macro redefinition warnings when compiling with Thrust sort

//-----------------------------------------------------------------------------

1.5.0 12/14/2015
Expand All @@ -12,6 +18,14 @@
errors)
- Fix for Git Issue 26 (CUDA error: misaligned address after
cub::DeviceRadixSort::SortKeys())
- Fix for incorrect/crash on 0-length problems, e.g., Git Issue 25 (Floating
point exception (core dumped) during cub::DeviceRadixSort::SortKeys)
- Fix for CUDA 7.5 issues on SM 5.2 with SHFL-based warp-scan and warp-reduction
on non-primitive data types (e.g., user-defined structs)
- Fix for small radix sorting problems where 0 temporary bytes were
required and users code was invoking malloc(0) on some systems where
that returns NULL. (Impl assumed was asking for size again and was not
running the sort.)

//-----------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/html/annotated.html
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:19 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:58:02 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 Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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 @@ -295,7 +295,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:55 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 Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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 @@ -679,7 +679,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:13 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:56 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 Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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 @@
c806ddfb4031fade9e67fee00d92ec496a8f9b90
7f7548755719c5abe7cfd28a99ecac334112ae97
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 Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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 Mon Dec 14 2015 13:11:14 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:56 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 @@ -211,7 +211,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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 @@
4f8a06e07d757fc2158c92b1d7f4a7bb7aa92332
db34fee6e9397addd2feeafe9f4db2ca01db9472
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 Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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__radix__sort_8cuh_source.html
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:14 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:56 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__reduce_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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__reduce_8cuh_source.html
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:14 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:56 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__scan_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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__scan_8cuh_source.html.REMOVED.git-id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
753cec633a135d727295bfdeeac9c4426a237ab5
63e991beda458e98f9ac4b8c5fa30bc8ca6ea7b6
2 changes: 1 addition & 1 deletion docs/html/block__store_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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__store_8cuh_source.html
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:14 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:56 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/cache__modified__input__iterator_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:14 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:56 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/cache__modified__output__iterator_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:15 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:57 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
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:14 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:56 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
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:58 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/classcub_1_1_arg_index_input_iterator.html
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ <h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:58 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/classcub_1_1_block_discontinuity-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:58 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/classcub_1_1_block_discontinuity.html
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,7 @@ <h2 class="groupheader">Member Function Documentation</h2>
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:58 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/classcub_1_1_block_exchange-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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/classcub_1_1_block_exchange.html
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ <h2 class="groupheader">Member Function Documentation</h2>
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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/classcub_1_1_block_histogram-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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/classcub_1_1_block_histogram.html
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ <h2 class="groupheader">Member Function Documentation</h2>
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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/classcub_1_1_block_load-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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/classcub_1_1_block_load.html
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ <h2 class="groupheader">Member Function Documentation</h2>
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:16 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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/classcub_1_1_block_radix_sort-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:17 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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/classcub_1_1_block_radix_sort.html
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ <h2 class="groupheader">Member Function Documentation</h2>
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:17 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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/classcub_1_1_block_reduce-members.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Dec 14 2015 13:11:17 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 28 2015 12:57:59 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 5419670

Please sign in to comment.