Skip to content

Commit

Permalink
UCT/ROCM: make rocm components compile again
Browse files Browse the repository at this point in the history
fix a compile error of the rocm components due to the ep_invalidate
interface having been moved to the internal_ops structure.

Signed-off-by: Edgar <edgar.gabriel@amd.com>
  • Loading branch information
edgargabriel committed Feb 14, 2022
1 parent f361a64 commit d0f4b1a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/uct/rocm/copy/rocm_copy_iface.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ static uct_iface_ops_t uct_rocm_copy_iface_ops = {
.ep_flush = uct_base_ep_flush,
.ep_fence = uct_base_ep_fence,
.ep_create = UCS_CLASS_NEW_FUNC_NAME(uct_rocm_copy_ep_t),
.ep_invalidate = (uct_ep_invalidate_func_t)ucs_empty_function_return_unsupported,
.ep_destroy = UCS_CLASS_DELETE_FUNC_NAME(uct_rocm_copy_ep_t),
.iface_flush = uct_base_iface_flush,
.iface_fence = uct_base_iface_fence,
Expand Down
1 change: 0 additions & 1 deletion src/uct/rocm/gdr/rocm_gdr_iface.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ static uct_iface_ops_t uct_rocm_gdr_iface_ops = {
.ep_flush = uct_base_ep_flush,
.ep_fence = uct_base_ep_fence,
.ep_create = UCS_CLASS_NEW_FUNC_NAME(uct_rocm_gdr_ep_t),
.ep_invalidate = (uct_ep_invalidate_func_t)ucs_empty_function_return_unsupported,
.ep_destroy = UCS_CLASS_DELETE_FUNC_NAME(uct_rocm_gdr_ep_t),
.iface_flush = uct_base_iface_flush,
.iface_fence = uct_base_iface_fence,
Expand Down
1 change: 0 additions & 1 deletion src/uct/rocm/ipc/rocm_ipc_iface.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ static uct_iface_ops_t uct_rocm_ipc_iface_ops = {
.ep_flush = uct_base_ep_flush,
.ep_fence = uct_base_ep_fence,
.ep_create = UCS_CLASS_NEW_FUNC_NAME(uct_rocm_ipc_ep_t),
.ep_invalidate = (uct_ep_invalidate_func_t)ucs_empty_function_return_unsupported,
.ep_destroy = UCS_CLASS_DELETE_FUNC_NAME(uct_rocm_ipc_ep_t),
.iface_flush = uct_rocm_ipc_iface_flush,
.iface_fence = uct_base_iface_fence,
Expand Down

0 comments on commit d0f4b1a

Please sign in to comment.