Test fixes:

- Remove reference to missing test.
- Add hipMemset back.
- Parse --gpu option to specify default starting GPU.
This commit is contained in:
Ben Sander
2016-02-08 22:55:23 -06:00
parent 9e2c3c8df3
commit 0c74d3fc44
4 changed files with 12 additions and 4 deletions
+3 -1
View File
@@ -31,9 +31,11 @@ int main(int argc, char *argv[])
HipTest::parseStandardArguments(argc, argv, true);
HIPCHECK(hipSetDevice(p_gpuDevice));
size_t Nbytes = N*sizeof(char);
printf ("N=%zu memsetval=%2x\n", N, memsetval);
printf ("N=%zu memsetval=%2x device=%d\n", N, memsetval, p_gpuDevice);
char *A_d;
char *A_h;