8000 nvcc dies with 128-bit structures · Issue #1 · bryancatanzaro/trove · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
nvcc dies with 128-bit structures #1
Open
@ufimtsev

Description

@ufimtsev

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

Labels

No labels
No labels

Projects

316D No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0