SWDEV-496634: Revert deprecation of hipHostMalloc and hipHostFree functions (#1186)
Этот коммит содержится в:
@@ -70,8 +70,8 @@
|
||||
}
|
||||
|
||||
#if HIP_VERSION >= 60300000
|
||||
# define HIP_HOST_ALLOC_FUNC hipExtHostAlloc
|
||||
# define HIP_HOST_FREE_FUNC hipFreeHost
|
||||
# define HIP_HOST_ALLOC_FUNC hipHostMalloc
|
||||
# define HIP_HOST_FREE_FUNC hipHostFree
|
||||
#else
|
||||
# define HIP_HOST_ALLOC_FUNC hipHostMalloc
|
||||
# define HIP_HOST_FREE_FUNC hipHostFree
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
}
|
||||
|
||||
#if HIP_VERSION >= 60300000
|
||||
# define HIP_HOST_ALLOC_FUNC hipExtHostAlloc
|
||||
# define HIP_HOST_FREE_FUNC hipFreeHost
|
||||
# define HIP_HOST_ALLOC_FUNC hipHostMalloc
|
||||
# define HIP_HOST_FREE_FUNC hipHostFree
|
||||
#else
|
||||
# define HIP_HOST_ALLOC_FUNC hipHostMalloc
|
||||
# define HIP_HOST_FREE_FUNC hipHostFree
|
||||
|
||||
@@ -99,11 +99,7 @@ def test_hip_api_trace_json(json_data):
|
||||
"hipGetLastError",
|
||||
]
|
||||
)
|
||||
updated_expected_functions = [
|
||||
func if func != "hipHostMalloc" else "hipExtHostAlloc"
|
||||
for func in expected_functions
|
||||
]
|
||||
assert functions == expected_functions or functions == updated_expected_functions
|
||||
assert functions == expected_functions
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
Ссылка в новой задаче
Block a user