Skip to content

Commit

Permalink
Merge pull request #3246 from eisenhauer/cuda
Browse files Browse the repository at this point in the history
Fix cuda build
  • Loading branch information
eisenhauer committed Jun 9, 2022
2 parents 02fb4a5 + e418101 commit 1524626
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/adios2/helper/adiosMemory.inl
Expand Up @@ -100,11 +100,11 @@ void CudaMemCopyFromBuffer(T *GPUbuffer, size_t position, const char *source,
}

static inline void NdCopyCUDA(const char *&inOvlpBase, char *&outOvlpBase,
Dims &inOvlpGapSize, Dims &outOvlpGapSize,
Dims &ovlpCount, size_t minContDim,
CoreDims &inOvlpGapSize, CoreDims &outOvlpGapSize,
CoreDims &ovlpCount, size_t minContDim,
size_t blockSize)
{
Dims pos(ovlpCount.size(), 0);
DimsArray pos(ovlpCount.size(), (size_t)0);
size_t curDim = 0;
while (true)
{
Expand Down

0 comments on commit 1524626

Please sign in to comment.