Fixed HIP error check in P2P sample test

[ROCm/clr commit: 7951cd03b2]
This commit is contained in:
Rahul Garg
2019-01-23 01:10:07 +05:30
parent e753a118ed
commit 84c31c3623
@@ -43,7 +43,7 @@ using namespace std;
#define HIPCHECK(error) \
{ \
hipError_t localError = error; \
if (localError != hipSuccess) { \
if ((localError != hipSuccess)||(localError != hipErrorPeerAccessAlreadyEnabled)) { \
printf("%serror: '%s'(%d) from %s at %s:%d%s\n", KRED, hipGetErrorString(localError), \
localError, #error, __FILE__, __LINE__, KNRM); \
failed("API returned error code."); \