SWDEV-276169 - Multiprocess IPC tests for Events and Memory.

Change-Id: I4a7af60e732de234a535574aa8597a7abd0b899b


[ROCm/clr commit: 57615530a7]
이 커밋은 다음에 포함됨:
kjayapra-amd
2021-03-08 20:44:30 -05:00
커밋한 사람 Karthik Jayaprakash
부모 3064521743
커밋 449cc5096e
7개의 변경된 파일388개의 추가작업 그리고 1개의 파일을 삭제
+5
파일 보기
@@ -40,6 +40,7 @@ unsigned threadsPerBlock = 256;
int p_gpuDevice = 0;
unsigned p_verbose = 0;
int p_tests = -1; /*which tests to run. Interpretation is left to each test. default:all*/
int debug_test = 0;
#ifdef _WIN64
const char* HIP_VISIBLE_DEVICES_STR = "HIP_VISIBLE_DEVICES=";
const char* CUDA_VISIBLE_DEVICES_STR = "CUDA_VISIBLE_DEVICES=";
@@ -186,6 +187,10 @@ int parseStandardArguments(int argc, char* argv[], bool failOnUndefinedArg) {
failed("Bad tests argument");
}
} else if (!strcmp(arg, "--debug") || (!strcmp(arg, "-d"))) {
if (++i >= argc || !HipTest::parseInt(argv[i], &debug_test)) {
failed("Bad tests argument");
}
} else {
if (failOnUndefinedArg) {
failed("Bad argument '%s'", arg);