RVS: Finish initial RVS integration

NOTE: RVS Build is disabled by default due to CI build issues.

Change-Id: I1593f0fe22075a9f86f54afa3ac151e109f1f7bd
Signed-off-by: Galantsev, Dmitrii <dmitrii.galantsev@amd.com>


[ROCm/rdc commit: eaa1862a80]
This commit is contained in:
Galantsev, Dmitrii
2023-06-07 19:46:35 -05:00
rodzic ea624cbb7c
commit 38c60ff90b
37 zmienionych plików z 729 dodań i 56 usunięć
+13 -3
Wyświetl plik
@@ -218,12 +218,16 @@ service RdcAPI {
// rdc_status_t rdc_diagnostic_run(
// rdc_gpu_group_t group_id,
// rdc_diag_level_t level,
// const char* config,
// size_t config_size,
// rdc_diag_response_t* response);
rpc DiagnosticRun(DiagnosticRunRequest) returns (DiagnosticRunResponse) {}
// rdc_status_t rdc_test_case_run(
// rdc_gpu_group_t group_id,
// rdc_diag_test_cases_t test_case,
// const char* config,
// size_t config_size,
// rdc_diag_test_result_t* result);
rpc DiagnosticTestCaseRun(DiagnosticTestCaseRunRequest) returns (DiagnosticTestCaseRunResponse) {}
}
@@ -476,6 +480,8 @@ message RemoveAllJobResponse {
message DiagnosticRunRequest {
uint32 group_id = 1;
uint32 level = 2;
string config = 3;
uint32 config_size = 4;
}
message DiagnosticDetail {
@@ -498,7 +504,8 @@ message DiagnosticTestResult {
VRAM_CHECK = 3;
SYS_MEM_CHECK = 4;
NODE_TOPOLOGY = 5;
GPU_PARAMETERS = 6;
RVS_TEST = 6;
GPU_PARAMETERS = 7;
};
DiagnosticTestCase test_case = 3;
uint32 per_gpu_result_count = 4;
@@ -525,12 +532,15 @@ message DiagnosticTestCaseRunRequest {
VRAM_CHECK = 3;
SYS_MEM_CHECK = 4;
NODE_TOPOLOGY = 5;
GPU_PARAMETERS = 6;
RVS_TEST = 6;
GPU_PARAMETERS = 7;
};
TestCaseType test_case = 2;
string config = 3;
uint32 config_size = 4;
}
message DiagnosticTestCaseRunResponse {
uint32 status = 1;
DiagnosticTestResult result = 2;
}
}