Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ class block_exchange
{
static_assert(detail::is_power_of_two(VirtualWaveSize)
&& VirtualWaveSize <= arch::wavefront::max_size(),
"VirtualWaveSize must be a power of two and equal or less"
"VirtualWaveSize must be a power of two and equal or less "
"than the size of hardware warp.");
assert(VirtualWaveSize <= arch::wavefront::size());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ void block_load_direct_warp_striped(unsigned int flat_id,
{
static_assert(detail::is_power_of_two(VirtualWaveSize)
&& VirtualWaveSize <= arch::wavefront::max_size(),
"VirtualWaveSize must be a power of two and equal or less"
"VirtualWaveSize must be a power of two and equal or less "
"than the size of hardware warp.");
assert(VirtualWaveSize <= arch::wavefront::size());

Expand Down Expand Up @@ -469,7 +469,7 @@ void block_load_direct_warp_striped(unsigned int flat_id,
{
static_assert(detail::is_power_of_two(VirtualWaveSize)
&& VirtualWaveSize <= arch::wavefront::max_size(),
"VirtualWaveSize must be a power of two and equal or less"
"VirtualWaveSize must be a power of two and equal or less "
"than the size of hardware warp.");
assert(VirtualWaveSize <= arch::wavefront::size());

Expand Down Expand Up @@ -582,7 +582,7 @@ void block_load_direct_warp_striped(unsigned int flat_id,
{
static_assert(detail::is_power_of_two(VirtualWaveSize)
&& VirtualWaveSize <= arch::wavefront::max_size(),
"VirtualWaveSize must be a power of two and equal or less"
"VirtualWaveSize must be a power of two and equal or less "
"than the size of hardware warp.");
assert(VirtualWaveSize <= arch::wavefront::size());

Expand Down Expand Up @@ -695,7 +695,7 @@ auto block_load_direct_blocked_cast(unsigned int flat_id,
{
static_assert(detail::is_power_of_two(VirtualWaveSize)
&& VirtualWaveSize <= arch::wavefront::max_size(),
"VirtualWaveSize must be a power of two and equal or less"
"VirtualWaveSize must be a power of two and equal or less "
"than the size of hardware warp.");
assert(VirtualWaveSize <= arch::wavefront::size());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ void block_store_direct_warp_striped(unsigned int flat_id,

static_assert(detail::is_power_of_two(VirtualWaveSize)
&& VirtualWaveSize <= arch::wavefront::max_size(),
"VirtualWaveSize must be a power of two and equal or less"
"VirtualWaveSize must be a power of two and equal or less "
"than the size of hardware warp.");
unsigned int thread_id = detail::logical_lane_id<VirtualWaveSize>();
unsigned int warp_id = flat_id / VirtualWaveSize;
Expand Down Expand Up @@ -402,7 +402,7 @@ void block_store_direct_warp_striped(unsigned int flat_id,

static_assert(detail::is_power_of_two(VirtualWaveSize)
&& VirtualWaveSize <= arch::wavefront::max_size(),
"VirtualWaveSize must be a power of two and equal or less"
"VirtualWaveSize must be a power of two and equal or less "
"than the size of hardware warp.");
assert(VirtualWaveSize <= arch::wavefront::size());

Expand Down
Loading