You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
The text was updated successfully, but these errors were encountered:
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;
}
The text was updated successfully, but these errors were encountered: