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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user