hipMemset2D and hipMemset3D tests should be passing by default.

[ROCm/clr commit: 86d0c5fa5a]
This commit is contained in:
Vladislav Sytchenko
2019-10-16 11:02:38 -04:00
rodzic 2bc49fb55c
commit 577bac5de8
2 zmienionych plików z 2 dodań i 2 usunięć
@@ -113,7 +113,7 @@ int main(int argc, char *argv[])
hipCtx_t context;
hipCtxCreate(&context, 0, p_gpuDevice);
bool testResult = false;
bool testResult = true;
testResult &= testhipMemset2D(memsetval, p_gpuDevice);
testResult &= testhipMemset2DAsync(memsetval, p_gpuDevice);
hipCtxDestroy(context);
@@ -134,7 +134,7 @@ int main(int argc, char *argv[])
{
HipTest::parseStandardArguments(argc, argv, true);
HIPCHECK(hipSetDevice(p_gpuDevice));
bool testResult = false;
bool testResult = true;
testResult &= testhipMemset3D(memsetval, p_gpuDevice);
testResult &= testhipMemset3DAsync(memsetval, p_gpuDevice);
if (testResult) {