Skip to content

Commit

Permalink
1.5.0 doxgen
Browse files Browse the repository at this point in the history
added bool sorting test

Former-commit-id: 9607db2517fced1c3bda71dac951007be0a02300
  • Loading branch information
dumerrill committed Dec 14, 2015
1 parent 7d6c8fd commit f87bd49
Show file tree
Hide file tree
Showing 324 changed files with 3,345 additions and 3,878 deletions.
15 changes: 15 additions & 0 deletions CHANGE_LOG.TXT
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
//-----------------------------------------------------------------------------

1.5.0 12/14/2015
- New Features:
- Added new segmented device-wide operations for device-wide sort and
reduction primitives.
- Bug fixes:
- Fix for Git Issue 36 (Compilation error with GCC 4.8.4 nvcc 7.0.27) and
Forums thread (ThreadLoad generates compiler errors when loading from
pointer-to-const)
- Fix for Git Issue 29 (DeviceRadixSort::SortKeys<bool> yields compiler
errors)
- Fix for Git Issue 26 (CUDA error: misaligned address after
cub::DeviceRadixSort::SortKeys())

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

1.4.1 04/13/2015
- Bug fixes:
- Fixes for CUDA 7.0 issues with SHFL-based warp-scan and warp-reduction
Expand Down
3 changes: 2 additions & 1 deletion cub/block/block_load.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ __device__ __forceinline__ void InternalLoadDirectBlockedVectorized(
#pragma unroll
for (int ITEM = 0; ITEM < ITEMS_PER_THREAD; ITEM++)
{
items[ITEM] = reinterpret_cast<T*>(vec_items)[ITEM];
// items[ITEM] = reinterpret_cast<T*>(vec_items)[ITEM];
items[ITEM] = *(reinterpret_cast<T*>(vec_items) + ITEM);
}
}

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.1.zip');"
onload="downloadURL('https://github.com/NVlabs/cub/archive/1.5.0.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.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>
<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>
</center>

</body>
Expand Down
15 changes: 15 additions & 0 deletions docs/html/CHANGE_LOG.TXT
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
//-----------------------------------------------------------------------------

1.5.0 12/14/2015
- New Features:
- Added new segmented device-wide operations for device-wide sort and
reduction primitives.
- Bug fixes:
- Fix for Git Issue 36 (Compilation error with GCC 4.8.4 nvcc 7.0.27) and
Forums thread (ThreadLoad generates compiler errors when loading from
pointer-to-const)
- Fix for Git Issue 29 (DeviceRadixSort::SortKeys<bool> yields compiler
errors)
- Fix for Git Issue 26 (CUDA error: misaligned address after
cub::DeviceRadixSort::SortKeys())

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

1.4.1 04/13/2015
- Bug fixes:
- Fixes for CUDA 7.0 issues with SHFL-based warp-scan and warp-reduction
Expand Down
121 changes: 60 additions & 61 deletions docs/html/annotated.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/html/arg__index__input__iterator_8cuh.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcub_1_1_arg_index_input_iterator.html">cub::ArgIndexInputIterator&lt; InputIteratorT, OffsetT &gt;</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">A random-access input wrapper for pairing dereferenced values with their corresponding indices (forming <code><a class="el" href="structcub_1_1_key_value_pair.html" title="A key identifier paired with a corresponding value. ">KeyValuePair</a></code> tuples). <a href="classcub_1_1_arg_index_input_iterator.html#details">More...</a><br/></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">A random-access input wrapper for pairing dereferenced values with their corresponding indices (forming <code>KeyValuePair</code> tuples). <a href="classcub_1_1_arg_index_input_iterator.html#details">More...</a><br/></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Expand All @@ -134,7 +134,7 @@
<!-- HTML footer for doxygen 1.8.3.1-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Nov 10 2015 13:58:03 for CUB by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Dec 14 2015 13:11:15 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 f87bd49

Please sign in to comment.