Open
Description
The following code crashes nvcc5. Compile with
nvcc main.cu -Itrove-master -arch=compute_35
include <trove/ptr.h>
struct WU32
{
unsigned int data[32];
};
global void kernel(WU32* in, WU32* out)
{
int tid = blockIdx.x*blockDim.x + threadIdx.x;
trove::coalesced_ptr p(in);
WU32 r = p[tid];
trove::store_warp_contiguous(r, out+tid);
}
int main(int argc, char** argv)
{
return 0;
}
Metadata
Metadata
Assignees
Labels
No labels