Skip to content

Commit

Permalink
1.6.4 doc update (part 2)
Browse files Browse the repository at this point in the history
Former-commit-id: 12404c306175e8b1a5dc445670b561a29c389f45
  • Loading branch information
dumerrill authored and dumerrill committed Dec 6, 2016
1 parent 4f59403 commit c31f337
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CHANGE_LOG.TXT
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
1.6.4 12/06/2016
- Updated sm_5x, sm_6x tuning policies for radix sorting (3.5B and 3.4B
32b keys/s on TitanX and GTX 1080, respectively)
- Remove out-dated VC project files
- Bug fixes:
- Restore fence work-around for scan (reduce-by-key, etc.) hangs
in CUDA 8.5
- Issue 65: DeviceSegmentedRadixSort should allow inputs to have
pointer-to-const type
- Mollify Clang device-side warnings
- Restore fence work-around for scan (reduce-by-key, etc.) hangs
in CUDA 8.5
- Remove out-dated VC project files

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

Expand Down
3 changes: 3 additions & 0 deletions cub/block/block_load.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,7 @@ private:
/// Shared memory storage layout type
struct _TempStorage : BlockExchange::TempStorage
{
/// Temporary storage for partially-full block guard
volatile int valid_items;
};

Expand Down Expand Up @@ -889,6 +890,7 @@ private:
/// Shared memory storage layout type
struct _TempStorage : BlockExchange::TempStorage
{
/// Temporary storage for partially-full block guard
volatile int valid_items;
};

Expand Down Expand Up @@ -968,6 +970,7 @@ private:
/// Shared memory storage layout type
struct _TempStorage : BlockExchange::TempStorage
{
/// Temporary storage for partially-full block guard
volatile int valid_items;
};

Expand Down
3 changes: 3 additions & 0 deletions cub/block/block_store.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,7 @@ private:
/// Shared memory storage layout type
struct _TempStorage : BlockExchange::TempStorage
{
/// Temporary storage for partially-full block guard
volatile int valid_items;
};

Expand Down Expand Up @@ -703,6 +704,7 @@ private:
/// Shared memory storage layout type
struct _TempStorage : BlockExchange::TempStorage
{
/// Temporary storage for partially-full block guard
volatile int valid_items;
};

Expand Down Expand Up @@ -768,6 +770,7 @@ private:
/// Shared memory storage layout type
struct _TempStorage : BlockExchange::TempStorage
{
/// Temporary storage for partially-full block guard
volatile int valid_items;
};

Expand Down
4 changes: 0 additions & 4 deletions cub/device/device_histogram.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -860,10 +860,6 @@ struct DeviceHistogram
//@} end member group
};

/**
* \example example_device_histogram.cu
*/

} // CUB namespace
CUB_NS_POSTFIX // Optional outer namespace(s)

Expand Down

0 comments on commit c31f337

Please sign in to comment.