SWDEV-272088 - Fix runtimeApi/event/hipEventElapsedTime issue
runtimeApi/event/hipEventElapsedTime will report invalid resource error
on cuda due to wrong calling sequence. The fix will arrange the calling
in right sequence.
Change-Id: I3db28a962888566ea135e3cbdefa68d373e2d369
[ROCm/hip commit: ce4ba590fe]
此提交包含在:
@@ -61,14 +61,14 @@ void NegativeTests(){
|
||||
hipEvent_t start;
|
||||
HIPCHECK(hipEventCreate(&start));
|
||||
|
||||
HIPCHECK(hipEventRecord(start, nullptr));
|
||||
HIPCHECK(hipEventSynchronize(start));
|
||||
|
||||
// create event on dev=1
|
||||
HIPCHECK(hipSetDevice(1));
|
||||
hipEvent_t stop;
|
||||
HIPCHECK(hipEventCreate(&stop));
|
||||
|
||||
HIPCHECK(hipEventRecord(start, nullptr));
|
||||
HIPCHECK(hipEventSynchronize(start));
|
||||
|
||||
HIPCHECK(hipEventRecord(stop, nullptr));
|
||||
HIPCHECK(hipEventSynchronize(stop));
|
||||
|
||||
|
||||
新增問題並參考
封鎖使用者