Skip to content

v5.1.1

Compare
Choose a tag to compare
@hughperkins hughperkins released this 06 Jun 22:39
· 241 commits to master since this release

Changes:

  • added support for passing arrays of gpu pointers in by-value structs, ie something like:
struct MyStruct {
    float *buffers[8];
};

__global__ mykernel(struct MyStruct mystruct) {
   ...
}
  • fixed some compile bugs for Eigen tests on Ubuntu 16.04