hipMemset2D and hipMemset3D tests should be passing by default.

[ROCm/hip commit: c747b77ac1]
This commit is contained in:
Vladislav Sytchenko
2019-10-16 11:02:38 -04:00
parent 948dd510eb
commit 779d723ac2
2 changed files with 2 additions and 2 deletions
@@ -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) {