Skip to content

Commit

Permalink
fix runtime error in checkArr for 3D C++ GPU factorization
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyangzhuan committed Oct 30, 2023
1 parent d1c9a8e commit da55adf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions SRC/TRF3dV100/pdgstrf3d_summit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,16 +305,16 @@ int_t LUstruct_v100::pdgstrf3d()
if (superlu_acc_offload)
{
//#define NDEBUG
#ifndef NDEBUG
checkGPU();
ancestorReduction3d(ilvl, myNodeCount, treePerm);
#endif
// #ifndef NDEBUG
// checkGPU();
// ancestorReduction3d(ilvl, myNodeCount, treePerm);
// #endif

ancestorReduction3dGPU(ilvl, myNodeCount, treePerm);

#ifndef NDEBUG
checkGPU();
#endif
// #ifndef NDEBUG
// checkGPU();
// #endif
}

else
Expand Down

0 comments on commit da55adf

Please sign in to comment.