Skip to content

Commit

Permalink
doc: fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mgouicem authored and vpirogov committed Mar 27, 2024
1 parent 929a27a commit 4cad420
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/oneapi/dnnl/dnnl.h
Original file line number Diff line number Diff line change
Expand Up @@ -782,19 +782,19 @@ dnnl_status_t DNNL_API dnnl_memory_desc_clone(dnnl_memory_desc_t *memory_desc,

/// Retrieves a binary blob associated with the given memory descriptor
///
/// @param Output blob Pointer to binary blob.
/// @param blob Output pointer to binary blob.
/// If not nullptr, size bytes of the memory descriptor blob are written.
/// @param Output size Pointer to the size of the binary blob in bytes.
/// @param size Output pointer to the size of the binary blob in bytes.
/// Size is written if blob is nullptr.
/// @param memory_desc Input memory descriptor to serialize
/// @param memory_desc input memory descriptor to serialize
/// @returns #dnnl_success on success and a status describing the error
/// otherwise.
dnnl_status_t DNNL_API dnnl_memory_desc_get_blob(
uint8_t *blob, size_t *size, const_dnnl_memory_desc_t memory_desc);

/// Creates a memory descriptor from a memory descriptor binary blob.
///
/// @param Output memory_desc Pointer to a newly allocated memory descriptor.
/// @param memory_desc Output pointer to a newly allocated memory descriptor.
/// @param blob Pointer to a memory descriptor binary blob.
/// @returns #dnnl_success on success and a status describing the error
/// otherwise.
Expand Down

0 comments on commit 4cad420

Please sign in to comment.