Skip to content

Commit

Permalink
nolint
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrol aderholdt committed Feb 20, 2025
1 parent 583d0ca commit 1a327f1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/cl/basic/cl_basic_context.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,24 +61,26 @@ UCC_CLASS_CLEANUP_FUNC(ucc_cl_basic_context_t)
ucc_free(self->super.tl_ctxs);
}

ucc_status_t ucc_cl_basic_mem_map(const ucc_base_context_t *context, int type, /* NOLINT */
/* NOLINTBEGIN */
ucc_status_t ucc_cl_basic_mem_map(const ucc_base_context_t *context, int type,
void *address, size_t len, void *memh,
void *tl_h)
{
return UCC_ERR_NOT_SUPPORTED;
}

ucc_status_t ucc_cl_basic_mem_unmap(const ucc_base_context_t *context, int type, /* NOLINT */
ucc_status_t ucc_cl_basic_mem_unmap(const ucc_base_context_t *context, int type,
void *tl_h)
{
return UCC_ERR_NOT_SUPPORTED;
}

ucc_status_t ucc_cl_basic_memh_pack(const ucc_base_context_t *context, /* NOLINT */
ucc_status_t ucc_cl_basic_memh_pack(const ucc_base_context_t *context,
void *memh, void **packed_buffer)
{
return UCC_ERR_NOT_SUPPORTED;
}
/* NOLINTEND */

UCC_CLASS_DEFINE(ucc_cl_basic_context_t, ucc_cl_context_t);

Expand Down

0 comments on commit 1a327f1

Please sign in to comment.